curl --location --request POST 'http://localhost:8080/llm/chat/chat' \
--header 'Authorization: Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6IjAxMGVlZDVlLTdkNmItNDNmZi04NDU5LTA5YWZlNzI5NzA1OCJ9.YsK36ujwves7xalfGy22oqADw1eMu9aITA4I9z1QX54yt_S3um7s5IhXT3263e2rcXaOCFItSfoOTzGdEusCCQ' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": "string",
"conversation_id": "string",
"history_len": "string",
"history": [
{
"role": "string",
"content": "string"
}
],
"stream": "string",
"model_name": "string",
"temperature": "string",
"max_tokens": "string",
"prompt_name": "string"
}'