curl --request POST \
--url https://your-agent-server.com/agent-connect/v1/chat \
--header 'Content-Type: application/json' \
--data '
{
"model": "<string>",
"messages": [
{}
],
"frequency_penalty": 0,
"presence_penalty": 0,
"logit_bias": {},
"logprobs": true,
"top_logprobs": 123,
"max_tokens": 123,
"max_completion_tokens": 123,
"temperature": 1,
"n": 1,
"seed": 123,
"stop": [
"<string>"
],
"stream": false,
"top_p": 1,
"tools": [
{
"function": {
"name": "<string>",
"description": "<string>",
"parameters": {}
},
"type": "function"
}
],
"tool_choice": "auto",
"parallel_tool_calls": true,
"user": "<string>",
"metadata": {},
"extra_body": {}
}
'