From 552ec9498a9c85e41f97dc3618b518e6ac3710e1 Mon Sep 17 00:00:00 2001 From: Patrick Barker Date: Tue, 11 Jun 2024 15:54:17 -0600 Subject: [PATCH] looks --- pyproject.toml | 2 +- surfkit/cli/main.py | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 43b2a97..413a446 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "surfkit" -version = "0.1.211" +version = "0.1.212" description = "A toolkit for building AI agents that use devices" authors = ["Patrick Barker "] license = "MIT" diff --git a/surfkit/cli/main.py b/surfkit/cli/main.py index df5fea5..2753c24 100644 --- a/surfkit/cli/main.py +++ b/surfkit/cli/main.py @@ -842,6 +842,11 @@ def list_types(): print("") +@app.command("find") +def find(): + list_types() + + @list_group.command("tasks") def list_tasks( remote: Optional[str] = typer.Option( @@ -1394,9 +1399,7 @@ def build( @app.command(help="Use an agent to solve a task") def solve( - description: str = typer.Option( - ..., "--description", "-d", help="Description of the task." - ), + description: str = typer.Argument(..., help="Description of the task."), agent: Optional[str] = typer.Option( None, "--agent", "-a", help="Name of the agent to use." ),