GET
/
agent
/
{uuid}
curl --request GET \
  --url https://geekai.co/api/v1/agent/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "logo": "<string>",
  "desc": "<string>",
  "status": "initializing",
  "model": "<string>",
  "chat_level": 123,
  "interneted": 123,
  "stream": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

智能体创建或更新成功后,可以通过查询接口检查智能体训练状态。

示例响应数据:

Authorizations

Authorization
string
header
required

JWT认证token

Path Parameters

uuid
string
required

资源唯一标识符

Response

200
application/json
成功响应
uuid
string
required

智能体ID

name
string
required

智能体名称

desc
string
required

智能体描述

status
enum<string>
required

智能体状态

Available options:
initializing,
ready,
training,
error

智能体logo地址

model
string

使用的模型

chat_level
integer

模型温度

interneted
integer

是否启用联网

stream
integer

是否启用流式对话

created_at
string

创建时间

updated_at
string

最后更新时间