Skip to content

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)

  1. Training -- The model reads billions of pages of text and learns patterns about language, facts, and reasoning
  2. Input (Prompt) -- You give the model a question or instruction in natural language
  3. Processing -- The model uses its learned patterns to predict the most appropriate response
  4. 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.

Model Created By Key Strength
GPT-4o / GPT-4.1 OpenAI General-purpose, multimodal (text + images)
Claude Anthropic Long-context analysis, safety-focused
Gemini Google 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.

    Learn about AI Agents

  • RAG & Knowledge Systems

    Connecting AI to our enterprise data so it can answer questions using our actual documents and policies.

    Learn about RAG

  • Copilots & Assistants

    AI embedded in our daily tools to help with writing, analysis, coding, and decision-making.

    See Enterprise Patterns

  • Frameworks & Platforms

    The specific tools and frameworks we use to build AI solutions.

    View Our Stack


Where to Go Next

  1. Browse the Glossary to build vocabulary
  2. Read Foundation & Models to understand the building blocks
  3. Explore Enterprise Patterns to see how AI fits into business workflows
  1. Dive into AI Agents and Agentic AI
  2. Study Design Patterns for implementation guidance
  3. Review Tools & Frameworks for our tech stack
  1. Read this page fully -- you are here!
  2. Work through Concepts one topic at a time
  3. Keep the Glossary open as a reference
  1. Skim Foundation & Models for the landscape
  2. Read Enterprise Patterns for strategic context
  3. Check Tools & Frameworks for what we invest in

References