创建 run
POST
/v1/threads/run/create- Error结构
参数 | 类型 | 含义 |
---|---|---|
code | string | 错误码 |
message | string | 错误信息 |
- Function结构
参数 | 类型 | 含义 | 备注 |
---|---|---|---|
name | string | 函数名称 | |
description | string | 函数功能描述 | |
parameters | FunctionParameters | 该函数的参数及其说明 | 对每个参数的命名和参数说明也需要描述精确,才能更好的生成。比如: "parameters": { "type": "object", "properties": { "meeting_id": { "type": "string", "description": "会议id" }, "participants": { "type": "string", "description": "参会人" } }, "required": [ "meetingid", "participants" ] } |
您可以通过此项操作创建一个Run。
请求参数
Query 参数
GroupId
string
必需
示例值:
${GroupId}
Header 参数
Authorization
string
必需
示例值:
Bearer ${API_KEY}
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
thread_id
string
必需
assistant_id
string
必需
示例
{
"thread_id": "$Thread_Id",
"assistant_id": "${Assistant_Id}"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
id
string
Run id
object
string
对象:run
created_at
integer
创建时间戳
assistant_id
string
必需
对应assistantassistantid
thread_id
string
必需
status
string
状态
started_at
integer
开始运行时间戳
expires_at
integer
过期时间戳
cancelled_at
integer
取消时间戳
failed_at
integer
失败时间戳
completed_at
integer
成功时间戳
last_error
null
错误信息
model
string
模型名称
instructions
string
必需
覆盖assistiant的指令集
tools
array [object {1}]
必需
可选项: code_interpreter retrieval function web_search
type
string
可选
参数 description str name str parameters object
file_ids
array[string]
相关的文件列表
metadata
null
元信息
base_resp
object
必需
status_code
integer
必需
status_msg
string
必需
示例
{
"id": "run_abc123",
"object": "thread.run",
"created_at": 1703245668,
"assistant_id": "asst_abc123
"thread_id": "thread_abc123",
"status": "queued",
"started_at": 0,
"expires_at": 0,
"cancelled_at": 0,
"failed_at": 0,
"completed_at": 0,
"last_error": null,
"model": "abab5.5-chat",
"instructions": "Follow the instructions carefully\n回答中若参考了函数返回结果中的信息,请在该句末尾用【1†source】【2†source】【3†source】的形式标注信息来源。严禁使用其他的引用格式(如[1],【1】,²等等)。",
"tools": [
{
"type": "retrieval"
}
],
"file_ids": [
"${file id}"
],
"metadata": null,
"base_resp": {
"status_code": 0,
"status_msg": "success"
}
}
最后修改时间: 10 个月前