ShiShiYiBan/yudao-module-ai/yudao-module-ai-biz/src/main/resources/http/chat-message.http

32 lines
665 B
HTTP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

### chat call
POST {{baseUrl}}/admin-api/ai/chat/message/send
Content-Type: application/json
Authorization: {{token}}
{
"conversationId": "1781604279872581649",
"content": ""
}
### chat call
POST {{baseUrl}}/admin-api/ai/chat/message/send-stream
Content-Type: application/json
Authorization: {{token}}
{
"conversationId": "1781604279872581649",
"content": ""
}
### message list
GET {{baseUrl}}/admin-api/ai/chat/message/list-by-conversation-id?conversationId=1781604279872581649
Authorization: {{token}}
### message delete
DELETE {{baseUrl}}/admin-api/ai/chat/message/delete?id=50
Authorization: {{token}}