Skip to main content

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

  1. Visit achiral.ai/start
  2. Enter your email and create a password
  3. Verify your email address
  4. 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.

View detailed pricing →

Step 3: Deploy Your Chiro

  1. Navigate to your dashboard
  2. Your Chiro instance will be automatically provisioned (2-3 minutes):
    • Tenant creation in Weaviate
    • vLLM endpoint assignment
    • API credentials generation
  3. 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:

  1. Go to your dashboard
  2. Click "API Keys"
  3. Generate a new API key
  4. 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?


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