Spaces:
Configuration error
Configuration error
Update .gitattributes
Browse files- .gitattributes +45 -35
.gitattributes
CHANGED
|
@@ -1,35 +1,45 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
*
|
| 4 |
-
|
| 5 |
-
*
|
| 6 |
-
*
|
| 7 |
-
*
|
| 8 |
-
*
|
| 9 |
-
*
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
*.
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
*
|
| 22 |
-
|
| 23 |
-
*
|
| 24 |
-
*
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# TokenMix β One API Key, Every LLM
|
| 2 |
+
|
| 3 |
+
Access **GPT-5, Claude, Gemini, DeepSeek, Qwen** and **155+ other LLMs** through a single OpenAI-compatible API with consolidated billing.
|
| 4 |
+
|
| 5 |
+
π **Website**: [tokenmix.ai](https://tokenmix.ai)
|
| 6 |
+
π **Docs**: [tokenmix.ai/docs](https://tokenmix.ai/docs)
|
| 7 |
+
π» **GitHub**: [github.com/TokenMixAi](https://github.com/TokenMixAi)
|
| 8 |
+
π¦ **PyPI**: [pypi.org/project/tokenmix-tg-bot](https://pypi.org/project/tokenmix-tg-bot/)
|
| 9 |
+
π¦ **npm**: [npmjs.com/package/tokenmix-tg-bot](https://www.npmjs.com/package/tokenmix-tg-bot)
|
| 10 |
+
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
## What is TokenMix?
|
| 14 |
+
|
| 15 |
+
TokenMix is an **AI API aggregator** β instead of juggling 5 different provider accounts (OpenAI, Anthropic, Google, DeepSeek, Mistral...), you get **one key, one bill, one endpoint**.
|
| 16 |
+
|
| 17 |
+
Drop-in compatible with the OpenAI Python / Node SDKs β just change the `base_url` to `https://api.tokenmix.ai/v1`.
|
| 18 |
+
|
| 19 |
+
## Why developers use TokenMix
|
| 20 |
+
|
| 21 |
+
- π **One API key for 155+ models** β GPT-5, Claude Opus 4.5, Gemini 3, DeepSeek V3, Qwen, Mistral and more
|
| 22 |
+
- π³ **Unified billing** β pay-as-you-go from $0.10/M tokens
|
| 23 |
+
- π **Free $1 credit** to try every model
|
| 24 |
+
- β‘ **No rate limit juggling** β managed at our side
|
| 25 |
+
- π **OpenAI compatible** β drop-in replacement
|
| 26 |
+
|
| 27 |
+
## Open-source projects
|
| 28 |
+
|
| 29 |
+
| Project | Language | Install |
|
| 30 |
+
|---------|----------|---------|
|
| 31 |
+
| [tg-ai-bot (Python)](https://github.com/TokenMixAi/tg-ai-bot) | Python 3.9+ | `pip install tokenmix-tg-bot` |
|
| 32 |
+
| [tg-ai-bot (Node.js)](https://github.com/TokenMixAi/tg-ai-bot/tree/main/nodejs) | Node.js 18+ | `npm install -g tokenmix-tg-bot` |
|
| 33 |
+
|
| 34 |
+
Both are AI chatbots for Telegram with streaming + vision support β under 200 lines of code each.
|
| 35 |
+
|
| 36 |
+
## Get started in 60 seconds
|
| 37 |
+
|
| 38 |
+
1. Sign up at [tokenmix.ai](https://tokenmix.ai) (no credit card required)
|
| 39 |
+
2. Get your API key
|
| 40 |
+
3. Use the OpenAI SDK with `base_url=https://api.tokenmix.ai/v1`
|
| 41 |
+
|
| 42 |
+
```python
|
| 43 |
+
from openai import OpenAI
|
| 44 |
+
client = OpenAI(api_key="tm-...", base_url="https://api.tokenmix.ai/v1")
|
| 45 |
+
client.chat.completions.create(model="gpt-5", messages=[...])
|