curl --request POST \
--url https://hub.oxen.ai/api/ai/chat/completions \
--header 'Content-Type: application/json' \
--data '
{
"messages": [
{
"content": "<string>",
"role": "system",
"name": "<string>",
"tool_call_id": "<string>",
"tool_calls": [
{}
]
}
],
"model": "gpt-4o",
"frequency_penalty": 123,
"max_tokens": 123,
"presence_penalty": 123,
"response_format": {},
"temperature": 123,
"tool_choice": "<string>",
"tools": [
{}
],
"top_p": 123
}
'