curl --location '/v1/chat/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"max_tokens": 0,
"messages": [
{
"content": null,
"name": "string",
"role": "system",
"tool_calls": [
{
"property1": "string",
"property2": "string"
}
]
}
],
"model": "string",
"response_format": {
"type": "string"
},
"stream": false,
"temperature": 0,
"tools": [
{
"property1": "string",
"property2": "string"
}
],
"top_p": 0
}'{
"choices": [
{
"finish_reason": "string",
"index": 0,
"message": {
"content": null,
"name": "string",
"role": "system",
"tool_calls": [
{
"property1": "string",
"property2": "string"
}
]
}
}
],
"created": 0,
"id": "string",
"model": "string",
"object": "string"
}