From 4704ccc35afce977ab9933bdf96680440803da38 Mon Sep 17 00:00:00 2001 From: HelloWorldLTY <43333475+HelloWorldLTY@users.noreply.github.com> Date: Thu, 12 Feb 2026 07:59:24 -0500 Subject: [PATCH] Update __init__.py --- cellforge/Code_Generation/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cellforge/Code_Generation/__init__.py b/cellforge/Code_Generation/__init__.py index 32cee44..df26fc7 100644 --- a/cellforge/Code_Generation/__init__.py +++ b/cellforge/Code_Generation/__init__.py @@ -543,7 +543,7 @@ def _prepare_environment_variables(self) -> Dict[str, str]: env_vars["TEMPERATURE"] = os.getenv("TEMPERATURE", "0.1") env_vars["MAX_TOKENS"] = os.getenv("MAX_TOKENS", "8000") - Add OpenHands configuration path + # Add OpenHands configuration path config_path = self.openhands_path / "config.toml" if config_path.exists(): env_vars["OPENHANDS_CONFIG_PATH"] = str(config_path)