fix: add missing --model option (#270)

Fixes an inconsistency in `arcade chat --help`.

Before:
<img width="590" alt="image"
src="https://github.com/user-attachments/assets/bf643e3c-ee12-421a-8cd3-e0d322c0972a"
/>

After:
<img width="588" alt="image"
src="https://github.com/user-attachments/assets/c0a40cdf-3429-468c-9bf1-9e3710907796"
/>
This commit is contained in:
Nate Barbettini 2025-02-27 15:45:47 -08:00 committed by GitHub
parent 7b1110f2b7
commit 7466543bde
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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."
),