You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
630 B

# Elasticsearch配置
ES_CONFIG = {
"hosts": "https://10.10.14.206:9200",
"basic_auth": ("elastic", "jv9h8uwRrRxmDi1dq6u8"),
"verify_certs": False,
"ssl_show_warn": False,
"default_index": "knowledge_base"
}
# 词向量模型路径
WORD2VEC_MODEL_PATH = r"D:\Tencent_AILab_ChineseEmbedding\Tencent_AILab_ChineseEmbedding.txt"
# DeepSeek
DEEPSEEK_API_KEY = 'sk-44ae895eeb614aa1a9c6460579e322f1'
DEEPSEEK_URL = 'https://api.deepseek.com'
# MYSQL配置信息
MYSQL_HOST = "10.10.14.210"
MYSQL_PORT = 22066
MYSQL_USER = "root"
MYSQL_PASSWORD = "DsideaL147258369"
MYSQL_DB_NAME = "base_db"