Ver código fonte

fix: json parse error in docker #600 #601

master
zhayujie 1 ano atrás
pai
commit
e226c93eeb
2 arquivos alterados com 2 adições e 2 exclusões
  1. +1
    -1
      config.py
  2. +1
    -1
      docker/entrypoint.sh

+ 1
- 1
config.py Ver arquivo

@@ -98,7 +98,7 @@ def load_config():
config_path = "./config-template.json"

config_str = read_file(config_path)
logger.info("[INIT] config str: {}".format(config_str))
logger.debug("[INIT] config str: {}".format(config_str))

# 将json字符串反序列化为dict类型
config = Config(json.loads(config_str))


+ 1
- 1
docker/entrypoint.sh Ver arquivo

@@ -84,7 +84,7 @@ if [ "$CHARACTER_DESC" != "" ] ; then
fi

if [ "$EXPIRES_IN_SECONDS" != "" ] ; then
sed -i "s/\"expires_in_seconds\".*$/\"expires_in_seconds\": $EXPIRES_IN_SECONDS/" $CHATGPT_ON_WECHAT_CONFIG_PATH
sed -i "s/\"expires_in_seconds\".*$/\"expires_in_seconds\": $EXPIRES_IN_SECONDS,/" $CHATGPT_ON_WECHAT_CONFIG_PATH
fi

# go to prefix dir


Carregando…
Cancelar
Salvar