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.
15 lines
438 B
15 lines
438 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 API KEY
|
|
DEEPSEEK_API_KEY = 'sk-44ae895eeb614aa1a9c6460579e322f1'
|