get_repo_docs
Retrieve a list of all documents within a specific knowledge repository, including titles and update timestamps, using the namespace and access token for API authentication.
Instructions
获取特定知识库中的所有文档列表,包括文档标题、更新时间等信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accessToken | No | 用于认证 API 请求的令牌 | |
namespace | Yes | 知识库的命名空间,格式为 user/repo |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accessToken": {
"description": "用于认证 API 请求的令牌",
"type": "string"
},
"namespace": {
"description": "知识库的命名空间,格式为 user/repo",
"type": "string"
}
},
"required": [
"namespace"
],
"type": "object"
}