检索知识库列表
搜索您可访问的知识库列表,并快速过滤以找到特定的知识库。
application/json
Request Body required
filter_msg string
根据名称或正则匹配:"/正则表达式/",或知识库描述。
dataset_filter_type enum
过滤类型的枚举
page_token string
当前页的起始值。
page_size int32
此请求的页面大小。
order_by string
排序关键字,如:create_time desc。
Responses
- 200
- default
OK
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
datasets object[]
知识库列表。
dataset_id string
知识库的ID。
display_name string
知识库的显示名称。
desc string
知识库的描述。
cover_image string
知识库的封面图片。
state enum
知识库状态。
is_empty boolean
知识库是否为空。
document_count int64
知识库的知识数量。
document_size int64
知识库的知识大小。
segment_count int64
知识库的分段数量。
token_count int64
知识库的令牌数量。
embedding_model string
嵌入模型。
embedding_model_provider string
嵌入模型的提供者。
creator string
创建者。
create_time date-time
创建时间。
update_time date-time
更新时间。
acl enum[]
访问控制列表。
share_type enum
共享类型。
total_size int32
知识库的总数。
next_page_token string
用于分页的下一页令牌字段。
{
"datasets": [
{
"dataset_id": "string",
"display_name": "string",
"desc": "string",
"cover_image": "string",
"state": 0,
"is_empty": true,
"document_count": 0,
"document_size": 0,
"segment_count": 0,
"token_count": 0,
"embedding_model": "string",
"embedding_model_provider": "string",
"creator": "string",
"create_time": "2024-11-04T06:28:49.430Z",
"update_time": "2024-11-04T06:28:49.430Z",
"acl": [
0
],
"share_type": 0
}
],
"total_size": 0,
"next_page_token": "string"
}
Default error response
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
code int32
The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].
message string
A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client.
details object[]
A list of messages that carry the error details. There is a common set of message types for APIs to use.
@type string
The type of the serialized message.
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
Loading...