|
148 | 148 | "post": { |
149 | 149 | "operationId": "createKnowledgeBase", |
150 | 150 | "summary": "Create Knowledge Base", |
151 | | - "description": "Create a knowledge base in a workspace with optional folder placement and chunking configuration. An unknown `folderPath` is a 404", |
| 151 | + "description": "Create a knowledge base in a workspace with optional folder placement and chunking configuration. An unknown `folderPath` is a 404. A workspace whose folder tree exceeds 10,000 folders is a 413, because the response needs the whole tree to render folder paths.", |
152 | 152 | "tags": ["Knowledge Bases"], |
153 | 153 | "requestBody": { |
154 | 154 | "required": true, |
|
291 | 291 | "patch": { |
292 | 292 | "operationId": "updateKnowledgeBase", |
293 | 293 | "summary": "Update Knowledge Base", |
294 | | - "description": "Update a knowledge base name, description, chunking configuration, or folder placement.", |
| 294 | + "description": "Update a knowledge base name, description, chunking configuration, or folder placement. A workspace whose folder tree exceeds 10,000 folders is a 413, because the response needs the whole tree to render folder paths.", |
295 | 295 | "tags": ["Knowledge Bases"], |
296 | 296 | "parameters": [ |
297 | 297 | { |
|
1242 | 1242 | "delete": { |
1243 | 1243 | "operationId": "deleteKnowledgeDocument", |
1244 | 1244 | "summary": "Delete Document", |
1245 | | - "description": "Delete one document and its indexed chunks from a knowledge base.", |
| 1245 | + "description": "Remove one document from a knowledge base. What that means depends on the document. A directly uploaded document is deleted outright along with its indexed chunks. A connector-backed document is instead excluded: its row survives, marked excluded and disabled so it stops being searchable and a later connector sync does not re-add it, and its embeddings are not deleted. Either way the document no longer appears in listings or search results.", |
1246 | 1246 | "tags": ["Knowledge Bases"], |
1247 | 1247 | "parameters": [ |
1248 | 1248 | { |
|
1329 | 1329 | "get": { |
1330 | 1330 | "operationId": "listKnowledgeFolders", |
1331 | 1331 | "summary": "List Folders", |
1332 | | - "description": "List folders in the knowledge-base folder tree with filtering and sorting. The bounded set is returned in one page with `nextCursor` always null; there is no second page to fetch.", |
| 1332 | + "description": "List folders in the knowledge-base folder tree with filtering and sorting. The bounded set is returned in one page with `nextCursor` always null; there is no second page to fetch. A workspace whose folder tree exceeds 10,000 folders is a 413, because the response needs the whole tree to render folder paths.", |
1333 | 1333 | "tags": ["Knowledge Bases"], |
1334 | 1334 | "parameters": [ |
1335 | 1335 | { |
|
1441 | 1441 | "post": { |
1442 | 1442 | "operationId": "createKnowledgeFolder", |
1443 | 1443 | "summary": "Create Folder", |
1444 | | - "description": "Create a folder in the knowledge-base folder tree.", |
| 1444 | + "description": "Create a folder in the knowledge-base folder tree. A workspace whose folder tree exceeds 10,000 folders is a 413, because the response needs the whole tree to render folder paths.", |
1445 | 1445 | "tags": ["Knowledge Bases"], |
1446 | 1446 | "requestBody": { |
1447 | 1447 | "required": true, |
|
1508 | 1508 | "patch": { |
1509 | 1509 | "operationId": "relocateKnowledgeFolder", |
1510 | 1510 | "summary": "Rename or Move Folder", |
1511 | | - "description": "Rename or move a folder and atomically rewrite descendant paths.", |
| 1511 | + "description": "Rename or move a folder and atomically rewrite descendant paths. A workspace whose folder tree exceeds 10,000 folders is a 413, because the response needs the whole tree to render folder paths.", |
1512 | 1512 | "tags": ["Knowledge Bases"], |
1513 | 1513 | "requestBody": { |
1514 | 1514 | "required": true, |
|
0 commit comments