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,
"stop": [
"<string>"
],
"logit_bias": {},
"tools": [
{}
],
"tool_choice": {},
"parallel_tool_calls": true,
"reasoning": {},
"text": {},
"stream": true
}
'