curl --location --request POST 'https://api.openai.com/v1/assistants/asst_abc123' \
--header 'Authorization: Bearer $OPENAI_API_KEY' \
--header 'OpenAI-Beta: assistants=v1' \
--header 'Content-Type: application/json' \
--data-raw '{
"instructions": "string",
"tools": [
"string"
],
"model": "string",
"file_ids": [
"string"
]
}'
{
"id": "string",
"object": "string",
"created_at": 0,
"name": "string",
"description": null,
"model": "string",
"instructions": "string",
"tools": [
{
"type": "string"
}
],
"file_ids": [
"string"
],
"metadata": {},
"top_p": 0,
"temperature": 0,
"response_format": "string"
}