{ "openapi": "3.0.1", "info": { "title": "默认模块", "description": "", "version": "1.0.0" }, "tags": [], "paths": { "/api/v1/ai/kb/document/{docId}/chunks": { "get": { "summary": "获取文档分片列表", "deprecated": false, "description": "获取文档分片列表\n获取文档分片列表\n获取指定文档的所有分片信息", "tags": [], "parameters": [ { "name": "docId", "in": "path", "description": "文档UUID", "required": true, "schema": { "type": "string" } }, { "name": "Authorization", "in": "header", "description": "", "example": "Bearer b35c6f5b-bc0b-4652-bef2-eca04a5cdd95", "schema": { "type": "string", "default": "Bearer b35c6f5b-bc0b-4652-bef2-eca04a5cdd95" } } ], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/BaseResponseListDocumentChunkVO", "description": "分片列表" } } } } }, "security": [] } }, "/api/v1/ai/kb/chunk/{chunkId}": { "get": { "summary": "获取分片详情", "deprecated": false, "description": "获取分片详情\n获取分片详情\n获取指定分片的详细信息", "tags": [], "parameters": [ { "name": "chunkId", "in": "path", "description": "分片ID", "required": true, "schema": { "type": "string" } }, { "name": "Authorization", "in": "header", "description": "", "example": "Bearer b35c6f5b-bc0b-4652-bef2-eca04a5cdd95", "schema": { "type": "string", "default": "Bearer b35c6f5b-bc0b-4652-bef2-eca04a5cdd95" } } ], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/BaseResponseDocumentChunkVO", "description": "分片详情" } } } } }, "security": [] } } }, "components": { "schemas": { "DocumentChunkVO": { "type": "object", "properties": { "id": { "type": "string", "description": "分片ID" }, "docId": { "type": "string", "description": "原始文档ID" }, "content": { "type": "string", "description": "分片内容" }, "chunkIndex": { "type": "integer", "description": "分片序号" }, "chunkTotal": { "type": "integer", "description": "总分片数" }, "title": { "type": "string", "description": "文档标题" }, "docType": { "type": "string", "description": "文档类型" }, "sourceType": { "type": "string", "description": "来源类型" }, "status": { "type": "string", "description": "状态" } } }, "BaseResponseListDocumentChunkVO": { "type": "object", "properties": { "code": { "type": "integer", "description": "" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/DocumentChunkVO", "description": "文档分片VO" }, "description": "" }, "message": { "type": "string", "description": "" } } }, "BaseResponseDocumentChunkVO": { "type": "object", "properties": { "code": { "type": "integer", "description": "" }, "data": { "$ref": "#/components/schemas/DocumentChunkVO", "description": "" }, "message": { "type": "string", "description": "" } } } }, "responses": {}, "securitySchemes": {} }, "servers": [], "security": [] }