curl --request POST \
--url https://api.naga.ac/v1/responses \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "<string>",
"input": {},
"instructions": "<string>",
"max_output_tokens": 123,
"temperature": 123,
"top_p": 123,
"presence_penalty": 123,
"frequency_penalty": 123,
"top_logprobs": 123,
"tools": [
{}
],
"tool_choice": {},
"parallel_tool_calls": true,
"reasoning": {},
"text": {},
"stream": true
}
'