Ultra-fast AI Chat API - 10-20x faster than OpenAI
Project description
🚀 Sixfinger - Ultra-Fast AI API
~1,100 chars/sec - 10-20x faster than OpenAI/Claude!
⚡ Features
- 🚀 Ultra-fast: ~1,100 characters/second
- 🤖 9 AI Models: Llama 3.1/3.3, Qwen3, GPT-OSS, etc.
- 🇹🇷 Turkish optimized: Qwen3-32B
- 💬 Conversation context
- 📡 Streaming support
- 💰 Free tier: 200 requests/month
📦 Installation
pip install sixfinger
For async support:
Bash
pip install sixfinger[async]
🔑 Get API Key
Sign up
Verify email
Get key from Dashboard
🚀 Quick Start
Python
from sixfinger import API
client = API(api_key="sixfinger_xxx")
response = client.chat("Merhaba!")
print(response.content)
Conversation
Python
from sixfinger import API
client = API(api_key="sixfinger_xxx")
conv = client.conversation()
conv.send("Merhaba!")
conv.send("Python nedir?")
conv.send("Neden popüler?") # Remembers context!
Streaming
Python
from sixfinger import API
client = API(api_key="sixfinger_xxx")
for chunk in client.chat("Tell me a story", stream=True):
print(chunk, end='', flush=True)
Async
Python
import asyncio
from sixfinger import AsyncAPI
async def main():
async with AsyncAPI(api_key="sixfinger_xxx") as client:
response = await client.chat("Merhaba!")
print(response.content)
asyncio.run(main())
Model Selection
Python
# Auto model (recommended)
response = client.chat("Merhaba!")
# Turkish
response = client.chat("Osmanlı tarihi", model="qwen3-32b")
# Complex tasks
response = client.chat("Explain quantum physics", model="llama-70b")
# Fast
response = client.chat("Quick answer", model="llama-8b-instant")
🤖 Available Models
Model Key Size Language Plan
Llama 3.1 8B Instant llama-8b-instant 8B Multilingual FREE+
Allam 2 7B allam-2-7b 7B Turkish/Arabic FREE+
Qwen3 32B ⭐ qwen3-32b 32B Turkish STARTER+
Llama 3.3 70B llama-70b 70B Multilingual STARTER+
GPT-OSS 120B gpt-oss-120b 120B Multilingual PRO+
📊 Rate Limits
Plan Price Requests/Month Tokens/Month
FREE $0 200 20K
STARTER $79 3K 300K
PRO $199 75K 7.5M
PLUS $499 500K 50M
📚 Documentation
Full docs: https://sfapi.pythonanywhere.com
🤝 Support
Email: sixfingerdev@gmail.com
📄 License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sixfinger-1.0.0.tar.gz
(8.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sixfinger-1.0.0.tar.gz.
File metadata
- Download URL: sixfinger-1.0.0.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b999bbfed43f134a6a971ac33d96e36709c5b5ab58b1bb112ba735e21ec54dfa
|
|
| MD5 |
f40159f8c3bfb75034df325561b7997a
|
|
| BLAKE2b-256 |
9a1e668a75b90553ae82fdcf84ac6fa60dce5ad5df9e984ca472f05f315eb619
|
File details
Details for the file sixfinger-1.0.0-py3-none-any.whl.
File metadata
- Download URL: sixfinger-1.0.0-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79a183f5aeb3a1afc199f7839488b89c8008baae2bea57e22ab70b1e5558d290
|
|
| MD5 |
85f048ce3db6b6ba84dc3d0d66424728
|
|
| BLAKE2b-256 |
c2386da7bd9e02b9f7a723b917c093fc485d46a3eadc3f85645f3ec012a5c029
|