Skip to content

billy-sdkSimple AI for your projects

The easiest way to add AI to your Node.js apps — generate, modify, validate, analyze, extract, and execute with natural language prompts

billy-sdk

Quick Start

bash
npm install billy-sdk
javascript
import billy from "billy-sdk";

const IA = billy();

const response = await IA.create(
  "Generate 5 creative startup ideas in the sustainability space"
);

console.log(response);

One-Minute Setup

bash
# 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.


What's Next?

Released under the MIT License.