2024-04-24 19:04:16 +08:00
|
|
|
|
2024-05-07 16:47:25 +08:00
|
|
|
### 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": "苹果是什么颜色?"
|
|
|
|
}
|
|
|
|
|
2024-04-24 19:04:16 +08:00
|
|
|
|
|
|
|
### message list
|
2024-05-07 16:47:25 +08:00
|
|
|
GET {{baseUrl}}/admin-api/ai/chat/message/list-by-conversation-id?conversationId=1781604279872581649
|
2024-04-24 19:04:16 +08:00
|
|
|
Authorization: {{token}}
|
|
|
|
|
|
|
|
|
|
|
|
### message delete
|
2024-05-07 16:47:25 +08:00
|
|
|
DELETE {{baseUrl}}/admin-api/ai/chat/message/delete?id=50
|
2024-04-24 19:04:16 +08:00
|
|
|
Authorization: {{token}}
|