curl --request POST \
--url https://api.dev.knowmio.com/api/openai/chat/completions \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"model": "<string>",
"messages": [
{
"role": "system",
"content": "<string>"
}
]
}
'