-
Notifications
You must be signed in to change notification settings - Fork 192
Remove tools.json #65
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
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
11e3409
Merge branch 'issue-58' into issue-57
tcdent 29cecd1
Move marketing URLs and categories into individual tool json files, r…
tcdent a64054e
Move tool implementation file path to ToolConfig
tcdent f6ad899
Add tests for ToolConfig including tool json file validation. python3…
tcdent 4d0f09a
Restore functionality of `tools list` command.
tcdent bc6e07d
Add color to tool names
tcdent 76be1ce
Merge branch 'main' into issue-57
tcdent 9225580
Refactor tool json file env format #26
tcdent 33d8a4e
bugfix: framework filename did not incorporate path.
tcdent df31b5e
Fix bug in `agentstack init` on python3.9
tcdent d34f6d8
Merge branch 'main' into issue-57
bboynton97 5dc835d
merge neon into new tool format
bboynton97 ff35935
category in tool config
bboynton97 28c1a4f
fixed parsing issue and better test error message
bboynton97 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,6 +1,15 @@ | ||
| { | ||
| "name": "agent-connect", | ||
| "packages": ["agent-connect"], | ||
| "env": "HOST_DOMAIN=...\nHOST_PORT=\"80\"\nHOST_WS_PATH=\"/ws\"\nDID_DOCUMENT_PATH=...\nSSL_CERT_PATH=...\nSSL_KEY_PATH=...", | ||
| "tools": ["send_message", "receive_message"] | ||
| "name": "agent_connect", | ||
| "url": "https://github.com/chgaowei/AgentConnect", | ||
| "category": "network-protocols", | ||
| "packages": ["agent-connect"], | ||
| "env": { | ||
| "HOST_DOMAIN": "...", | ||
| "HOST_PORT": 80, | ||
| "HOST_WS_PATH": "/ws", | ||
| "DID_DOCUMENT_PATH": "...", | ||
| "SSL_CERT_PATH": "...", | ||
| "SSL_KEY_PATH": "..." | ||
| }, | ||
| "tools": ["send_message", "receive_message"] | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,7 +1,12 @@ | ||
| { | ||
| "name": "browserbase", | ||
| "url": "https://github.com/browserbase/python-sdk", | ||
| "category": "browsing", | ||
| "packages": ["browserbase", "playwright"], | ||
| "env": "BROWSERBASE_API_KEY=...\nBROWSERBASE_PROJECT_ID=...", | ||
| "env": { | ||
| "BROWSERBASE_API_KEY": "...", | ||
| "BROWSERBASE_PROJECT_ID": "..." | ||
| }, | ||
| "tools": ["browserbase"], | ||
| "cta": "Create an API key at https://www.browserbase.com/" | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,6 +1,5 @@ | ||
| { | ||
| "name": "code_interpreter", | ||
| "packages": [], | ||
| "env": "", | ||
| "category": "code-execution", | ||
| "tools": ["code_interpreter"] | ||
| } |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "dir_search_tool", | ||
| "packages": [], | ||
| "env": "", | ||
| "name": "directory_search", | ||
| "url": "https://github.com/crewAIInc/crewAI-tools/tree/main/crewai_tools/tools/directory_search_tool", | ||
| "category": "computer-control", | ||
| "tools": ["dir_search_tool"] | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,7 +1,11 @@ | ||
| { | ||
| "name": "exa", | ||
| "url": "https://exa.ai", | ||
| "category": "web-retrieval", | ||
| "packages": ["exa_py"], | ||
| "env": "EXA_API_KEY=...", | ||
| "env": { | ||
| "EXA_API_KEY": "..." | ||
| }, | ||
| "tools": ["search_and_contents"], | ||
| "cta": "Get your Exa API key at https://dashboard.exa.ai/api-keys" | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "file_read_tool", | ||
| "packages": [], | ||
| "env": "", | ||
| "name": "file_read", | ||
| "url": "https://github.com/crewAIInc/crewAI-tools/tree/main/crewai_tools/tools/file_read_tool", | ||
| "category": "computer-control", | ||
| "tools": ["file_read_tool"] | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,7 +1,11 @@ | ||
| { | ||
| "name": "firecrawl", | ||
| "url": "https://www.firecrawl.dev/", | ||
| "category": "browsing", | ||
| "packages": ["firecrawl-py"], | ||
| "env": "FIRECRAWL_API_KEY=...", | ||
| "env": { | ||
| "FIRECRAWL_API_KEY": "..." | ||
| }, | ||
| "tools": ["web_scrape", "web_crawl", "retrieve_web_crawl"], | ||
| "cta": "Create an API key at https://www.firecrawl.dev/" | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,7 +1,12 @@ | ||
| { | ||
| "name": "ftp", | ||
| "category": "computer-control", | ||
| "packages": [], | ||
| "env": "FTP_HOST=...\nFTP_USER=...\nFTP_PASSWORD=...", | ||
| "env": { | ||
| "FTP_HOST": "...", | ||
| "FTP_USER": "...", | ||
| "FTP_PASSWORD": "..." | ||
| }, | ||
| "tools": ["upload_files"], | ||
| "cta": "Be sure to add your FTP credentials to .env" | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,7 +1,11 @@ | ||
| { | ||
| "name": "mem0", | ||
| "url": "https://github.com/mem0ai/mem0", | ||
| "category": "storage", | ||
| "packages": ["mem0ai"], | ||
| "env": "MEM0_API_KEY=...", | ||
| "env": { | ||
| "MEM0_API_KEY": "..." | ||
| }, | ||
| "tools": ["write_to_memory", "read_from_memory"], | ||
| "cta": "Create your mem0 API key at https://mem0.ai/" | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,7 +1,11 @@ | ||
| { | ||
| "name": "neon", | ||
| "category": "database", | ||
| "url": "https://github.com/neondatabase/neon", | ||
| "packages": ["neon-api", "psycopg2-binary"], | ||
| "env": "NEON_API_KEY=...", | ||
| "env": { | ||
| "NEON_API_KEY": "..." | ||
| }, | ||
| "tools": ["create_database", "execute_sql_ddl", "run_sql_query"], | ||
| "cta": "Create an API key at https://www.neon.tech" | ||
| } | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| { | ||
| "name": "open_interpreter", | ||
| "url": "https://github.com/OpenInterpreter/open-interpreter", | ||
| "category": "code-execution", | ||
| "packages": ["open-interpreter"], | ||
| "env": "", | ||
| "tools": ["execute_code"] | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,6 +1,9 @@ | ||
| { | ||
| "name": "perplexity", | ||
| "packages": [], | ||
| "env": "PERPLEXITY_API_KEY=pplx-...", | ||
| "url": "https://perplexity.ai", | ||
| "category": "search", | ||
| "env": { | ||
| "PERPLEXITY_API_KEY": "..." | ||
| }, | ||
| "tools": ["query_perplexity"] | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.