curl --request POST \
--url https://api.edenai.run/v3/llm/v1/messages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "<string>",
"messages": [
{
"role": "user",
"content": "<string>"
}
],
"max_tokens": 2,
"system": "<string>",
"temperature": 1,
"top_p": 0.5,
"top_k": 123,
"stream": false,
"stop_sequences": [
"<string>"
],
"tools": [
{}
],
"tool_choice": {},
"metadata": {},
"thinking": {}
}
'