curl --request POST \
--url https://cloud.onyx.app/api/chat/seed-chat-session \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"persona_id": 123,
"llm_override": {
"model_provider": "<string>",
"model_version": "<string>",
"temperature": 123
},
"prompt_override": {
"system_prompt": "<string>",
"task_prompt": "<string>"
},
"description": "<string>",
"message": "<string>"
}
'