From 7466543bdee38cc779a0a04475a977566c5fe527 Mon Sep 17 00:00:00 2001 From: Nate Barbettini Date: Thu, 27 Feb 2025 15:45:47 -0800 Subject: [PATCH] fix: add missing --model option (#270) Fixes an inconsistency in `arcade chat --help`. Before: image After: image --- arcade/arcade/cli/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arcade/arcade/cli/main.py b/arcade/arcade/cli/main.py index 3c898c2c..bb7c614d 100644 --- a/arcade/arcade/cli/main.py +++ b/arcade/arcade/cli/main.py @@ -184,7 +184,7 @@ def show( @cli.command(help="Start Arcade Chat in the terminal", rich_help_panel="Launch") def chat( - model: str = typer.Option("gpt-4o", "-m", help="The model to use for prediction."), + model: str = typer.Option("gpt-4o", "-m", "--model", help="The model to use for prediction."), stream: bool = typer.Option( False, "-s", "--stream", is_flag=True, help="Stream the tool output." ),