afsapi-client
Version:
Official AFSAPI client library - 98% cheaper than OpenAI. Drop-in replacement.
108 lines (77 loc) • 2.69 kB
Markdown
# AFSAPI Client - 98% Cheaper than OpenAI
[](https://www.npmjs.com/package/afsapi-client)
[](https://opensource.org/licenses/MIT)
Drop-in replacement for OpenAI - same API, 98% less cost.
## Installation
```bash
npm install afsapi-client
```
## Quick Start
### As OpenAI Replacement (Zero Code Changes)
```javascript
// 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
```javascript
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
```bash
# 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
1. Visit [https://afsapi.ai](https://afsapi.ai)
2. Click "Get API Key"
3. Choose your plan (lifetime recommended)
4. 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: support@afsapi.ai
- 🐛 Issues: [GitHub](https://github.com/afsapi/client-js/issues)
- 💬 Discord: [Join our community](https://discord.gg/afsapi)
- 📚 Docs: [https://docs.afsapi.ai](https://docs.afsapi.ai)
## License
MIT - Use it anywhere, for anything.
---
**Save thousands on AI costs. Switch to AFSAPI today.**