← Volver al programa
AI Essentials: Understand Generative AI in 20 Minutes · Lección 6 de 8

6. From Chat to Agents

Understand the difference between a one-shot chat answer and an agent that plans, uses tools and iterates toward a goal.

When you type a question in a chat, the AI model reads your message, predicts the most plausible response, and gives it to you in one go. That's a one-shot interaction: you ask, it answers, done. The model has no plan, no ability to check its own work, and no way to go fetch missing information unless someone has wired that up. Think of it like asking a colleague a question in the hallway — you get their best guess on the spot, but they won't go research it further unless you ask again.

An AI agent is fundamentally different. Instead of answering once, the model is placed in a loop: it receives a goal, breaks it into steps, picks a tool (search the web, read a document, call a service), looks at the result, and decides what to do next — repeating until the goal is met. It can course-correct along the way. In OUPI, this agent layer is called Conductor: you give it a mission, and it works through it across the platform, step by step, on your behalf.

Why does the agent approach matter? Remember that models are text predictors — they can hallucinate facts and have no built-in way to verify what they say. An agent mitigates this by grounding itself: it can pull real data from your documents, run a web search, or call a tool that returns verified information. Each loop gives the model a chance to check and refine, instead of guessing everything in a single pass. The result is more accurate and more useful than a one-shot answer.

Here's a simple way to picture the difference:

• Chat: "Summarize this PDF." → You get one summary immediately. • Agent: "Research competitor pricing, compare it with our catalog, and draft a recommendation." → The agent searches the web, reads your catalog document, compares the data, and writes a structured report — multiple steps, multiple tools, one mission.

Same underlying models power both modes in OUPI; the difference is the instructions and tools wrapped around them.

Consejo

Use chat for quick, self-contained tasks (a translation, a summary, a brainstorm). Switch to an agent when the task has several steps, needs external data, or benefits from the AI checking its own intermediate results. Match the mode to the complexity of your goal.

Consejo

Even with agents, responsibility stays human. The AI proposes, you validate. The more consequential the output — figures, legal claims, commitments — the more carefully you should review it before acting on it.

Ahora tú

Open your OUPI assistant and try both modes: first, ask a simple question in chat. Then, give a multi-step mission (e.g., "Find three recent articles about AI regulation and summarize the key points") and watch how the agent plans, searches, and iterates before delivering a result.

Seguir este curso en OUPI → Este ejercicio se realiza en la plataforma OUPI.
Para recordar

A chat gives you one answer to one question — fast but limited. An agent loops: it plans, picks tools, checks results, and iterates until the goal is reached. This loop, combined with grounding (documents, search, tools), reduces hallucinations and handles complex, multi-step work. In OUPI, the same models power both modes; Conductor is the agent layer. Use chat for quick tasks, agents for missions — and always validate what matters.