Skip to Content
API 文档Vector Store知识库对象

Vector Store 对象

单个 Vector Store 对象的描述信息

属性

  • id string
    Vector Store 的唯一 ID
  • object string
    对象类型,此处总为vector_store
  • created_at int
    Vector Store 的创建时间,类型为 Unix 时间戳,单位 s
  • name string
    知识库名称
  • type string
    知识库类型,可选项为 textimage,对应文本知识库 & 多模态知识库(图片)
  • 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", "type": "text", "file_counts": { "in_progress": 0, "completed": 0, "failed": 0, "cancelled": 0, "total": 0 } }
Last updated on