列出运行步骤
GET
https://api.openai.com/v1/threads/{thread_id}/runs/{run_id}/steps请求参数
Path 参数
thread_id
string
必需
运行和运行步骤所属线程的 ID。
run_id
string
必需
运行步骤所属的运行的 ID。
Query 参数
limit
integer
可选
要返回的对象数量的限制。限制范围可以在 1 到 100 之间,默认值为 20。
order
string
可选
created_at按对象的时间戳排序。asc对于升序和desc降序。
after
string
可选
用于分页的光标。after是定义您在列表中位置的对象 ID。例如,如果您发出列表请求并收到 100 个以 obj_foo 结尾的对象,则后续调用可以包含 after=obj_foo 以获取列表的下一页。
before
string
可选
用于分页的光标。before是定义您在列表中位置的对象 ID。例如,如果您发出列表请求并收到 100 个以 obj_foo 结尾的对象,则后续调用可以包含 before=obj_foo 以获取列表的上一页。
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
object
string
必需
data
array [object {14}]
必需
id
string
可选
object
string
可选
created_at
integer
可选
run_id
string
可选
assistant_id
string
可选
thread_id
string
可选
type
string
可选
status
string
可选
cancelled_at
null
可选
completed_at
integer
可选
expired_at
null
可选
failed_at
null
可选
last_error
null
可选
step_details
object
可选
first_id
string
必需
last_id
string
必需
has_more
boolean
必需
示例
{
"object": "list",
"data": [
{
"id": "step_QyjyrsVsysd7F4K894BZHG97",
"object": "thread.run.step",
"created_at": 1699063291,
"run_id": "run_UWvV94U0FQYiT2rlbBrdEVmC",
"assistant_id": "asst_nGl00s4xa9zmVY6Fvuvz9wwQ",
"thread_id": "thread_BDDwIqM4KgHibXX3mqmN3Lgs",
"type": "message_creation",
"status": "completed",
"cancelled_at": null,
"completed_at": 1699063291,
"expired_at": null,
"failed_at": null,
"last_error": null,
"step_details": {
"type": "message_creation",
"message_creation": {
"message_id": "msg_6YmiCRmMbbE6FALYNePPHqwm"
}
}
}
],
"first_id": "step_QyjyrsVsysd7F4K894BZHG97",
"last_id": "step_QyjyrsVsysd7F4K894BZHG97",
"has_more": false
}
最后修改时间: 1 年前