message 列表
GET
/v1/threads/messages/list您可以通过此项操作列出已创建的message的列表。
请求参数
Query 参数
GroupId
string
必需
示例值:
${GroupId}
Header 参数
Authorization
string
必需
示例值:
Bearer ${API_KEY}
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
thread_id
string
必需
示例
{
"thread_id": "$Thread_Id"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
object
string
对象
data
array [object {10}]
必需
列出的message列表
id
string
必需
object
string
必需
created_at
integer
必需
thread_id
string
必需
role
string
必需
content
array [object {2}]
必需
file_ids
null
必需
assistant_id
string
必需
run_id
string
必需
metadata
object | null
必需
first_id
string
必需
起始message id
last_id
string
必需
终止message id
base_resp
object
请求状态
status_code
integer
必需
status_msg
string
必需
示例
{
"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"
}
}
最后修改时间: 10 个月前