curl --request POST \
--url https://api.orcarouter.ai/v1/messages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "claude-3-5-sonnet-latest",
"messages": [
{
"role": "user",
"content": "<string>"
}
],
"max_tokens": 123,
"system": "<string>",
"stop_sequences": [
"<string>"
],
"stream": true,
"temperature": 123,
"top_p": 123,
"top_k": 123,
"tools": [
{}
],
"tool_choice": {},
"metadata": {}
}
'