-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from AgentOps-AI/import-crew-tools
Add Tools
- Loading branch information
Showing
12 changed files
with
54 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from crewai_tools import CodeInterpreterTool | ||
|
||
code_interpreter = CodeInterpreterTool() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from composio_crewai import ComposioToolSet, App | ||
|
||
composio_tools = ComposioToolSet().get_tools(apps=[App.CODEINTERPRETER]) | ||
|
||
# change App.CODEINTERPRETER to be the app you want to use | ||
# For more info on tool selection, see https://docs.agentstack.sh/tools/tool/composio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from crewai_tools import VisionTool | ||
|
||
vision_tool = VisionTool() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"name": "code_interpreter_tool", | ||
"package": "poetry add 'crewai[tools]'", | ||
"env": "", | ||
"tools": ["code_interpreter"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name": "composio", | ||
"package": "poetry add composio-crewai", | ||
"env": "COMPOSIO_API_KEY=...", | ||
"tools": ["composio_tools"], | ||
"tools_bundled": true, | ||
"cta": "!!! Composio provides 150+ tools. Additional setup is required in src/tools/composio_tool.py" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"name": "vision", | ||
"package": "poetry add 'crewai[tools]'", | ||
"env": "", | ||
"tools": ["vision_tool"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "agentstack" | ||
version = "0.1.6" | ||
version = "0.1.7" | ||
description = "The fastest way to build robust AI agents" | ||
authors = [ | ||
{ name="Braelyn Boynton", email="[email protected]" } | ||
|
@@ -25,9 +25,6 @@ dependencies = [ | |
[tool.setuptools.package-data] | ||
agentstack = ["templates/**/*"] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/AgentOps-AI/AgentStack" | ||
|
||
|
||
[project.scripts] | ||
agentstack = "agentstack.main:main" |