Skip to content

Instantly share code, notes, and snippets.

View evantahler's full-sized avatar
💭
Programmin'

Evan Tahler evantahler

💭
Programmin'
View GitHub Profile
@evantahler
evantahler / anthropic_tool_search_beta_evals.py
Last active December 2, 2025 02:26 — forked from EricGustin/anthropic_tool_search_beta_evals.py
Evaluating the performance of Anthropic's tool search with 4000+ Arcade tools
"""
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>
"""
@evantahler
evantahler / twitterOauthActionhero.js
Last active December 9, 2015 20:48 — forked from anonymous/twitterOauthActionhero.js
update for actionHero 6.x
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,