最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
用AI从零快速做一个情报机器人
时间:2026-07-31 14:00:50 编辑:袖梨 来源:一聚教程网
用AI从零快速做一个情报机器人并不只看表面做法,关键还要理解相关条件、限制和后续影响。

Bot_Id=xxxxxxx
user_id=xxxxxx
curl --location --request POST 'https://api.coze.cn/v3/chat'
--header 'Authorization: Bearer '$Personal_Access_Token''
--header 'Content-Type: application/json'
--data-raw '{
"bot_id": "'$Bot_Id'",
"user_id": "'$user_id'",
"stream": true,
"auto_save_history":true,
"additional_messages":[
{
"role":"user",
"content":"24小时的资讯",
"content_type":"text"
}
]
}'
curl --location --request GET 'https://api.coze.cn/v3/chat/message/list?chat_id=xxxxxx&conversation_id=xxxxx'--header 'Authorization: Bearer '$Personal_Access_Token''--header 'Content-Type: application/json'