afsapi-client
v1.0.0
Published
Official AFSAPI client library - 98% cheaper than OpenAI. Drop-in replacement.
Maintainers
Readme
AFSAPI Client - 98% Cheaper than OpenAI
Drop-in replacement for OpenAI - same API, 98% less cost.
Installation
npm install afsapi-clientQuick Start
As OpenAI Replacement (Zero Code Changes)
// Before (expensive)
const { OpenAI } = require('openai');
const openai = new OpenAI({ apiKey: 'sk-...' });
// After (98% cheaper)
const { OpenAI } = require('afsapi-client');
const openai = new OpenAI({ apiKey: 'afs-...' });
// Same code works!
const completion = await openai.chat.completions.create({
model: 'gpt-3.5-turbo',
messages: [{ role: 'user', content: 'Hello!' }]
});Using AFSAPI Client Directly
const { AFSAPIClient } = require('afsapi-client');
const client = new AFSAPIClient({
apiKey: 'your-api-key' // Get one at https://afsapi.ai
});
// Simple chat
const response = await client.chat('What is 2+2?');
console.log(response); // "4"
// Full control
const completion = await client.createChatCompletion([
{ role: 'system', content: 'You are a helpful assistant.' },
{ role: 'user', content: 'Explain quantum computing.' }
], {
model: 'gpt-4',
temperature: 0.7,
max_tokens: 500
});Environment Variables
# Option 1: Use existing OpenAI key variable
export OPENAI_API_KEY="your-afsapi-key"
# Option 2: Use AFSAPI specific variable
export AFSAPI_KEY="your-afsapi-key"
# Option 3: Custom API endpoint
export AFSAPI_URL="https://api.afsapi.ai"Why AFSAPI?
- ✅ 98% cheaper than OpenAI
- ✅ 100% compatible - Drop-in replacement
- ✅ No rate limits - Scale freely
- ✅ Multiple providers - Automatic failover
- ✅ $99 lifetime option available
Get Your API Key
- Visit https://afsapi.ai
- Click "Get API Key"
- Choose your plan (lifetime recommended)
- Start saving immediately
Cost Comparison
| Provider | Price per 1M tokens | Your cost with AFSAPI | |----------|-------------------|---------------------| | OpenAI GPT-3.5 | $2.00 | $0.04 (98% off) | | OpenAI GPT-4 | $60.00 | $1.20 (98% off) | | Anthropic Claude | $15.00 | $0.30 (98% off) |
Support
- 📧 Email: [email protected]
- 🐛 Issues: GitHub
- 💬 Discord: Join our community
- 📚 Docs: https://docs.afsapi.ai
License
MIT - Use it anywhere, for anything.
Save thousands on AI costs. Switch to AFSAPI today.
