Skip to content

Commit

Permalink
use crewai-tools
Browse files Browse the repository at this point in the history
  • Loading branch information
bboynton97 committed Nov 9, 2024
1 parent 0e90975 commit 3aad65e
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 13 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,6 @@ ex/
cookiecutter.json

examples/tests/
examples/tests/**/*
examples/tests/**/*

.DS_store
4 changes: 2 additions & 2 deletions agentstack/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ def insert_template(project_details: dict, framework_name: str, design: dict):
f" cd {project_metadata.project_slug}\n"
" poetry install\n"
" poetry run python src/main.py\n\n"
" Add agents and tasks with\n"
" agentstack generate agent/task <name>\n\n"
" Add agents and tasks with:\n"
" `agentstack generate agent/task <name>`\n\n"
" Run `agentstack quickstart` or `agentstack docs` for next steps.\n"
)

Expand Down
4 changes: 2 additions & 2 deletions agentstack/tools/code_interpreter.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "code_interpreter_tool",
"package": "poetry add 'crewai[tools]'",
"name": "code_interpreter",
"package": "poetry add crewai-tools",
"env": "",
"tools": ["code_interpreter"]
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dir_search_tool",
"package": "poetry add 'crewai[tools]'",
"package": "poetry add crewai-tools",
"env": "",
"tools": ["dir_search_tool"]
}
2 changes: 1 addition & 1 deletion agentstack/tools/file_read.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "file_read_tool",
"package": "poetry add 'crewai[tools]'",
"package": "poetry add crewai-tools",
"env": "",
"tools": ["file_read_tool"]
}
5 changes: 0 additions & 5 deletions agentstack/tools/tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@
"name": "firecrawl",
"url": "https://www.firecrawl.dev/"
}],
"sandboxing": [
{
"name":"e2b",
"url": "https://e2b.dev/"
}],
"storage": [{
"name": "mem0",
"url": "https://github.com/mem0ai/mem0"
Expand Down
2 changes: 1 addition & 1 deletion agentstack/tools/vision.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vision",
"package": "poetry add 'crewai[tools]'",
"package": "poetry add crewai-tools",
"env": "",
"tools": ["vision_tool"]
}

0 comments on commit 3aad65e

Please sign in to comment.