forked from agiresearch/OpenAGI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add instructions of how to set up external tools
- Loading branch information
1 parent
2b5a4e9
commit abde8cf
Showing
2 changed files
with
27 additions
and
5 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,25 @@ | ||
# Tool Configuration | ||
## Available tools | ||
|
||
### Wolfram Alpha | ||
1. Register wolfram alpha app account and activate [APP ID](https://developer.wolframalpha.com/access) | ||
2. Setup Wolfram Alpha APP_ID | ||
```bash | ||
export WOLFRAM_ALPHA_APPID=<YOUR_APP_ID> | ||
``` | ||
|
||
### Rapid API Tool | ||
1. Register for [Rapid API](https://rapidapi.com/hub) | ||
2. Click into the tool page that you want to call and click the (`Subscribe to Test`) button to activate tools. | ||
3. Setup up Rapid API Key | ||
```bash | ||
export RAPID_API_KEY=<YOUR_RAPID_API_KEY> | ||
``` | ||
#### Current supported Rapid API tools | ||
- [Words API](https://rapidapi.com/dpventures/api/wordsapi/) | ||
- [Moon Phase](https://rapidapi.com/MoonAPIcom/api/moon-phase/) | ||
- [Trip Advisor](https://rapidapi.com/DataCrawler/api/tripadvisor16) | ||
- [Shazam](https://rapidapi.com/apidojo/api/shazam/) | ||
- [IMDB](https://rapidapi.com/rapihub-rapihub-default/api/imdb-top-100-movies/) | ||
|
||
|