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 script provides testing Anthropic's tool search functionality across multiple scenarios. | |
| REQUIRED: | |
| - pip install arcadepy | |
| - pip install anthropic | |
| - export ANTHROPIC_API_KEY=<your_anthropic_api_key> | |
| - export ARCADE_API_KEY=<your_arcade_api_key> | |
| """ |
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
| var oauth = require('oauth'); | |
| var consumerKey = "AAAAAAAAAAAAAAAAAA"; | |
| var consumerSecret = "BBBBBBBBBBBBBBBBBBBB"; | |
| var callbackURL = "http://127.0.0.1:8080/twitterOauthCatch"; // be sure to set me in the application's settings on dev.twitter.com | |
| var oathClient = new oauth.OAuth( | |
| "https://twitter.com/oauth/request_token", | |
| "https://twitter.com/oauth/access_token", | |
| consumerKey, | |
| consumerSecret, |