message 列表
开发环境
开发环境
GET
/v1/threads/messages/list
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'http://dev-cn.your-api-server.com/v1/threads/messages/list?GroupId=${GroupId}' \
--header 'Authorization: Bearer ${API_KEY}' \
--header 'Content-Type: application/json' \
--data-raw '{
"thread_id": "$Thread_Id"
}'
响应示例响应示例
{
"object": "list",
"data": [
{
"id": "msg_abc123",
"object": "message",
"created_at": 1703318047,
"thread_id": "thread_id",
"role": "user",
"content": [
{
"type": "text",
"text": {
"value": "明天天气怎么样?",
"annotations": []
}
}
],
"file_ids": null,
"assistant_id": "asst_abc123",
"run_id": "run_abc123",
"metadata": {
"key1": "value1",
"key2": "value2"
}
},
{
"id": "msg_abc123",
"object": "message",
"created_at": 1703318063,
"thread_id": "thread_id",
"role": "ai",
"content": [
{
"type": "text",
"text": {
"value": "明天,也就是12月23日,天气预计为多云,气温在-9℃到0℃之间【1†source】。",
"annotations": [
{
"type": "web_citation",
"text": "【1†source】",
"start_index": 32,
"end_index": 42,
"web_citation": {
"quote": "气象公报 更多. 12月22日20时:交通气象预报. 中国气象局与交通运输部2023年12月22日联合发布全国主要公路气象预报. 12月22日18时:天气公报. 我国中东部大部地区气温持续偏低. 12月22日08时:每日天气提示. 山东文登积雪深度达74厘米 未来三天全国雨雪稀少气温 ..."
}
}
]
}
}
],
"file_ids": null,
"assistant_id": "asst_abc123",
"run_id": "run_abc123",
"metadata": null
}
],
"first_id": "msg_abc123",
"last_id": "msg_abc123",
"base_resp": {
"status_code": 0,
"status_msg": "success"
}
}
请求参数
Query 参数
GroupId
string
必需
示例值:
${GroupId}
Header 参数
Authorization
string
必需
示例值:
Bearer ${API_KEY}
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
返回响应
修改于 2024-01-03 09:27:39