Fix linting

This commit is contained in:
yangdx
2025-04-09 12:42:48 +08:00
parent 37007244c2
commit e94f7dbe1b

View File

@@ -297,9 +297,7 @@ def parse_args() -> argparse.Namespace:
args.enable_llm_cache_for_extract = get_env_value( args.enable_llm_cache_for_extract = get_env_value(
"ENABLE_LLM_CACHE_FOR_EXTRACT", True, bool "ENABLE_LLM_CACHE_FOR_EXTRACT", True, bool
) )
args.enable_llm_cache = get_env_value( args.enable_llm_cache = get_env_value("ENABLE_LLM_CACHE", True, bool)
"ENABLE_LLM_CACHE", True, bool
)
# Inject LLM temperature configuration # Inject LLM temperature configuration
args.temperature = get_env_value("TEMPERATURE", 0.5, float) args.temperature = get_env_value("TEMPERATURE", 0.5, float)