32 lines
665 B
HTTP
32 lines
665 B
HTTP
|
||
### 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}}
|