名称: agentuity-cli-cloud-thread-get 描述: 获取特定线程的详细信息。需要身份验证。用于Agentuity云平台操作 版本: “0.0.103” 许可证: Apache-2.0 允许的工具: “Bash(agentuity:*)” 参数提示: “<thread_id>” 元数据: 命令: “agentuity cloud thread get” 标签: “只读 快速 需要认证”
云线程获取
获取特定线程的详细信息
前提条件
- 已通过
agentuity auth login完成身份验证
使用方法
agentuity cloud thread get <thread_id>
参数
| 参数 | 类型 | 是否必需 | 描述 |
|---|---|---|---|
<thread_id> |
字符串 | 是 | - |
示例
通过ID获取线程:
bunx @agentuity/cli cloud thread get thrd_abc123xyz
输出
返回JSON对象:
{
"id": "字符串",
"created_at": "字符串",
"updated_at": "字符串",
"deleted": "布尔值",
"deleted_at": "未知",
"deleted_by": "未知",
"org_id": "字符串",
"project_id": "字符串",
"user_data": "未知"
}
| 字段 | 类型 | 描述 |
|---|---|---|
id |
字符串 | 线程ID |
created_at |
字符串 | 创建时间戳 |
updated_at |
字符串 | 更新时间戳 |
deleted |
布尔值 | 删除状态 |
deleted_at |
未知 | 删除时间戳 |
deleted_by |
未知 | 删除者 |
org_id |
字符串 | 组织ID |
project_id |
字符串 | 项目ID |
user_data |
未知 | 用户数据(JSON格式) |