- 文件服务
- 链接分析(url analysis)
- 图片生成
- 音乐生成
- 视频生成
- GPTs 相关
- 数字人
- 智谱清言(glm)
- openai
检索运行步骤
开发中
GET
/v1 /threads/{thread_id}/runs/{run_id}/steps/{step_id}
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Path 参数
thread_id
string
必需
run_id
string
必需
step_id
string
必需
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.tu-zi.com/v1 /threads//runs//steps/'
返回响应
🟢200成功
application/json
Body
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
必需
type
string
必需
message_creation
object
必需
示例
{
"id": "string",
"object": "string",
"created_at": 0,
"run_id": "string",
"assistant_id": "string",
"thread_id": "string",
"type": "string",
"status": "string",
"cancelled_at": null,
"completed_at": 0,
"expired_at": null,
"failed_at": null,
"last_error": null,
"step_details": {
"type": "string",
"message_creation": {
"message_id": "string"
}
}
}
修改于 2025-04-11 06:15:18