diff --git a/apps/knowledge/api/file.py b/apps/knowledge/api/file.py index 081f18e02d4..588d840a759 100644 --- a/apps/knowledge/api/file.py +++ b/apps/knowledge/api/file.py @@ -15,7 +15,17 @@ def get_request(): 'properties': { 'file': { 'type': 'string', - 'format': 'binary' # Tells Swagger it's a file + 'format': 'binary', + 'description': '要上传的文件' + + }, + "source_id": { + 'type': 'string', + 'description': '资源id 如果source_type为[TEMPORARY_30_MINUTE,TEMPORARY_120_MINUTE,TEMPORARY_1_DAY,SYSTEM] 其他的需要为对应资源的id' + }, + "source_type": { + 'type': 'string', + 'description': '资源类型[KNOWLEDGE,APPLICATION,TOOL,DOCUMENT,CHAT,SYSTEM,TEMPORARY_30_MINUTE,TEMPORARY_120_MINUTE,TEMPORARY_1_DAY]' } } }