refactor(yudao-server): 更新 RAG 相关 API 的主机地址

- 将 rag_embed 和 embed 的主机地址从 36.103.199.248 改为127.0.0.1
- 此修改确保了所有 RAG 相关的 API 调用都指向本地服务
This commit is contained in:
sunxiqing 2025-02-21 17:35:14 +08:00
parent b046efa65b
commit 7e8f5ca3df

View File

@ -251,7 +251,7 @@ llm:
#RAG健康检查 GET
rag_health: http://127.0.0.1:8123/health
#上传并向量化 POST
rag_embed: http://36.103.199.248:8123/embed
rag_embed: http://127.0.0.1:8123/embed
#获取所有向量id GET
rag_ids: http://127.0.0.1:8123/ids
#根据id获取文档 GET
@ -263,7 +263,7 @@ llm:
#支持多个文件id查询向量 GET
rag_query_multiple: http://127.0.0.1:8123/query_multiple
# 知识库向量嵌入
embed: http://36.103.199.248:8123/embed
embed: http://127.0.0.1:8123/embed
# 知识库查询
embed_query: http://127.0.0.1:8123/query