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)