Beginner Workshop

AI And Agentic AI For Beginners

How to understand it, use it, and stay out of trouble

Outcomes

What You Will Learn

Plain English

What Is AI?

AI is software that performs tasks that normally require human-like abilities: understanding language, recognizing patterns, generating content, making predictions, or helping with decisions.

Useful AI is less about magic and more about matching the right tool to the right task.
Terminology

The AI Family Tree

Automation

Follows fixed rules.

Machine Learning

Learns patterns from data.

Generative AI

Creates new content.

Agentic AI

Uses AI plus tools to complete multi-step goals.

AI family tree from automation to agentic AI
Comparison

Traditional Software vs AI

Traditional Software

Predictable rules, exact processes, same input usually gives same output.

AI

Pattern-based, flexible with messy inputs, useful for language and judgment support.

AI flexibility is useful, but it also means outputs need review.
Generative AI

What Generative AI Can Create

Examples of generative AI outputs: text, image, code, plan
LLMs

What Is A Large Language Model?

A large language model is an AI model trained to process and generate language. It predicts useful continuations based on patterns learned from large amounts of text and code.

Treat it as a fast assistant that is strong at language and patterns, not as an all-knowing authority.
Mental Model

Useful Mental Model

Do not treat AI as an oracle. Treat it as a fast assistant that is strong at language and patterns, but still needs instructions, context, and checking.

The better the briefing, the better the result. The more important the output, the more you verify.
Strengths

Common Strengths

Limits

Common Weaknesses

Accuracy

Hallucinations

Hallucination means the AI produces something that sounds plausible but is wrong or unsupported.

Best defense: ask for sources, verify facts, and use AI as a draft partner rather than the final authority.
Prompting

Prompting Is Work Instruction

Better instructions usually produce better results. Prompting is less about magic words and more about clear delegation.

Role + task + context + constraints + output format + quality bar
Prompting

Prompt Formula

Weak Prompt

“Make This Better”

Problem: no audience, purpose, tone, constraints, or format.

A vague prompt delegates the thinking to the AI. That is how you get generic output.
Better Prompt

Add The Missing Context

Rewrite this client email to be clear and professional. Keep it under 120 words. Preserve all dates and numbers exactly. If something is unclear, list it under "Needs confirmation".
Prompting

Good Prompting Habits

Workplace

Everyday AI Use Cases

Workflow

AI Workflow Template

  1. Input
  2. Prompt
  3. AI output
  4. Human review
  5. Final action
  6. Risk check
AI workflow from input to prompt to draft to human review
Coding

Do You Need Coding?

For general AI use: no. You can get strong results with plain language, good prompts, clear examples, and careful review.

The skill most people need first is clear communication, not Python.
Coding

When Coding Helps

Coding

What Non-Coders Should Understand

Mental Model

AI Is A Bit Like Excel

You do not need to be a software engineer to benefit. But the more you understand structure, formulas, and automation, the more useful and safer it becomes.

Coding literacy ladder from prompting to engineering
Types

Types Of AI And Their Uses

Examples

Where People Use AI

AIChat apps: ChatGPT, Claude, Gemini, Copilot
SRSearch: Perplexity, ChatGPT search, Gemini
OFOffice: Microsoft 365 Copilot, Gemini for Workspace
MDMedia: Firefly, Midjourney, Runway, Canva AI
CDCoding: Cursor, Copilot, Claude Code, Codex
LCLocal: Ollama, LM Studio, Hugging Face
Current Software

Current AI Software To Know

Teach categories first, then names. Product names change faster than the core workflow.
Current Examples

Popular LLM Families

Popular LLM families including GPT, Claude, Gemini, Llama, DeepSeek, Qwen, Mistral, and Grok
Selection

How To Choose An LLM

There is no single best model. Pick the model that fits the job and the risk.
Generative AI

Types Of Generative AI

Generative AI

Pattern Examples

Types of generative AI patterns including language, RAG, multimodal, agents, images, audio, and video
RAG

Answer from retrieved documents.

Agentic

Plan, use tools, and ask for approval.

RAG

What Is RAG?

RAG means retrieval-augmented generation. The system retrieves relevant documents first, then asks the model to answer using that material.

Question
Search Docs
Retrieve
Generate
Answer
Use RAG for policy Q&A, product docs, support knowledge bases, and internal search.
Model Capabilities

Types Of LLM Capabilities

APIs

APIs And API Keys

An API lets software call an AI model without a human opening a chat app. An API key is the secret credential that allows access and often controls billing.

App uses an API key to call an AI model API, with tokens affecting context, limits, speed, and cost
Treat API keys like passwords. Do not paste them into chat, commit them to GitHub, or share them in screenshots.
Tokens

What Is A Token?

A token is a chunk of text the model reads or writes. It is not exactly one word: long words can split into multiple tokens, and punctuation can count too.

Tokens

How Tokens Work

  1. Your prompt is split into input tokens
  2. The model processes those tokens inside its context window
  3. The model generates output tokens
  4. API billing often counts both input and output tokens
Tokens affect context length, cost, speed, and quality. Give enough context, but remove irrelevant clutter.
Agents

What Is Agentic AI?

Agentic AI is AI that works through a goal over multiple steps, uses tools, keeps state, checks results, and continues until it finishes or needs help.

Agentic AI loop: plan, use tool, check, finish
Agents

Chat vs Agent

Chat

Ask a question. Get an answer.

Agent

Give a goal. It plans, uses tools, reviews results, asks for approval, and completes the workflow.

Architecture

Agent Building Blocks

Tools

Tool Use

Tools let an agent do things outside the model.

Tools do not have to be third-party apps. A repeatable workflow with inputs, outputs, and approval points can act like a tool.
Control

Human-In-The-Loop

Use human approval before sending messages, changing records, making purchases, deleting data, publishing content, or handling sensitive decisions.

Agents have a bigger blast radius than chat because they can take actions.
Example

Weekly Client Update Agent

  1. Read project notes
  2. Pull open tasks
  3. Draft status summary
  4. Flag risks and missing owners
  5. Ask for approval
  6. Send after approval
Notes
Tasks
Draft
Approve
Send
Good Fits

Where Agents Help

Risk

Where Agents Are Risky

Current Examples

Common Agentic AI Tools

Starting Point

Where To Start

Agent Setup

How Users Can Set Up A Basic Agent

  1. Pick one recurring task with clear inputs and outputs
  2. Write the agent's job in plain language
  3. Give it examples, templates, and rules
  4. Connect only the tools it truly needs
  5. Test with low-risk data before using it for real work
Agent setup steps: pick task, give context, add tools, set rules, test run
Agent Setup

Beginner Setup Example

Use case: weekly internal project update assistant.

Agent Setup

No-Code Ways To Start

Start with agents that draft, summarize, classify, or prepare. Add external actions only after testing and approvals.
Agent Setup

Local vs Cloud Setup

Local AI versus cloud AI tradeoffs
Local

Better privacy/control, limited by your machine.

Cloud

Better models/scale, needs data and billing controls.

Software

Common Local AI Software

Common AI software: LM Studio, Ollama, Open WebUI, AnythingLLM, Jan, OpenClaw, n8n and Zapier
Workflow

Beginner Local Agent Workflow

  1. Install LM Studio or Ollama
  2. Download a small model first, such as 3B-8B
  3. Test chat, summarizing, and document Q&A
  4. Add Open WebUI, AnythingLLM, or OpenClaw for workflows
  5. Keep external actions off until the results are reliable
Do not start with a 70B model or a fully autonomous agent. That is how beginners meet the wall at high speed.
Workflow

Beginner Cloud Agent Workflow

  1. Use an approved cloud tool: ChatGPT, Claude, Gemini, or Copilot
  2. Create reusable instructions or a project/workspace
  3. Add approved files or knowledge sources
  4. Ask it to draft, summarize, classify, or prepare work
  5. Require human approval before sending or changing records
Hardware

Hardware Priorities For Local LLMs

Hardware priorities: VRAM or unified memory, GPU compute, RAM and storage
Hardware

Memory Sizing Rule Of Thumb

Rule of thumb: FP16 uses about 2GB per billion parameters, 8-bit about 1GB, 4-bit about 0.5 to 0.7GB
Hardware

Practical Model Size Examples

Fast shortcut: check the model file size, then add room for context and overhead.
Hardware

How Much Buffer To Keep?

Yes, GPU VRAM needs its own buffer. CPU/system RAM buffer alone is not enough if you want smooth GPU inference.
Hardware

VRAM, RAM, And Overflow

Model memory spill from VRAM to RAM and CPU
Hardware

GPU, CPU Cores, And NPU

Hardware

UMA And Platform Choice

NVIDIA, AMD Radeon, and ARM unified-memory platform choices
Hardware

Mini PC Or Custom Build?

Mini PC / APU

Good for learning, small models, demos, document assistants, and low power use.

Custom GPU PC

Better for larger models, faster responses, heavier agent workflows, and experimentation.

Cloud API

Best when you need strong models immediately and can manage data/billing controls.

Practical Rule

Buy for the model size and privacy need, not for benchmark bragging rights.

Agent Setup

Agent Safety Checklist

Responsible AI

Responsible AI Basics

Security

Security Basics

Security

Guardrails In Practice

AI safety guardrails: verify facts, protect data, limit access, approve actions
Verify

Facts, names, numbers, and claims.

Approve

External sends and record changes.

Recommendation

Recommended Adoption Roadmap

Pilot

Pilot Before Automation

Good first pilot

Clear recurring task, low-risk data, human-reviewed output, named owner, logs, and a success metric.

Bad first pilot

Broad access, vague goals, no owner, and automatic external actions.

Activity

Team Exercise

Pick one workflow. Design an AI-assisted version.

Trigger
Inputs
AI Task
Review
Metric
Wrap-Up

Key Takeaways