LLM Chat
Conversational AI for any task
- Mistral 7B, Llama 2/3, and more
- Real-time streaming responses
- Multi-turn conversations
- ~0.0001 credits/token
Access powerful language models and image generators running on community hardware. Fast responses, fair pricing, no cloud provider markup.
Conversational AI for any task
Create images from text prompts
Sign up with email or GitHub in seconds.
Purchase credit packages starting at $10.
Use the web UI or call our API.
Responses stream from the nearest host.
Integrate Archipelag.io into your applications with our OpenAI-compatible API. Python and JavaScript SDKs available.
# Python SDK
from archipelag import Client
client = Client(api_key="your-key")
response = client.chat.create(
model="mistral-7b",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.content)// JavaScript SDK
import { Archipelag } from 'archipelag';
const client = new Archipelag('your-key');
const response = await client.chat.create({
model: 'mistral-7b',
messages: [
{ role: 'user', content: 'Hello!' }
]
});
console.log(response.content);No subscriptions or commitments. Credits never expire.
| Workload | Rate | Example |
|---|---|---|
| LLM Chat (7B models) | ~0.0001 credits/token | 1M tokens = 100 credits |
| Image Generation | ~0.01 credits/image | 1,000 images = 10 credits |