Getting Started with AI¶
A plain-English introduction to Artificial Intelligence, Machine Learning, and Large Language Models. No prior technical knowledge required.
What is Artificial Intelligence?¶
Artificial Intelligence (AI) is the broad field of creating computer systems that can perform tasks typically requiring human intelligence -- things like understanding language, recognizing patterns, making decisions, and generating content.
AI is Not New
AI as a field has existed since the 1950s. What has changed dramatically in recent years is the scale of data, computing power, and breakthroughs in neural network architectures that have made AI practical and powerful.
What is Machine Learning?¶
Machine Learning (ML) is a subset of AI where systems learn patterns from data rather than being explicitly programmed with rules.
graph LR
A[Traditional Programming] --> B["Rules + Data = Output"]
C[Machine Learning] --> D["Data + Output = Rules"]
style A fill:#057398,stroke:#045672,stroke-width:2px,color:#fff
style B fill:#00A0DF,stroke:#0080B3,stroke-width:2px,color:#fff
style C fill:#632C4F,stroke:#4E223E,stroke-width:2px,color:#fff
style D fill:#853175,stroke:#6A275E,stroke-width:2px,color:#fff
Instead of writing rules manually, you feed the system examples and it figures out the patterns. This is how spam filters, recommendation engines, and fraud detection work.
What are Large Language Models?¶
Large Language Models (LLMs) are AI systems trained on massive amounts of text data. They can understand and generate human language with remarkable fluency.
How LLMs Work (Simplified)¶
- Training -- The model reads billions of pages of text and learns patterns about language, facts, and reasoning
- Input (Prompt) -- You give the model a question or instruction in natural language
- Processing -- The model uses its learned patterns to predict the most appropriate response
- Output -- The model generates a response, token by token (roughly word by word)
Think of it Like This
An LLM is like an extremely well-read assistant that has absorbed vast amounts of written knowledge. It does not "think" like a human, but it can produce remarkably useful responses by predicting what text should come next based on patterns it learned.
Popular LLMs You May Have Heard Of¶
| Model | Created By | Key Strength |
|---|---|---|
| GPT-4o / GPT-4.1 | OpenAI | General-purpose, multimodal (text + images) |
| Claude | Anthropic | Long-context analysis, safety-focused |
| Gemini | Multimodal, integrated with Google ecosystem | |
| Llama | Meta | Open-source, customizable |
| Phi | Microsoft | Small, fast, runs on-device |
Key Terms to Know¶
Here are the essential terms you will encounter throughout this site:
- Token
- The basic unit LLMs process -- roughly three-quarters of a word in English. Model inputs, outputs, and context limits are commonly measured in tokens.
- Prompt
- The input you give to an AI model -- your question, instruction, or context.
- Context Window
- How much text a model can consider at once. A 128K context window means roughly 100,000 words.
- Inference
- The process of running a model to get a response. When you chat with an AI, that is inference.
- Hallucination
- When an AI generates confident-sounding but incorrect or fabricated information.
- RAG (Retrieval-Augmented Generation)
- A technique that gives AI access to your specific data before generating a response, making answers more accurate and grounded.
- AI Agent
- An AI system that can plan, reason, and take actions autonomously -- not just answer questions, but actually do things.
Want More Terms?
Visit the complete Glossary for 60+ AI terms explained in plain English.
How AI Fits Into Our Organization¶
We use AI across several areas:
-
AI Agents
Autonomous systems that can plan, execute tasks, and integrate with our tools and data.
-
RAG & Knowledge Systems
Connecting AI to our enterprise data so it can answer questions using our actual documents and policies.
-
Copilots & Assistants
AI embedded in our daily tools to help with writing, analysis, coding, and decision-making.
-
Frameworks & Platforms
The specific tools and frameworks we use to build AI solutions.
Where to Go Next¶
- Browse the Glossary to build vocabulary
- Read Foundation & Models to understand the building blocks
- Explore Enterprise Patterns to see how AI fits into business workflows
- Dive into AI Agents and Agentic AI
- Study Design Patterns for implementation guidance
- Review Tools & Frameworks for our tech stack
- Skim Foundation & Models for the landscape
- Read Enterprise Patterns for strategic context
- Check Tools & Frameworks for what we invest in