This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
ResDream
/
MindPilot
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
0
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
feat:完善对话功能
main
gjl
1 year ago
parent
924499f445
commit
af51fd75b4
1 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-3
src/mindpilot/app/api/conversation_routes.py
+ 3
- 3
src/mindpilot/app/api/conversation_routes.py
View File
@@ -15,16 +15,16 @@ conversation_router.get(
)(list_conversations)
conversation_router.get(
"{conversation_id}",
"
/
{conversation_id}",
summary="获取单个对话详情"
)(get_conversation)
conversation_router.delete(
"{conversation_id}",
"
/
{conversation_id}",
summary="删除对话"
)(delete_conversation)
conversation_router.post(
"{conversation_id}/messages",
"
/
{conversation_id}/messages",
summary="发送消息"
)(send_messages)
Write
Preview
Loading…
Cancel
Save