lspace_list_knowledge_base_history
Track and display all knowledge base changes, including file uploads and generation events, in a human-readable format. Filter by change type and limit results for precise insights.
Instructions
📜 HISTORY: List all changes made to the knowledge base in human-friendly format. Shows both file uploads and knowledge base generations separately. Example: repositoryId='b3fcb584-5fd9-4098-83b8-8c5d773d86eb'
Input Schema
Name | Required | Description | Default |
---|---|---|---|
changeType | No | Filter by type of change: 'file_upload', 'knowledge_base_generation', or 'both' | |
limit | No | Maximum number of changes to return (default: 20) | |
repositoryId | Yes | The ID of the Lspace repository. Use 'lspace_list_repositories' first to get repository IDs. |
Input Schema (JSON Schema)
{
"properties": {
"changeType": {
"description": "Filter by type of change: 'file_upload', 'knowledge_base_generation', or 'both'",
"enum": [
"file_upload",
"knowledge_base_generation",
"both"
],
"type": "string"
},
"limit": {
"description": "Maximum number of changes to return (default: 20)",
"type": "number"
},
"repositoryId": {
"description": "The ID of the Lspace repository. Use 'lspace_list_repositories' first to get repository IDs.",
"type": "string"
}
},
"required": [
"repositoryId"
],
"type": "object"
}