Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tunix/cli/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
Loading