list_docs用于查看某个知识库下的所有文档信息,默认按照文档的上传时间从晚到早排序。
参数 | 类型 | 是否必选 | 默认值 | 参数说明 |
---|---|---|---|---|
project | string | 否 | default | 知识库所属项目 |
offset | int | 否 | 0 | 查询起始位置 |
limit | int | 否 | -1 | 查询文档数 |
doc_type | list | 否 | -- | 文档类型筛选 |
请先完成SDK初始化,再运行代码,详见初始化SDK
my_collection = viking_knowledgebase_service.get_collection("example") docs = my_collection.list_docs()
Python 调用执行上面的任务,返回Doc实例列表。Doc实例包含的属性如下表所示。
属性 | 类型 | 说明 |
---|---|---|
collection_name | string | 索引所属的collection名 |
doc_name | string | 文档名字 |
doc_id | string | 文档id |
doc_type | string | 文档类型 |
create_time | string | 创建时间 |
added_by | string | 文档添加人 |
update_time | string | 文档更新时间 |
url | string | 文档上传url路径 |
tos_path | string | 文档上传tos路径 |
point_num | int | 文档下知识点数量 |
status | string | 文档状态 |
title | string | 文档标题 |
source | string | 文档上传来源 |
fields | list | 字段列表 |