Dashboard
Real-time cache performance and savings
Total Requests
—
Cache Hits
—
Total Saved
—
Fee Owed
—
Cache Hit Rate
Percentage of requests served from cache
Recent Requests
Last 20 requests
↻
Enter your API key and click Load
Quick Setup
Replace your AI client's baseURL with the CachePilot endpoint. No other code changes needed.
python: OpenAI
# Before
client = OpenAI(api_key="sk-...")
# After
client = OpenAI(
base_url="https://cachepilot.koaw.workers.dev/v1",
api_key="sk-cache-xxx-yyy"
)
client = OpenAI(api_key="sk-...")
# After
client = OpenAI(
base_url="https://cachepilot.koaw.workers.dev/v1",
api_key="sk-cache-xxx-yyy"
)
node: OpenAI
new OpenAI({
baseURL: "...",
apiKey: "sk-cache-..."
})
baseURL: "...",
apiKey: "sk-cache-..."
})
node: Anthropic
new Anthropic({
baseURL: "...",
apiKey: "sk-cache-..."
})
baseURL: "...",
apiKey: "sk-cache-..."
})
Pass your provider key via x-provider-key header. All provider API keys stay with you.