Leapforce Academy AI Fundamentals Get to Know AI & AI Agents

This course helps you understand the fundamentals of AI and AI agents, then confidently build and improve your AI agents in Leapforce.

View transcript

Hi, welcome to AI Fundamentals.

Let’s start with the basics: what actually is AI, and what’s an AI agent?

At a simple level, AI here refers to large language models — systems trained on huge amounts of text that can understand instructions, generate language, and reason through a task. That’s what powers the AI tools you’ve probably already used.

A chatbot uses that same technology to have a conversation — you ask, it answers. Useful, but limited to talking.

An AI agent goes further. It has a goal, a set of instructions, and access to your tools and data, so it can do more than talk — it can look things up, follow steps, and take action to actually complete a task.

That’s also different from traditional automation, the if-this-then-that kind. Traditional automation follows a fixed, rigid path — it breaks the moment something doesn’t fit the pattern. An AI agent can use judgment within its instructions, so it handles some of that unpredictability, the same way a person would.

So what can an agent actually do today? It’s great at repeatable work: summarizing feedback, drafting a first version of a report or email, answering questions using your own information, and sorting or triaging incoming requests. It can also move information between the tools you already use, like pulling data from a spreadsheet to draft an email. Then check something on a schedule and flag it when it needs attention. What it’s not ready for yet: high-stakes judgment calls, or anything you couldn’t undo if it got wrong. That’s still where a human stays involved.

Keep that repetitive task you thought of in mind — over this course, you’ll learn everything you need to turn it into your first working agent.

Let’s keep going.

Get to Know AI & AI Agents

Overview

AI is everywhere right now, but the terms get thrown around loosely — AI, AI agent, chatbot, automation. Before you build anything, it helps to know what each of these actually means, and specifically, what makes an AI agent different from a chatbot or a traditional if-this-then-that automation.

This lesson gives you the vocabulary and the mental model you’ll use for the rest of this course.

What you’ll learn

  1. What AI actually is, in plain terms.
  2. What an AI agent is, and how it’s different from a chatbot.
  3. How an AI agent differs from traditional automation.
  4. What kinds of tasks AI agents can realistically do today.

Before you start

Think of one repetitive task you do (or your team does) that involves a decision or a written response — not just moving data from A to B.

Completion checkpoint

Write one sentence: “The repetitive task I want to turn into an agent is [task], and it’s a good fit because [reason].”

View transcript

Welcome back. Let’s demystify a few terms you’ll see as you build: models, tokens, and cost.

A model is the engine behind your agent — the AI system that actually reads your instructions and generates the output. Different models are trained differently, so they behave differently: some are faster and cheaper but less precise, others are slower and more expensive but handle complex reasoning better.

That means model choice matters. A simple task, like drafting a quick reply, doesn’t need the most powerful model available. A complex task, like analyzing a long document for subtle issues, benefits from a stronger one.

Now, tokens. A token is roughly a chunk of a word — AI models read and write in these chunks, not whole sentences at once. Every prompt you send and every response you get is measured in tokens.

Here’s why that matters: cost is based on tokens used. More context, longer instructions, and longer outputs all mean more tokens, which means more cost. This is also why unnecessary information in a prompt isn’t just messy — it actually costs you, every single time your agent runs.

You don’t need to calculate this by hand. But understanding it helps you make good decisions: pick the right model for the task, and keep your instructions and knowledge base focused, not bloated.

Next, let’s put this into practice by learning how to give AI clear instructions through chat.

Understand Models, Tokens & Cost

Overview

Every AI agent runs on a model behind the scenes. You don’t need to be a data scientist to use Leapforce, but understanding a few basics — what a model is, what tokens are, and how they relate to cost — will help you make smarter choices as you build.

What you’ll learn

  1. What an AI model is, in plain terms.
  2. Why different models produce different results.
  3. What tokens are, and why they matter.
  4. How model choice affects the cost of running your agent.

Before you start

No prep needed — just bring your curiosity about how this works under the hood.

Completion checkpoint

Write one sentence: “For my task, I think a [simple / powerful] model makes sense because [reason].”

Lesson 3

Give AI Clear Instructions Through Chat

View transcript

Welcome back. Let’s talk about giving AI clear instructions — through chat, the way you’ll actually use it every day.

Start with clear instructions. “Write me a report” is vague. “Write a one-page weekly report summarizing support tickets, grouped by issue type, in a table” is something AI can actually act on, right in the chat window.

Next, context. In that same message, give AI what it needs to do the job well — who it’s for, what it’s based on, any relevant background. But more isn’t always better. Pasting in every document you have, just in case, doesn’t improve the result — it just adds tokens, and cost, without adding value. Share what’s relevant, and leave out what isn’t.

Then, tell it exactly what output you want. What format — a list, a table, a short paragraph? What tone? How long? The clearer you are in chat, the less back-and-forth you’ll need.

If the first reply isn’t right, that’s normal — chat is built for this. Reply back with exactly what to fix, instead of retyping your whole request from scratch. That single correction is usually faster than starting over.

This works the same whether you’re chatting with AI directly, or writing instructions for an agent. Specific and lean beats long and vague, every time.

Next, we’ll look at what your agent needs beyond a good conversation: tools and knowledge.

Give AI Clear Instructions Through Chat

Overview

Talking to AI isn’t like searching or filling out a form — it’s a conversation. The quality of what you get back depends on how clearly you explain what you need, right there in the chat. This lesson gives you a simple way to give AI clear instructions through chat, so you get better results without burning tokens on back-and-forth.

What you’ll learn

  1. How to give clear, specific instructions in a chat message.
  2. How to provide the right context in conversation — not too little, not too much.
  3. How to tell AI exactly what output you want.
  4. How to refine your request through chat instead of starting over.

Before you start

Think of a recent chat with AI where the first reply wasn’t what you wanted.

Completion checkpoint

Write one sentence: “Next time I chat with AI, I will be more specific about [instruction / context / output], and I’ll leave out [unnecessary detail].”

Lesson 4

Give Your Agent Tools & Knowledge

View transcript

Welcome back. Let’s break down the three things that actually shape what your agent produces: tools, knowledge, and skills.

Tools are the apps you already use every day — email, HubSpot, Notion, Slack, a spreadsheet. Connecting a tool lets your agent actually act inside it: send an email, create a HubSpot record, update a Notion page. No tool connected, no real action — it can only describe what it would do.

Knowledge is different. It’s the reference material your agent checks before answering — a policy, a price list, an FAQ, past reports. Knowledge shapes accuracy: give it the wrong or missing knowledge, and it’ll guess, or sound confident while being wrong.

Skills are different again. A skill is the process you teach your agent — the steps you follow every time, the way you want a task done. Skills shape consistency: without one, your agent might do a task differently each time, or skip a step you always expect.

Put together: tools control what your agent can do, knowledge controls what it knows, and skills control how it does the work.

Now let’s connect them. In your agent’s settings, connect the tools you use daily — the ones you listed before this lesson. Upload your knowledge document. Then add a skill: write your process out step by step, the way you’d train a new hire, and save it.

Do all three, and your agent stops guessing, and starts working the way you actually do.

Next, we’ll cover how to check that everything it produces is actually right.

Give Your Agent Tools & Knowledge

Overview

A well-instructed agent is a good start — but three things determine what it can actually produce: tools, knowledge, and skills. Tools are the apps you already use every day, like Email, HubSpot, or Notion, connected so your agent can act inside them. Knowledge is the reference material it checks before answering. Skills are the step-by-step processes you teach it, so it does a task the way you want, every time.

This lesson breaks down what each one does, how each one changes your agent’s output when it’s missing, and then walks you through actually connecting tools, uploading knowledge, and adding a skill.

What you’ll learn

  1. The difference between tools, knowledge, and skills — what each one is for.
  2. How each one shapes your agent’s output: what it can do, what it knows, and how it does it.
  3. How to connect the tools you already use daily to your agent.
  4. How to upload knowledge and add a skill so your agent works the way you do.

Before you start

List three things: one tool you use daily for this task (like Gmail, HubSpot, Notion, or Slack), one document or reference your agent should know, and one step-by-step process you always follow.

Completion checkpoint

Write one sentence: “My agent needs [tool] to act, [knowledge] to know the facts, and [skill] to follow the right process.”

Lesson 5

Verify & Trust AI Results

View transcript

Welcome back. Let’s talk about something every AI user runs into eventually: hallucinations.

A hallucination is when AI states something false with complete confidence — a made-up fact, a citation that doesn’t exist, a number that’s just wrong. It doesn’t sound uncertain when this happens. That’s what makes it dangerous: confidence is not the same as correctness.

So, how do you check? Start simple. Verify anything factual against a source you trust — a document, a number, a policy. If AI cites something, don’t assume the citation is accurate; check it. If there’s a calculation involved, do a quick sanity check yourself.

Now, when does this need a full human review, and when doesn’t it? Low-stakes, easily-checked output — like a first-draft summary you’ll read anyway — needs light verification. High-stakes output — anything that goes external, affects money, or is hard to undo — deserves a closer human review every time, at least until you’ve built real trust.

That trust should be earned gradually. When you’re testing a new agent, verify closely. As it proves accurate on a specific task, again and again, you can ease up — but only for that task, based on real evidence, not assumption.

This habit connects everything else in this course. If output looks wrong, trace it back — is the knowledge base missing something, or was the prompt unclear? That’s how you actually fix it, not just notice it.

Next, let’s build your first agent from a template.

Verify & Trust AI Results

Overview

AI can sound completely confident while being completely wrong — this is called a hallucination. Verifying results isn’t optional; it’s the habit that makes AI genuinely useful instead of quietly risky. This lesson covers how to check AI output, and how to calibrate when to trust it.

What you’ll learn

  1. What a hallucination is, and why it happens.
  2. A simple method for checking AI output.
  3. When human review is worth the time, and when it isn’t.
  4. How to build trust in an agent gradually, based on evidence.

Before you start

Think of a time an AI tool confidently gave you information that turned out to be wrong.

Completion checkpoint

Write one sentence: “The output from my agent that needs the closest human review is [output], because [risk/reason].”

Lesson 6

Build Your First Agent from a Template

View transcript

Welcome back. Time to put everything together and build your first agent.

Leapforce gives you over 100 ready-made templates, covering common jobs across the business. Every template comes with a dashboard, automation, and report already built in — you’re starting from a working agent, not a blank page.

Start by typing what you need in the search bar, or browsing the template library, and picking one close to your real task. It doesn’t need to be a perfect match — just the closest starting point.

Once you’ve picked one, look at what’s already built in. Understand the dashboard, the automation, and the report before you change anything — you’re customizing a working setup, not starting from zero.

Then connect what it needs. Remember knowledge and tools from earlier in this course? This is where you use them — attach the document or policy your agent should reference, and connect the tool it needs to actually take action, like a live data source or system.

Now customize it for your workflow. Do this by chatting with the agent directly — the same way you’d ask an assistant for something, then approve it before it’s done. Tell it what’s different about your task.

Give your agent a name your team will recognize, and you’ve got a real, working first draft.

Next, we’ll test it properly, fix what’s off, and get it ready to run for real.

Build Your First Agent from a Template

Overview

You don’t have to build from scratch. Leapforce gives you 100+ ready-made agent templates, each with a prebuilt dashboard, automation, and report already set up. In this lesson, you’ll choose one, understand what’s already built in, and customize it for your real workflow.

What you’ll learn

  1. How to choose a template that fits your real task.
  2. What comes prebuilt with every template — dashboard, automation, and report.
  3. How to customize a template for your specific workflow, by chatting with the agent.
  4. How to connect the tools and knowledge it needs, using what you learned earlier in this course.

Before you start

Bring the task you’ve been thinking about throughout this course. Have it ready in one or two sentences.

Completion checkpoint

Write one sentence: “My agent is called [name], built from the [template] template, connected to [tool/knowledge], and its first job is [task].”

Lesson 7

Test, Run, Share Your Agent

View transcript

Welcome to the last lesson in this course — where your agent goes from a first draft to something you can actually rely on.

Start by testing it against real scenarios: the examples you prepared before this lesson. Include a typical case, and at least one edge case — something messy or unusual. Run each one and actually read the output, the way you’d review a new hire’s first week of work.

Here’s the good news: everything from here happens right in chat. If you spot a failure, a mistake, or a gap — the agent missed a step, used the wrong information, or got the tone wrong — just tell it, in plain language, the same way you’d correct a teammate. “You missed step three” or “this should use the updated pricing” is enough.

Your agent updates its instructions based on that conversation. Then test the same scenario again, right there in chat, to confirm the fix actually worked — not just that something changed.

No code, no separate settings screen. Identifying the gap, fixing it, and validating the fix all happen in the same conversation.

Once your test cases hold up, it’s time to put your agent to work. Publish it, then share it with your team — start narrow, with the people closest to the task, rather than opening it to everyone right away. Let them know what it does, and what still needs a human.

That’s the full arc: you understood what AI and agents can do, learned to give clear instructions through chat, connected tools, knowledge, and skills, learned to verify results, and now you’ve tested, improved, and published a working agent — all through conversation.

You’re ready to keep building. Congratulations.

Test, Run, Share Your Agent

Overview

A working first draft isn’t the finish line. Before your agent handles real work, you need to test it, spot where it falls short, and fix it — and the good news is, you can do all of that just through chat, the same way you’ve been talking to your agent all along. Once it holds up, it’s time to put it to work: publish it and share it with your team.

What you’ll learn

  1. How to test your agent against real, realistic scenarios.
  2. How to spot a failure, mistake, or gap — and tell your agent what to fix, through chat.
  3. How to improve instructions and validate the fix, all in the same conversation.
  4. How to publish your agent and share it with your team.

Before you start

Write down two or three realistic scenarios your agent should handle, including at least one edge case.

Completion checkpoint

Write one sentence: “I tested my agent against [typical case] and [edge case], fixed [issue] through chat, validated the fix by re-testing, and published it for [who has access].”