14 model AI miễn phí — không cần nạp tiền
Izzi API cung cấp 14 model AI hoàn toàn miễn phí. Bạn chỉ cần đăng ký tài khoản, lấy API key, và bắt đầu dùng ngay — không cần thẻ tín dụng, không giới hạn thời gian.
Danh sách đầy đủ 14 model miễn phí
| Model | Context Window | Điểm mạnh | Phù hợp cho |
|---|---|---|---|
| DeepSeek R1 0528 | 128K | Reasoning, Chain-of-Thought | Debug, logic, toán |
| DeepSeek V3 0324 | 128K | Coding, general purpose | Code gen, chat |
| Qwen3 235B | 128K | Multilingual, coding | VN/CN/EN tasks |
| Qwen3 30B | 128K | Fast, efficient | Quick responses |
| Llama 4 Maverick | 256K | Long context, reasoning | Doc analysis |
| Llama 3.3 70B | 128K | Balanced quality/speed | General coding |
| Llama 3.1 8B | 128K | Fastest, lightweight | Classification, simple tasks |
| Gemma 3 27B | 128K | Google's open model | General purpose |
| Gemma 3 12B | 128K | Fast, reliable | Quick tasks |
| Mistral Small 3.1 | 128K | Efficient, multilingual | European languages |
| Phi-4 Reasoning Plus | 32K | Microsoft's reasoning | Math, logic |
| Phi-4 Reasoning | 32K | Compact reasoning | Edge inference |
| Dolphin3 R1 | 128K | Uncensored, creative | Creative writing |
| Dolphin3 Llama 3.3 | 128K | Uncensored general | Unrestricted tasks |
Cấu hình model miễn phí trên OpenClaw
{
"providers": {
"izzi-free": {
"type": "openai-compatible",
"baseURL": "https://api.izziapi.com/v1",
"apiKey": "izzi-YOUR_KEY_HERE",
"models": [
"deepseek-r1-0528",
"deepseek-v3-0324",
"qwen3-235b-a22b",
"llama-4-maverick",
"llama-3.3-70b"
]
}
}
}Test model miễn phí qua curl
curl -X POST https://api.izziapi.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer izzi-YOUR_KEY_HERE" \
-d '{
"model": "deepseek-r1-0528",
"messages": [{"role": "user", "content": "Explain quicksort in Python"}],
"max_tokens": 1000
}'Chiến lược kết hợp Free + Paid
Dùng model miễn phí cho 80% tasks thông thường, chỉ dùng model paid cho tasks phức tạp:
{
"agents": {
"coder": {
"model": {
"primary": "izzi/claude-sonnet-4-20250514",
"fallback": ["izzi/deepseek-r1-0528"]
}
},
"reviewer": {
"model": {
"primary": "izzi/qwen3-235b-a22b"
}
},
"chat": {
"model": {
"primary": "izzi/llama-4-maverick"
}
}
}
}Với chiến lược này, bạn có thể giảm chi phí AI tới 80% mà vẫn giữ chất lượng output.
