Quick Start
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 email and create a password
- Verify your email address
- Complete your organization profile
Step 2: Choose Your Plan
Select a plan that matches your needs:
- Spark ($149/month): 2K tokens/request, 10K/hour, 5 concurrent requests
- Seed ($599/month): 4K tokens/request, 100K/hour, 20 concurrent requests, custom fine-tuning
- Scale ($1,999/month): 8K tokens/request, unlimited/hour, 100 concurrent requests, 99.9% SLA
- Dedicated (custom): 16K tokens/request, unlimited, pod isolation
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: 2-3 minutes
Training Time: 1-3 weeks for production-ready models
Support: Email support included with all plans
Uptime SLA: 99.9% on Scale+ plans