Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Polish #64

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down
9 changes: 6 additions & 3 deletions surfkit/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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."
),
Expand Down
Loading