update pay ui

This commit is contained in:
2025-12-14 15:41:28 +08:00
parent 4391c112c6
commit b6b9a6b5dd

View File

@@ -19,7 +19,7 @@ app = Flask(__name__)
CORS(app) # 启用跨域支持
# ES连接配置
ES_HOST = "http://192.168.1.231:9200"
ES_HOST = "http://127.0.0.1:9200"
es = Elasticsearch(
[ES_HOST],
timeout=60,
@@ -30,7 +30,7 @@ es = Elasticsearch(
# Embedding配置
EMBEDDING_BASE_URLS = [
"http://192.168.1.231:8000/v1"
"http://127.0.0.1:8000/v1"
]
EMBEDDING_MODEL = "qwen3-embedding-8b"
EMBEDDING_DIMENSION = 4096