diff --git a/tunix/cli/config.py b/tunix/cli/config.py index 662aefaf6..3765b8730 100644 --- a/tunix/cli/config.py +++ b/tunix/cli/config.py @@ -199,7 +199,7 @@ def __init__(self, argv: list[str], **kwargs): # Handle relative paths used in example scripts as a special case. # TODO(noghabi): Remove this once the example scripts are updated. - if argv[1] == "base_config.yaml": + if argv[1] in ("base_config.yaml", "base_agentic_config.yaml"): base_config_file = pathlib.Path(__file__).parent / argv[1] else: base_config_file = argv[1]