curl --request POST \
--url https://www.orgo.ai/api/ai \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"provider": "openrouter",
"model": "<string>",
"messages": [
{
"role": "<string>",
"content": "<string>"
}
],
"stream": true,
"temperature": 123,
"max_tokens": 123
}
'