We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f45b884 commit 7c18e4eCopy full SHA for 7c18e4e
duties.py
@@ -59,3 +59,9 @@ def version(ctx, *args: str):
59
"""Bump package version."""
60
args_str = " " + " ".join(args) if args else ""
61
ctx.run(f"hatch version{args_str}")
62
+
63
64
+@duty(capture=False)
65
+def ui(ctx, *args: str):
66
+ """Launch Textual UI."""
67
+ ctx.run(r"uv run textual run --dev .\src\llmling_textual\app.py")
0 commit comments