curl --request POST \
--url https://api.lyceum.technology/api/v2/external/v1/chat/completions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "<string>",
"messages": [
{
"role": "<string>",
"content": "<string>"
}
],
"max_tokens": 1000,
"temperature": 0.7,
"top_p": 1,
"stream": false,
"stop": "<string>",
"frequency_penalty": 0,
"presence_penalty": 0,
"user": "<string>",
"raw_output": false
}
'