1 Star 0 Fork 0

harvey / webchat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
config.py 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
harvey 提交于 2023-04-23 22:00 . first commit
# encoding:utf-8
import json
import os
config = {}
def load_config():
global config
config_path = "config.json"
if not os.path.exists(config_path):
raise Exception('配置文件不存在,请根据config-template.json模板创建config.json文件')
config_str = read_file(config_path)
# 将json字符串反序列化为dict类型
config = json.loads(config_str)
print("Load config success")
return config
def get_root():
return os.path.dirname(os.path.abspath(__file__))
def read_file(path):
with open(path, mode='r', encoding='utf-8') as f:
return f.read()
def conf():
return config
def model_conf(model_type):
return config.get('model').get(model_type)
def model_conf_val(model_type, key):
val = config.get('model').get(model_type).get(key)
if not val:
# common default config
return config.get('model').get(key)
return val
def channel_conf(channel_type):
return config.get('channel').get(channel_type)
def channel_conf_val(channel_type, key, default=None):
val = config.get('channel').get(channel_type).get(key)
if not val:
# common default config
return config.get('channel').get(key, default)
return val
def common_conf():
return config.get('common')
def common_conf_val(key, default=None):
return config.get('common').get(key, default)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/harvey0109/webchat.git
git@gitee.com:harvey0109/webchat.git
harvey0109
webchat
webchat
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891