Vector Store 对象
单个 Vector Store 对象的描述信息
属性
id
string
Vector Store 的唯一 IDobject
string
对象类型,此处总为vector_store
created_at
int
Vector Store 的创建时间,类型为 Unix 时间戳,单位 sname
string
知识库名称file_counts
object
知识库的各项统计信息in_progress
int
仍在处理中的文件数量completed
int
已处理完成的文件数量failed
int
处理失败的文件数量cancelled
int
已取消的文件数量total
int
总文件数量
示例
{
"id": "167907758199320576",
"object": "vector_store",
"created_at": 1731485617,
"name": "food_calorie2",
"file_counts": {
"in_progress": 0,
"completed": 0,
"failed": 0,
"cancelled": 0,
"total": 0
}
}