diff --git a/llm/cli.py b/llm/cli.py index 56522a9..82f57e0 100644 --- a/llm/cli.py +++ b/llm/cli.py @@ -2305,7 +2305,7 @@ def templates_edit(name): path = template_dir() / f"{name}.yaml" if not path.exists(): path.write_text(DEFAULT_TEMPLATE, "utf-8") - click.edit(filename=path) + click.edit(filename=str(path)) # Validate that template load_template(name)