Skip to content

Commit

Permalink
Standardize categories for new tools.
Browse files Browse the repository at this point in the history
  • Loading branch information
tcdent committed Feb 10, 2025
1 parent 16f0fd5 commit 81e1149
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions agentstack/_tools/categories.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
{
"application-specific": {
"title": "Application Specific",
"description": "Tools that are specific to a particular application or domain."
},
"browsing": {
"title": "Browsing",
"description": "Tools that are used to browse the web."
Expand All @@ -19,6 +15,10 @@
"title": "Database",
"description": "Tools that are used to interact with databases."
},
"finance": {
"title": "Finance",
"description": "Tools that are used to interact with financial services."
},
"image-analysis": {
"title": "Image Analysis",
"description": "Tools that are used to analyze images."
Expand Down
2 changes: 1 addition & 1 deletion agentstack/_tools/payman/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "payman",
"category": "financial-infra",
"category": "finance",
"tools": [
"send_payment",
"search_available_payees",
Expand Down
2 changes: 1 addition & 1 deletion agentstack/_tools/stripe/config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "stripe",
"url": "https://github.com/stripe/agent-toolkit",
"category": "application-specific",
"category": "finance",
"env": {
"STRIPE_SECRET_KEY": null
},
Expand Down
2 changes: 1 addition & 1 deletion agentstack/_tools/weaviate/config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "weaviate",
"url": "https://github.com/weaviate/weaviate-python-client",
"category": "vector-store",
"category": "database",
"env": {
"WEAVIATE_URL": null,
"WEAVIATE_API_KEY": null,
Expand Down
2 changes: 1 addition & 1 deletion agentstack/cli/wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
get_all_tool_categories,
get_all_tool_category_names,
)
from agentstack.proj_templates import TemplateConfig
from agentstack.templates import TemplateConfig
from agentstack.cli import LOGO, init_project

Check warning on line 24 in agentstack/cli/wizard.py

View check run for this annotation

Codecov / codecov/patch

agentstack/cli/wizard.py#L24

Added line #L24 was not covered by tests


Expand Down

0 comments on commit 81e1149

Please sign in to comment.