diff --git a/yudao-server/src/main/resources/application-dev.yaml b/yudao-server/src/main/resources/application-dev.yaml index 4ef9c87cb..755091f0b 100644 --- a/yudao-server/src/main/resources/application-dev.yaml +++ b/yudao-server/src/main/resources/application-dev.yaml @@ -203,8 +203,21 @@ justauth: --- #################### 大模型训练相关配置 ################### llm: backend: - # RAG服务健康检查 + # RAG服务 + #RAG健康检查 GET rag_health: http://localhost:8123/health + #上传并向量化 POST + rag_embed: http://localhost:8123/embed + #获取所有向量id GET + rag_ids: http://localhost:8123/ids + #根据id获取文档 GET + rag_documents: http://localhost:8123/documents + #根据id删除文档 DEL + rag_documents_del: http://localhost:8123/documents + #根据file_id检索向量 POST + rag_query: http://localhost:8123/query + #支持多个文件id查询向量 GET + rag_query_multiple: http://localhost:8123/query_multiple # LLM train and service api # 训练集列表 GET diff --git a/yudao-server/src/main/resources/application-local.yaml b/yudao-server/src/main/resources/application-local.yaml index 20c3ffaa9..2b6b7b96d 100644 --- a/yudao-server/src/main/resources/application-local.yaml +++ b/yudao-server/src/main/resources/application-local.yaml @@ -246,7 +246,7 @@ justauth: --- #################### 大模型训练相关配置 ################### llm: backend: - # RAG服务健康检查 + # RAG服务 #RAG健康检查 GET rag_health: http://localhost:8123/health #上传并向量化 POST