Skip to content

Commit 3aad65e

Browse files
committed
use crewai-tools
1 parent 0e90975 commit 3aad65e

File tree

8 files changed

+10
-13
lines changed

8 files changed

+10
-13
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,4 +169,6 @@ ex/
169169
cookiecutter.json
170170

171171
examples/tests/
172-
examples/tests/**/*
172+
examples/tests/**/*
173+
174+
.DS_store

agentstack/cli/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,8 @@ def insert_template(project_details: dict, framework_name: str, design: dict):
312312
f" cd {project_metadata.project_slug}\n"
313313
" poetry install\n"
314314
" poetry run python src/main.py\n\n"
315-
" Add agents and tasks with\n"
316-
" agentstack generate agent/task <name>\n\n"
315+
" Add agents and tasks with:\n"
316+
" `agentstack generate agent/task <name>`\n\n"
317317
" Run `agentstack quickstart` or `agentstack docs` for next steps.\n"
318318
)
319319

File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "code_interpreter_tool",
3-
"package": "poetry add 'crewai[tools]'",
2+
"name": "code_interpreter",
3+
"package": "poetry add crewai-tools",
44
"env": "",
55
"tools": ["code_interpreter"]
66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dir_search_tool",
3-
"package": "poetry add 'crewai[tools]'",
3+
"package": "poetry add crewai-tools",
44
"env": "",
55
"tools": ["dir_search_tool"]
66
}

agentstack/tools/file_read.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "file_read_tool",
3-
"package": "poetry add 'crewai[tools]'",
3+
"package": "poetry add crewai-tools",
44
"env": "",
55
"tools": ["file_read_tool"]
66
}

agentstack/tools/tools.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@
66
"name": "firecrawl",
77
"url": "https://www.firecrawl.dev/"
88
}],
9-
"sandboxing": [
10-
{
11-
"name":"e2b",
12-
"url": "https://e2b.dev/"
13-
}],
149
"storage": [{
1510
"name": "mem0",
1611
"url": "https://github.com/mem0ai/mem0"

agentstack/tools/vision.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vision",
3-
"package": "poetry add 'crewai[tools]'",
3+
"package": "poetry add crewai-tools",
44
"env": "",
55
"tools": ["vision_tool"]
66
}

0 commit comments

Comments
 (0)