Multi-Provider
Supports Groq (default, free), OpenAI, and Anthropic. No vendor lock-in. Switch providers with one line of code.
The easiest way to add AI to your Node.js apps — generate, modify, validate, analyze, extract, and execute with natural language prompts
npm install billy-sdkimport billy from "billy-sdk";
const IA = billy();
const response = await IA.create(
"Generate 5 creative startup ideas in the sustainability space"
);
console.log(response);# 1. Set your API key (Groq is free → https://console.groq.com)
export GROQ_API_KEY=gsk_your_key_here
# 2. Run your first prompt
node -e "import billy from 'billy-sdk'; const IA = billy(); IA.create('Say hello!').then(console.log)"Tip: You can also use
npx billy-sdk config set <key>to save your key globally.