AI And Agentic AI For Beginners
How to understand it, use it, and stay out of trouble
What You Will Learn
- What AI, generative AI, LLMs, and agents mean
- What AI is good and bad at
- How to prompt clearly
- Whether you need coding knowledge
- How agents automate multi-step work
- How to use AI responsibly and securely
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.
The AI Family Tree
Follows fixed rules.
Learns patterns from data.
Creates new content.
Uses AI plus tools to complete multi-step goals.
Traditional Software vs AI
Predictable rules, exact processes, same input usually gives same output.
Pattern-based, flexible with messy inputs, useful for language and judgment support.
What Generative AI Can Create
- Text, summaries, plans, and checklists
- Images, audio, and video
- Code and formulas
- Structured data from messy notes
- Drafts for emails, proposals, and reports
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.
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.
Common Strengths
- Drafting and rewriting
- Summarizing and explaining
- Brainstorming options
- Classifying and extracting information
- Turning messy notes into clean structure
Common Weaknesses
- Confident mistakes
- Missing context
- Weak source tracking unless asked
- Bias and assumptions
- Sensitive data risk
- Poor judgment when goals are vague
Hallucinations
Hallucination means the AI produces something that sounds plausible but is wrong or unsupported.
Prompting Is Work Instruction
Better instructions usually produce better results. Prompting is less about magic words and more about clear delegation.
Prompt Formula
- Role: who should the AI act as?
- Task: what should it do?
- Context: what background matters?
- Constraints: what must it include or avoid?
- Format: what should the output look like?
- Quality bar: how should success be judged?
“Make This Better”
Problem: no audience, purpose, tone, constraints, or format.
Add The Missing Context
Good Prompting Habits
- Be specific
- Provide context
- Give examples when style matters
- State constraints
- Request a format
- Ask for uncertainties
- Iterate
Everyday AI Use Cases
- Email drafts and tone adjustments
- Meeting notes and action items
- Proposal outlines and client explanations
- SOPs, checklists, and training material
- Research summaries and spreadsheet help
AI Workflow Template
- Input
- Prompt
- AI output
- Human review
- Final action
- Risk check
Do You Need Coding?
For general AI use: no. You can get strong results with plain language, good prompts, clear examples, and careful review.
When Coding Helps
- Connecting AI to company systems
- Automating repeatable workflows
- Building agents that call tools
- Handling structured data
- Debugging failures
- Setting permissions and guardrails
What Non-Coders Should Understand
- Inputs and outputs
- Basic data formats
- If-this-then-that logic
- How to verify results
- What data the AI can access
- What actions need approval
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.
Types Of AI And Their Uses
- Predictive AI: forecasts, scores, and classifications
- Generative text AI: emails, summaries, documents, reports
- Image, audio, and video AI: media creation and editing
- Code AI: scripts, debugging, documentation
- Search/research AI: sourced answers and summaries
- Agentic AI: multi-step workflows with tools
Where People Use AI
Current AI Software To Know
- Everyday chat: ChatGPT, Claude.ai, Gemini, Microsoft Copilot
- Search/research: Perplexity, ChatGPT search, Gemini research features
- Developer studios: Google AI Studio, OpenAI Platform, Anthropic Console, Azure AI Foundry
- Coding agents: OpenAI Codex, Claude Code, Cursor, GitHub Copilot
- Business agents: Copilot Studio, Gemini Enterprise, Zapier, n8n
- Media tools: Adobe Firefly, Midjourney, Runway, Canva AI
Popular LLM Families
How To Choose An LLM
- Task: writing, coding, reasoning, search, images, or documents
- Privacy: public app, approved enterprise tool, API, or local model
- Cost and speed
- Context length and file support
- Tool support and company approval
Types Of Generative AI
- Natural language: writing, rewriting, summarizing, translating
- Conversational AI: chat and follow-up questions
- RAG: answers grounded in retrieved documents
- Multimodal AI: text, images, audio, video, and files together
- Structured output: tables, JSON, classification, extraction
- Agentic generation: planning plus tool use
Pattern Examples
Answer from retrieved documents.
Plan, use tools, and ask for approval.
What Is RAG?
RAG means retrieval-augmented generation. The system retrieves relevant documents first, then asks the model to answer using that material.
Types Of LLM Capabilities
- Text/chat models: writing and analysis
- Reasoning or deep-thought models: harder planning, coding, math, decisions
- Vision-language models: images, screenshots, charts, PDFs
- Code models: software work and debugging
- Embedding models: search, matching, RAG
- Speech models: transcription and voice
- Local/small models: private or offline use
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.
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.
- Input tokens: what you send to the model
- Output tokens: what the model generates back
- One English token is roughly 3-4 characters as a rough guide
How Tokens Work
- Your prompt is split into input tokens
- The model processes those tokens inside its context window
- The model generates output tokens
- API billing often counts both input and output tokens
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.
Chat vs Agent
Ask a question. Get an answer.
Give a goal. It plans, uses tools, reviews results, asks for approval, and completes the workflow.
Agent Building Blocks
- Instructions
- Tools
- State or memory
- Guardrails
- Evaluation
- Human approval
Tool Use
Tools let an agent do things outside the model.
- Search, read files, or query a database
- Use a calculator or run code
- Create a ticket or draft an email
- Use a browser or internal app
Human-In-The-Loop
Use human approval before sending messages, changing records, making purchases, deleting data, publishing content, or handling sensitive decisions.
Weekly Client Update Agent
- Read project notes
- Pull open tasks
- Draft status summary
- Flag risks and missing owners
- Ask for approval
- Send after approval
Where Agents Help
- Repetitive multi-step admin
- Research and reporting
- Customer support triage
- Internal knowledge lookup
- Project updates
- Data cleanup with review
Where Agents Are Risky
- High-stakes decisions
- Unreviewed external actions
- Sensitive data
- Legal, medical, financial, or HR decisions
- Poorly defined goals
- Systems with broad permissions
Common Agentic AI Tools
- ChatGPT with tools/agents: general task assistance
- Microsoft Copilot Studio: business process agents
- OpenAI Codex and Claude Code: agentic coding
- Cursor and GitHub Copilot: AI-assisted development
- Zapier and n8n: workflow automation with AI
- LangGraph, CrewAI, AutoGen: builder frameworks
Where To Start
- Beginners: approved ChatGPT, Claude, Gemini, or Copilot
- Microsoft-heavy teams: Copilot and Copilot Studio
- Software teams: Cursor, GitHub Copilot, Claude Code, Codex
- Private/local experiments: Ollama or LM Studio
- Business automation: Copilot Studio, Zapier, n8n
How Users Can Set Up A Basic Agent
- Pick one recurring task with clear inputs and outputs
- Write the agent's job in plain language
- Give it examples, templates, and rules
- Connect only the tools it truly needs
- Test with low-risk data before using it for real work
Beginner Setup Example
Use case: weekly internal project update assistant.
- Input: meeting notes, task list, project risks
- Agent task: draft a short update and flag missing owners
- Tools: file/document access only
- Approval: human reviews before sending
- Success: saves time without inventing commitments
No-Code Ways To Start
- ChatGPT custom GPTs or project-style workspaces
- Claude projects and reusable instructions
- Microsoft Copilot Studio for business agents
- Zapier or n8n for app-to-app workflows
- CRM/helpdesk AI features already approved by the company
Local vs Cloud Setup
Better privacy/control, limited by your machine.
Better models/scale, needs data and billing controls.
Common Local AI Software
- LM Studio / Jan / AnythingLLM: beginner-friendly desktop apps
- Ollama: simple local model runner and API
- Open WebUI: browser UI for local/cloud model backends
- OpenClaw / Hermes / n8n / Zapier: workflow and agent harnesses
- Model choices such as Llama, Qwen, Mistral, or DeepSeek run inside these tools
Beginner Local Agent Workflow
- Install LM Studio or Ollama
- Download a small model first, such as 3B-8B
- Test chat, summarizing, and document Q&A
- Add Open WebUI, AnythingLLM, or OpenClaw for workflows
- Keep external actions off until the results are reliable
Beginner Cloud Agent Workflow
- Use an approved cloud tool: ChatGPT, Claude, Gemini, or Copilot
- Create reusable instructions or a project/workspace
- Add approved files or knowledge sources
- Ask it to draft, summarize, classify, or prepare work
- Require human approval before sending or changing records
Hardware Priorities For Local LLMs
- Memory capacity decides what model/context can fit
- GPU compute affects speed once the model fits
- CPU and RAM keep the system usable and handle fallback
Memory Sizing Rule Of Thumb
- FP16: about 2 GB per billion parameters
- 8-bit: about 1 GB per billion parameters
- 4-bit: about 0.5-0.7 GB per billion parameters
- Add context/KV cache, runtime overhead, and breathing room
Practical Model Size Examples
- 7B at 4-bit: roughly 4-5 GB model file; 6-8 GB VRAM is a sensible floor
- 14B at 4-bit: roughly 8-10 GB; 12-16 GB VRAM feels more comfortable
- 32B at 4-bit: roughly 18-24 GB; 24 GB+ VRAM or larger UMA is preferred
- 70B at 4-bit: roughly 40-50 GB; think 48 GB+ VRAM or 64-128 GB unified memory
How Much Buffer To Keep?
- Keep 20-30% spare VRAM/unified memory when possible
- Context length uses extra memory through the KV cache
- The runtime also needs workspace memory
- If the GPU drives your display, reserve extra VRAM for the desktop
- System RAM still matters for OS, apps, documents, and CPU fallback
VRAM, RAM, And Overflow
- If the model and context fit in VRAM/unified memory, it is much faster
- If not, layers spill into system RAM and CPU work increases
- It may still run, but speed can drop sharply
- Lowering context length or using a smaller/quantized model usually helps
GPU, CPU Cores, And NPU
- GPU/VRAM usually matters most for comfortable local LLM use
- CPU cores help with loading, tokenization, fallback, and multitasking
- More cores do not fix too little memory
- NPUs are not widely used by most local LLM tools yet
- A CPU without an NPU can still run AI workloads well if the system has enough RAM and a compatible, powerful GPU with enough VRAM
- For beginners: prioritize memory, GPU compatibility, and VRAM before chasing NPU TOPS numbers
UMA And Platform Choice
- UMA means CPU and GPU share one memory pool
- NVIDIA is usually easiest for Windows AI tooling because of CUDA
- AMD/Radeon can work well, but tool support varies more
- ARM/Apple-style systems can be efficient because of unified memory
Mini PC Or Custom Build?
Good for learning, small models, demos, document assistants, and low power use.
Better for larger models, faster responses, heavier agent workflows, and experimentation.
Best when you need strong models immediately and can manage data/billing controls.
Buy for the model size and privacy need, not for benchmark bragging rights.
Agent Safety Checklist
- What data can it read?
- What actions can it take?
- Where must it ask for approval?
- How are outputs checked?
- Where are logs kept?
- Who owns mistakes and maintenance?
Responsible AI Basics
- Verify important facts
- Protect private data
- Check for bias
- Keep people accountable
- Use approved tools
- Record decisions where needed
Security Basics
- Do not paste secrets
- Remove unnecessary personal data
- Limit tool permissions
- Log actions
- Require approval for external actions
- Watch for prompt injection
Guardrails In Practice
Facts, names, numbers, and claims.
External sends and record changes.
Recommended Adoption Roadmap
- Start with approved AI for personal productivity
- Standardize team prompts and review rules
- Pilot narrow agentic workflows in draft-only mode
- Add tools with least privilege
- Require approval before external or sensitive actions
- Track value, errors, and ownership
Pilot Before Automation
Clear recurring task, low-risk data, human-reviewed output, named owner, logs, and a success metric.
Broad access, vague goals, no owner, and automatic external actions.
Team Exercise
Pick one workflow. Design an AI-assisted version.
- Trigger, inputs, AI task
- Human review and output
- Risks and success metric
Key Takeaways
- AI is a practical work tool, not magic
- Prompting is clear delegation
- You do not need coding for basic AI use
- Agents are multi-step AI systems with tools
- The more an AI can do, the more guardrails it needs