项目重构

This commit is contained in:
2025-12-28 16:59:29 +08:00
parent 6ad3e9f1f4
commit 4aa014aff0
8 changed files with 378 additions and 99 deletions
-4
View File
@@ -19,7 +19,3 @@ else:
with open(CONFIG_PATH, 'r', encoding='utf-8') as config_file:
project_config = json.load(config_file)
LLM = ChatOpenAI(model=project_config['llm_model_name'], api_key= SecretStr(project_config['llm_secret_key']),
base_url=project_config['llm_base_url'], temperature=0.01)