This lesson explains what functions are, why they exist, and how the LLM uses them. By the end you will understand the full request-response loop and be able to create and reference a function correctly.
Why functions exist
The Agent tab (personality, role, rules) only gets you so far. Without functions, the agent can’t retrieve user data, execute actions, save state, or integrate with external systems. Prompt engineering also doesn’t scale — putting dozens of user journeys into one rules box gives the LLM too much context and makes it harder to reason about any single scenario. Functions solve both problems: external integration and fine-grained control over what the LLM knows and does at each step.How LLMs use tools
Before looking at Agent Studio specifically, it helps to understand how LLMs use tools in general — because this pattern is the same across all modern AI systems. An LLM can produce two kinds of output:Text output
The model speaks to the user using natural language.“The weather in Paris is usually mild in October.”
Tool call
The model communicates with a system — a function, API, or piece of code — to fetch data or trigger an action.call:
get_weather with {city: "Paris"}Creating a function in Agent Studio
In Agent Studio, tools are called functions. You write them in Python and they are available for the LLM to call during a conversation. To create a function, go to Build → Functions and click the + button. Every function has:- Name — how the function is identified (used by the LLM to decide when to call it)
- Description — what the function does (also read by the LLM when deciding whether to call it)
- Parameters — the inputs the function needs, each with a name, description, and type
- Python code — what the function actually does when called
Example: a simple addition function
first_number— The first number the user wants to add (type: number)second_number— The second number the user wants to add (type: number)
Making a function visible to the LLM
Creating a function is not enough. The LLM will not call a function it does not know exists. To make a function available to the LLM, you must reference it somewhere — in a topic action, a flow step, or directly in the Rules field using the@function_name syntax.
When you reference a function, Agent Studio highlights it and registers it in the LLM request. The LLM will then see the function’s full definition (name, description, parameters) and can choose to call it.
What the LLM actually sees
You can inspect the LLM request directly in Conversation Review → Diagnosis → LLM requests. The request is structured like this:| Section | What it contains |
|---|---|
| Base system prompt — intro | Your Personality and Role fields concatenated |
| Base system prompt — rules | Everything in the Rules field |
| Context information | Knowledge base content retrieved for this turn (empty if no relevant topic matched) |
| Conversation history | The full transcript so far, alternating assistant / user roles |
| Functions | Definitions of any functions that have been referenced |
The Greeting is different — it is hard-coded text played at the start of every call and is not generated by the LLM. It does appear in conversation history so the LLM knows how the call opened, but no LLM request is made to produce it.
The two-request pattern
When the LLM calls a function, it takes two LLM requests to produce the final response to the user.Request 1: the LLM decides to call a function
The LLM receives the user input, sees the available function definitions, and outputs a tool call rather than text.The response content is empty. The function call object contains the function name and the parameter values the LLM extracted from the conversation.
The function runs
Agent Studio executes the Python function with the provided parameters and gets back a result.
What the conversation history looks like after a function call
function role is the third role alongside user and assistant. This is how function results are fed back into the LLM’s context.
Try it yourself
Create a function
In Build → Functions, create a function called
get_store_hours with no parameters. Return a string like "The store is open Monday–Friday, 9am to 6pm.".
