Добавить Endpoint для отправки сообщения
complete
Д
Дмитрий Ш.
Добрый день, можно ли сделать endpoint для отправки сообщения в чат бот клиенту без обработки chatGPT? То есть у меня есть на моей стороне сформированное сообщение, я просто хочу отправить его в по conversationID клиенту без того чтобы оно обрабатывалось еще раз через chatGPT.
Log In
S
Samuel Su
This is an example curl request
curl -X POST 'https://api.chat-data.com/api/v2/live-chat' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'authorization: Bearer {API_KEY}' \
-d '{
"chatbotId": "{CHATBOT_ID}",
"message": "test message",
"conversationId": "{CONVERSATION_ID}",
"name": "{AGENT_NAME_OPTIONAL}"
}'
S
Samuel Su
complete
S
Samuel Su
in progress
Д
Дмитрий Ш.
Потому что сейчас я отправляю через https://api.chat-data.com/api/v2/chat но он зачем-то отправляет и промпт, я не хочу отправлять промпт, я хочу отправить одно сообщение с ответом клиенту
S
Samuel Su
Дмитрий Ш.: sure. We can add another endpoint that has the same effect as you are send the message in the live chat. The role will be human though.
In the screenshot, you have the system role, which is not supported. the /chat endpoint only supports assistant and user role only. And this is for AI chatbot
S
Samuel Su
Hi
We have added the /live-chat endpoint. It will performs as if you send a message in the admin live chat panel. This endpoint requires live chat of the chatbot to be turned on to work.
S
Samuel Su
Дмитрий Ш.: The endpoint is https://api.chat-data.com/api/v2/live-chat