openevidence-cost-tuning
Cost Tuning for OpenEvidence. Trigger: "openevidence cost tuning".
claude-code
Allowed Tools
ReadWriteEditGrep
Provided by Plugin
openevidence-pack
Claude Code skill pack for OpenEvidence medical AI (24 skills)
Installation
This skill is included in the openevidence-pack plugin:
/plugin install openevidence-pack@claude-code-plugins-plus
Click to copy
Instructions
OpenEvidence Cost Tuning
Optimization Strategies
- Cache frequent API calls
- Batch requests where possible
- Use appropriate API tier
- Monitor usage dashboards
Usage Tracking
let totalCalls = 0;
async function tracked(fn: () => Promise<any>) {
totalCalls++;
console.log(`OpenEvidence API calls today: ${totalCalls}`);
return fn();
}
Resources
Next Steps
See openevidence-reference-architecture.