Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Serverless decentralized AI compute for deploying and scaling models
Chutes is a serverless, decentralized AI compute platform for deploying, running, and scaling open-source AI models in production. It powers trillions of tokens per month and provides access to state-of-the-art open-source LLMs, image, video, speech, and music models. Built on Bittensor, Chutes offers high-performance inference, ephemeral jobs, batch processing, and TEE/secure compute.
https://llm.chutes.ai/v1/chat/completions.Example Python code:
import os
import requests
payload = {
"model": "moonshotai/Kimi-K2.6-TEE",
"messages": [{"role": "user", "content": "Ship a concise launch checklist."}],
"stream": True,
}
response = requests.post(
"https://llm.chutes.ai/v1/chat/completions",
headers={
"Authorization": f"Bearer {os.environ['CHUTES_API_KEY']}",
"Content-Type": "application/json",
},
json=payload,
stream=True,
)
for line in response.iter_lines():
if line and line.startswith(b"data: "):
print(line.decode()[6:])Chutes offers a Plus plan at $10 per month. Additional pricing details are available on the pricing page.
What models are available on Chutes? Chutes provides a wide range of open-source models including LLMs (e.g., Kimi K2.6, GLM 5.2, Gemma 4 31B, DeepSeek, Qwen, Mistral), image generation, video, speech, and music models.
How do I get started? Sign up for an account, obtain an API key, and use the OpenAI-compatible API to start making requests.
Is Chutes decentralized? Yes, Chutes is built on Bittensor and uses decentralized, open-source infrastructure.
Can I deploy my own model? Yes, you can bring your own code and deploy any open model with just a few lines of code.
Does Chutes support secure compute? Yes, Chutes offers TEE (Trusted Execution Environment) for secure, private, and isolated compute.