-
-
Notifications
You must be signed in to change notification settings - Fork 625
Description
Now when we retrieve an assistant using curl, there is a new parameter reasoning_effort, here are a couple examples :
{
"id": "asst_xxxx",
"object": "assistant",
"created_at": 1725282637,
"name": "Assistant 1",
"description": null,
"model": "o1",
"instructions": "You're an assistant.",
"tools": [
{
"type": "file_search",
"file_search": {
"ranking_options": {
"ranker": "default_2024_08_21",
"score_threshold": 0.0
}
}
}
],
"top_p": 1.0,
"temperature": 1.0,
"reasoning_effort": "medium",
"tool_resources": {
"file_search": {
"vector_store_ids": [
"vs_xxxxx"
]
}
},
"metadata": {},
"response_format": {
"type": "text"
}
}
{
"id": "asst_xxxx",
"object": "assistant",
"created_at": 1725282637,
"name": "Assistant 1",
"description": null,
"model": "gpt-4o-mini",
"instructions": "You're an assistant.",
"tools": [
{
"type": "file_search",
"file_search": {
"ranking_options": {
"ranker": "default_2024_08_21",
"score_threshold": 0.0
}
}
}
],
"top_p": 1.0,
"temperature": 1.0,
"reasoning_effort": null,
"tool_resources": {
"file_search": {
"vector_store_ids": [
"vs_xxxxx"
]
}
},
"metadata": {},
"response_format": {
"type": "text"
}
}