Assistants API deep diveBeta
As described in the Assistants Overview, there are several concepts involved in building an app with the Assistants API.
This guide goes deeper into each of these concepts.
If you want to get started coding right away, check out the Assistants API Quickstart.
Creating Assistants
To get started, creating an Assistant only requires specifying the model
to use. But you can further customize the behavior of the Assistant:
- Use the
instructions
parameter to guide the personality of the Assistant and define its goals. Instructions are similar to system messages in the Chat Completions API. - Use the
tools
parameter to give the Assistant access to up to 128 tools. You can give it access to OpenAI-hosted tools likecode_interpreter
andfile_search
, or call a third-party tools via afunction
calling. - Use the
tool_resources
parameter to give the tools likecode_interpreter
andfile_search
access to files. Files are uploaded using theFile
upload endpoint and must have thepurpose
set toassistants
to be used with this API.
For example, to create an Assistant that can create data visualization based on a .csv
file, first upload a file.
1
2
3
4
file = client.files.create(
file=open("revenue-forecast.csv", "rb"),
purpose='assistants'
)
Then, create the Assistant with the code_interpreter
tool enabled and provide the file as a resource to the tool.
1
2
3
4
5
6
7
8
9
10
11
assistant = client.beta.assistants.create(
name="Data visualizer",
description="You are great at creating beautiful data visualizations. You analyze data present in .csv files, understand trends, and come up with data visualizations relevant to those trends. You also share a brief text summary of the trends observed.",
model="gpt-4o",
tools=[{"type": "code_interpreter"}],
tool_resources={
"code_interpreter": {
"file_ids": [file.id]
}
}
)
You can attach a maximum of 20 files to code_interpreter
and 10,000 files to file_search
(using vector_store
objects).
Each file can be at most 512 MB in size and have a maximum of 5,000,000 tokens. By default, the size of all the files uploaded in your project cannot exceed 100 GB, but you can reach out to our support team to increase this limit.
Managing Threads and Messages
Threads and Messages represent a conversation session between an Assistant and a user. There is a limit of 100,000 Messages per Thread. Once the size of the Messages exceeds the context window of the model, the Thread will attempt to smartly truncate messages, before fully dropping the ones it considers the least important.
You can create a Thread with an initial list of Messages like this:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
thread = client.beta.threads.create(
messages=[
{
"role": "user",
"content": "Create 3 data visualizations based on the trends in this file.",
"attachments": [
{
"file_id": file.id,
"tools": [{"type": "code_interpreter"}]
}
]
}
]
)
Messages can contain text, images, or file attachment. Message attachments
are helper methods that add files to a thread's tool_resources
. You can also choose to add files to the thread.tool_resources
directly.
Creating image input content
Message content can contain either external image URLs or File IDs uploaded via the File API. Only models with Vision support can accept image input. Supported image content types include png, jpg, gif, and webp. When creating image files, pass purpose="vision"
to allow you to later download and display the input content. Currently, there is a 100GB limit per project. Please contact us to request a limit increase.
Tools cannot access image content unless specified. To pass image files to Code Interpreter, add the file ID in the message attachments
list to allow the tool to read and analyze the input. Image URLs cannot be downloaded in Code Interpreter today.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
file = client.files.create(
file=open("myimage.png", "rb"),
purpose="vision"
)
thread = client.beta.threads.create(
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "What is the difference between these images?"
},
{
"type": "image_url",
"image_url": {"url": "https://example.com/image.png"}
},
{
"type": "image_file",
"image_file": {"file_id": file.id}
},
],
}
]
)
Low or high fidelity image understanding
By controlling the detail
parameter, which has three options, low
, high
, or auto
, you have control over how the model processes the image and generates its textual understanding.
low
will enable the "low res" mode. The model will receive a low-res 512px x 512px version of the image, and represent the image with a budget of 85 tokens. This allows the API to return faster responses and consume fewer input tokens for use cases that do not require high detail.high
will enable "high res" mode, which first allows the model to see the low res image and then creates detailed crops of input images based on the input image size. Use the pricing calculator to see token counts for various image sizes.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
thread = client.beta.threads.create(
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "What is this an image of?"
},
{
"type": "image_url",
"image_url": {
"url": "https://example.com/image.png",
"detail": "high"
}
},
],
}
]
)
Context window management
The Assistants API automatically manages the truncation to ensure it stays within the model's maximum context length. You can customize this behavior by specifying the maximum tokens you'd like a run to utilize and/or the maximum number of recent messages you'd like to include in a run.
Max Completion and Max Prompt Tokens
To control the token usage in a single Run, set max_prompt_tokens
and max_completion_tokens
when creating the Run. These limits apply to the total number of tokens used in all completions throughout the Run's lifecycle.
For example, initiating a Run with max_prompt_tokens
set to 500 and max_completion_tokens
set to 1000 means the first completion will truncate the thread to 500 tokens and cap the output at 1000 tokens. If only 200 prompt tokens and 300 completion tokens are used in the first completion, the second completion will have available limits of 300 prompt tokens and 700 completion tokens.
If a completion reaches the max_completion_tokens
limit, the Run will terminate with a status of incomplete
, and details will be provided in the incomplete_details
field of the Run object.
Truncation Strategy
You may also specify a truncation strategy to control how your thread should be rendered into the model's context window.
Using a truncation strategy of type auto
will use OpenAI's default truncation strategy. Using a truncation strategy of type last_messages
will allow you to specify the number of the most recent messages to include in the context window.
Message annotations
Messages created by Assistants may contain annotations
within the content
array of the object. Annotations provide information around how you should annotate the text in the Message.
There are two types of Annotations:
file_citation
: File citations are created by thefile_search
tool and define references to a specific file that was uploaded and used by the Assistant to generate the response.file_path
: File path annotations are created by thecode_interpreter
tool and contain references to the files generated by the tool.
When annotations are present in the Message object, you'll see illegible model-generated substrings in the text that you should replace with the annotations. These strings may look something like 【13†source】
or sandbox:/mnt/data/file.csv
. Here’s an example python code snippet that replaces these strings with information present in the annotations.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Retrieve the message object
message = client.beta.threads.messages.retrieve(
thread_id="...",
message_id="..."
)
# Extract the message content
message_content = message.content[0].text
annotations = message_content.annotations
citations = []
# Iterate over the annotations and add footnotes
for index, annotation in enumerate(annotations):
# Replace the text with a footnote
message_content.value = message_content.value.replace(annotation.text, f' [{index}]')
# Gather citations based on annotation attributes
if (file_citation := getattr(annotation, 'file_citation', None)):
cited_file = client.files.retrieve(file_citation.file_id)
citations.append(f'[{index}] {file_citation.quote} from {cited_file.filename}')
elif (file_path := getattr(annotation, 'file_path', None)):
cited_file = client.files.retrieve(file_path.file_id)
citations.append(f'[{index}] Click <here> to download {cited_file.filename}')
# Note: File download functionality not implemented above for brevity
# Add footnotes to the end of the message before displaying to user
message_content.value += '\n' + '\n'.join(citations)
Runs and Run Steps
When you have all the context you need from your user in the Thread, you can run the Thread with an Assistant of your choice.
1
2
3
4
run = client.beta.threads.runs.create(
thread_id=thread.id,
assistant_id=assistant.id
)
By default, a Run will use the model
and tools
configuration specified in Assistant object, but you can override most of these when creating the Run for added flexibility:
1
2
3
4
5
6
7
run = client.beta.threads.runs.create(
thread_id=thread.id,
assistant_id=assistant.id,
model="gpt-4o",
instructions="New instructions that override the Assistant instructions",
tools=[{"type": "code_interpreter"}, {"type": "file_search"}]
)
Note: tool_resources
associated with the Assistant cannot be overridden during Run creation. You must use the modify Assistant endpoint to do this.
Run lifecycle
Run objects can have multiple statuses.
Status | Definition |
---|---|
queued | When Runs are first created or when you complete the required_action , they are moved to a queued status. They should almost immediately move to in_progress . |
in_progress | While in_progress, the Assistant uses the model and tools to perform steps. You can view progress being made by the Run by examining the Run Steps. |
completed | The Run successfully completed! You can now view all Messages the Assistant added to the Thread, and all the steps the Run took. You can also continue the conversation by adding more user Messages to the Thread and creating another Run. |
requires_action | When using the Function calling tool, the Run will move to a required_action state once the model determines the names and arguments of the functions to be called. You must then run those functions and submit the outputs before the run proceeds. If the outputs are not provided before the expires_at timestamp passes (roughly 10 mins past creation), the run will move to an expired status. |
expired | This happens when the function calling outputs were not submitted before expires_at and the run expires. Additionally, if the runs take too long to execute and go beyond the time stated in expires_at , our systems will expire the run. |
cancelling | You can attempt to cancel an in_progress run using the Cancel Run endpoint. Once the attempt to cancel succeeds, status of the Run moves to cancelled . Cancellation is attempted but not guaranteed. |
cancelled | Run was successfully cancelled. |
failed | You can view the reason for the failure by looking at the last_error object in the Run. The timestamp for the failure will be recorded under failed_at . |
incomplete | Run ended due to max_prompt_tokens or max_completion_tokens reached. You can view the specific reason by looking at the incomplete_details object in the Run. |
Polling for updates
If you are not using streaming, in order to keep the status of your run up to date, you will have to periodically retrieve the Run object. You can check the status of the run each time you retrieve the object to determine what your application should do next.
You can optionally use Polling Helpers in our Node and Python SDKs to help you with this. These helpers will automatically poll the Run object for you and return the Run object when it's in a terminal state.
Thread locks
When a Run is in_progress
and not in a terminal state, the Thread is locked. This means that:
- New Messages cannot be added to the Thread.
- New Runs cannot be created on the Thread.
Run steps
Run step statuses have the same meaning as Run statuses.
Most of the interesting detail in the Run Step object lives in the step_details
field. There can be two types of step details:
message_creation
: This Run Step is created when the Assistant creates a Message on the Thread.tool_calls
: This Run Step is created when the Assistant calls a tool. Details around this are covered in the relevant sections of the Tools guide.
Data Access Guidance
Currently, Assistants, Threads, Messages, and Vector Stores created via the API are scoped to the Project they're created in. As such, any person with API key access to that Project is able to read or write Assistants, Threads, Messages, and Runs in the Project.
We strongly recommend the following data access controls:
- Implement authorization. Before performing reads or writes on Assistants, Threads, Messages, and Vector Stores, ensure that the end-user is authorized to do so. For example, store in your database the object IDs that the end-user has access to, and check it before fetching the object ID with the API.
- Restrict API key access. Carefully consider who in your organization should have API keys and be part of a Project. Periodically audit this list. API keys enable a wide range of operations including reading and modifying sensitive information, such as Messages and Files.
- Create separate accounts. Consider creating separate Projects for different applications in order to isolate data across multiple applications.