curl --request POST \
--url https://{defaultHost}/chat/completions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "<string>",
"prompt": "<string>",
"messages": [
{
"role": "system",
"content": "<string>"
}
]
}
'