增加LLM 后端服务API配置信息
This commit is contained in:
parent
9d4cb2f019
commit
dab041f12d
@ -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
|
||||
|
@ -246,7 +246,7 @@ justauth:
|
||||
--- #################### 大模型训练相关配置 ###################
|
||||
llm:
|
||||
backend:
|
||||
# RAG服务健康检查
|
||||
# RAG服务
|
||||
#RAG健康检查 GET
|
||||
rag_health: http://localhost:8123/health
|
||||
#上传并向量化 POST
|
||||
|
Loading…
x
Reference in New Issue
Block a user