Function calling

Enable models to fetch data and take actions.
Function calling provides a powerful and flexible way for OpenAI models to interface with your code or external services, and has two primary use cases:
Fetching Data
Retrieve up-to-date information to incorporate into the model's response (RAG). Useful for searching knowledge bases and retrieving specific data from APIs (e.g. current weather data).
Taking Action
Perform actions like submitting a form, calling APIs, modifying application state (UI/frontend or backend), or taking agentic workflow actions (like handing off the conversation).
If you only want the model to produce JSON, see our docs on structured outputs.
Get weather
Function calling example with get\_weather function
Output
Send email
Function calling example with send\_email function
Output
Search knowledge base
Function calling example with search\_knowledge\_base function
Output
Experiment with function calling and generate function schemas in the Playground!

Overview

You can extend the capabilities of OpenAI models by giving them access to tools, which can have one of two forms:
Function Calling
Developer-defined code.
Hosted Tools
OpenAI-built tools. (e.g. file search, code interpreter)Only available in the Assistants API.
This guide will cover how you can give the model access to your own functions through function calling. Based on the system prompt and messages, the model may decide to call these functions — instead of (or in addition to) generating text or audio.
You'll then execute the function code, send back the results, and the model will incorporate them into its final response.
notion image

Sample function

Let's look at the steps to allow a model to use a real get_weather function defined below:
Sample get\_weather function implemented in your codebase
Unlike the diagram earlier, this function expects precise latitude and longitude instead of a general location parameter. (However, our models can automatically determine the coordinates for many locations!)

Function calling steps

Step 1: Call model with get\_weather tool defined
  • Model decides to call function(s) – model returns the name and input arguments.
completion.choices\[0\].message.tool\_calls
Step 3: Execute get\_weather function
  • Supply model with results – so it can incorporate them into its final response.
Step 4: Supply result and call model again
  • Model responds – incorporating the result in its output.
completion\_2.choices\[0\].message.content

Defining functions

Functions can be set in the tools parameter of each API request inside a function object.
A function is defined by its schema, which informs the model what it does and what input arguments it expects. It comprises the following fields:
Field
Description
name
The function's name (e.g. get_weather)
description
Details on when and how to use the function
parameters
JSON schema defining the function's input arguments
Take a look at this example or generate your own below (or in our Playground).
Generate
Example function schema
Because the parameters are defined by a JSON schema, you can leverage many of its rich features like property types, enums, descriptions, nested objects, and, recursive objects.
(Optional) Function calling wth pydantic and zod
While we encourage you to define your function schemas directly, our SDKs have helpers to convert pydantic and zod objects into schemas. Not all pydantic and zod features are supported.
Define objects to represent function schema

Best practices for defining functions

  1. Write clear and detailed function names, parameter descriptions, and instructions.
      • Explicitly describe the purpose of the function and each parameter (and its format), and what the output represents.
      • Use the system prompt to describe when (and when not) to use each function. Generally, tell the model exactly what to do.
      • Include examples and edge cases, especially to rectify any recurring failures. (Note: Adding examples may hurt performance for reasoning models.)
  1. Apply software engineering best practices.
      • Use enums and object structure to make invalid states unrepresentable. (e.g. toggle_light(on: bool, off: bool) allows for invalid calls)
      • Pass the intern test. Can an intern/human correctly use the function given nothing but what you gave the model? (If not, what questions do they ask you? Add the answers to the prompt.)
  1. Offload the burden from the model and use code where possible.
      • Don't make the model fill arguments you already know. For example, if you already have an order_id based on a previous menu, don't have an order_id param – instead, have no params submit_refund() and pass the order_id with code.
      • Combine functions that are always called in sequence. For example, if you always call mark_location() after query_location(), just move the marking logic into the query function call.
  1. Keep the number of functions small for higher accuracy.
      • Evaluate your performance with different numbers of functions.
      • Aim for fewer than 20 functions at any one time, though this is just a soft suggestion.
  1. Leverage OpenAI resources.
      • Generate and iterate on function schemas in the Playground.
      • Consider fine-tuning to increase function calling accuracy for large numbers of functions or difficult tasks. (cookbook)

Token Usage

Under the hood, functions are injected into the system message in a syntax the model has been trained on. This means functions count against the model's context limit and are billed as input tokens. If you run into token limits, we suggest limiting the number of functions or the length of the descriptions you provide for function parameters.
It is also possible to use fine-tuning to reduce the number of tokens used if you have many functions defined in your tools specification.

Handling function calls

When the model calls a function, you must execute it and return the result. Since model responses can include zero, one, or multiple calls, it is best practice to assume there are several.
The response has an array of tool_calls, each with an id (used later to submit the function result) and a function containing a name and JSON-encoded arguments.
Sample response with multiple function calls
Execute function calls and append results
In the example above, we have a hypothetical call_function to route each call. Here’s a possible implementation:
Execute function calls and append results

Formatting results

A result must be a string, but the format is up to you (JSON, error codes, plain text, etc.). The model will interpret that string as needed.
If your function has no return value (e.g. send_email), simply return a string to indicate success or failure. (e.g. "success")

Incorporating results into response

After appending the results to your messages, you can send them back to the model to get a final response.
Send results back to model
Final response

Additional configurations

Tool choice

By default the model will determine when and how many tools to use. You can force specific behavior with the tool_choice parameter.
  1. Auto: (Default) Call zero, one, or multiple functions. tool_choice: "auto"
  1. Required: Call one or more functions. tool_choice: "required"
  1. Forced Function: Call exactly one specific function. tool_choice: {"type": "function", "function": {"name": "get_weather"}}
notion image
You can also set tool_choice to "none" to imitate the behavior of passing no functions.

Parallel function calling

The model may choose to call multiple functions in a single turn. You can prevent this by setting parallel_tool_calls to false, which ensures exactly zero or one tool is called.
Note: Currently, if the model calls multiple functions in one turn then strict mode will be disabled for those calls.

Strict mode

Setting strict to true will ensure function calls reliably adhere to the function schema, instead of being best effort. We recommend always enabling strict mode.
Under the hood, strict mode works by leveraging our structured outputs feature and therefore introduces a couple requirements:
  1. additionalProperties must be set to false for each object in the parameters.
  1. All fields in properties must be marked as required.
You can denote optional fields by adding null as a type option (see example below).
Strict mode enabled
Strict mode disabled
All schemas generated in the playground have strict mode enabled.
While we recommend you enable strict mode, it has a few limitations:
  1. Some features of JSON schema are not supported. (See supported schemas.)
  1. Schemas undergo additional processing on the first request (and are then cached). If your schemas vary from request to request, this may result in higher latencies.
  1. Schemas are cached for performance, and are not eligible for zero data retention.

Streaming

Streaming can be used to surface progress by showing which function is called as the model fills its arguments, and even displaying the arguments in real time.
Streaming function calls is very similar to streaming regular responses: you set stream to true and get chunks with delta objects.
Streaming function calls
Output delta.tool\_calls
Instead of aggregating chunks into a single content string, however, you're aggregating chunks into an encoded arguments JSON object.
When the model calls one or more functions the tool_calls field of each delta will be populated. Each tool_call contains the following fields:
Field
Description
index
Identifies which function call the delta is for
id
Tool call id.
function
Function call delta (name and arguments)
type
Type of tool_call (always function for function calls)
Many of these fields are only set for the first delta of each tool call, like id, function.name, and type.
Below is a code snippet demonstrating how to aggregate the deltas into a final tool_calls object.
Accumulating tool\_call deltas
Accumulated final\_tool\_calls\[0\]
Was this page useful?
Share this article