Docs · LLMs and developers
Reviewed2026-06-03Version3.9.0Quick start
Account creation, plan selection, provisioning, API credentials, and first API call.
Get your Chiro AI instance provisioned in minutes and production-ready in weeks.
Prerequisites
- An Achiral account (sign up at achiral.ai/start)
- Basic understanding of APIs (REST or similar)
- Your business use case defined
Step 1: Create Your Account
- Visit achiral.ai/start
- Enter your work email address
- Click the magic link we send to your inbox
- Complete your organization profile — name your workspace and invite teammates
Step 2: Choose Your Plan
Select a plan that matches your needs:
- Free: 1-3 members, 500 monthly messages, 1 GB storage
- Spark: 4-10 members, 10,000 monthly messages, 10 GB storage
- Seed: 11-25 members, 50,000 monthly messages, 50 GB storage
- Rise / Boost / Scale / Grow: larger self-serve seat buckets
- Expand and above: contact-sales tiers for larger organizations
Each plan includes one Chiro instance per organization with logical tenant isolation.
Step 3: Deploy Your Chiro
- Navigate to your dashboard
- Your Chiro instance will be automatically provisioned (2-3 minutes):
- Tenant creation in Weaviate
- vLLM endpoint assignment
- API credentials generation
- Instance ready immediately with pre-trained foundational model
Your Chiro tenant will be provisioned within 2-3 minutes. Optional training on your business data takes 1-3 weeks.
You'll receive status updates at each stage:
- Tenant provisioning started
- Instance ready for use
- (Optional) Custom training completed
Step 4: Get Your API Credentials
Once your Chiro instance is deployed:
- Go to your dashboard
- Click "API Keys"
- Generate a new API key
- Save it securely - you won't be able to see it again
Step 5: Make Your First API Call
curl https://api.achiral.ai/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "chiro",
"messages": [
{"role": "user", "content": "Hello, Chiro!"}
]
}'
Example Response
{
"id": "chatcmpl-123",
"object": "chat.completion",
"model": "chiro",
"choices": [
{
"message": {
"role": "assistant",
"content": "Hello! I'm Chiro, your private AI assistant. How can I help you today?"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 10,
"completion_tokens": 15,
"total_tokens": 25
}
}
Next Steps
- Configure Chiro for your use case (guide coming soon)
- Train Chiro with your business data (guide coming soon)
- Integrate Chiro into your applications (guide coming soon)
Need Help?
- Check our FAQ
- Contact support: support@achiral.ai
- Provisioning Time: usually 2-3 minutes
- Training Time: depends on data volume and scope
- Support: varies by plan
- Uptime SLA: available on SLA-enabled plans