curl -X 'POST' \
'https://backend.chatfly.co/api/chat/get-streaming-response-with-custom-settings' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"type_qa": "string",
"bot_id": "xxxx-xxxx-xxxx-xxxx",
"message": "Hi",
"chat_history": [
{
"sender_type": "user",
"content": "Hi"
},
{
"sender_type": "assistant",
"content": "Hello! How can I assist you today?"
}],
"custom_prompt": "I want you to act as an assistant to a customer support agent by writing email responses...",
"gpt_model_name": "gpt-3.5-turbo-16k",
"temperature": 0,
"rules": []
}'