AchiralAchiral

Docs · LLMs and developers

Reviewed2026-05-24Version3.9.0

Getting started

Provision an Achiral workspace in 2–3 minutes and make your first API call.

This page walks you from sign-up to your first working conversation with your permanent Executive Assistant in about five minutes.

What you need

  • A work email. We will send a magic link for sign-in — no password to manage.
  • A use case in mind. Onboarding is faster when you know the first workflow you want Chiro to help with.
  • Optional: a document or two (PDF, Markdown, or HTML) for your first knowledge upload.

Create your workspace

  1. Go to achiral.ai/start.
  2. Enter your work email and click the magic link we send you.
  3. Name your organization. The slug you pick becomes your-slug.achiral.ai — your dedicated subdomain.
  4. Invite teammates if you want them in from day one (optional).

Provision Chiro (2–3 minutes)

Your workspace auto-provisions on signup:

  • A dedicated Weaviate tenant for your memory and documents.
  • An assigned inference endpoint for your tier.
  • API credentials and an internal webhook token.

Status events appear in the dashboard as provisioning_startedtenant_readychiro_ready.

Make your first API call

Achiral exposes an OpenAI-compatible API. Drop-in SDKs work unchanged. Keep your key in an environment variable; do not inline secrets.

export ACHIRAL_API_KEY="..."
curl https://api.achiral.ai/v1/chat/completions \
  -H "Authorization: Bearer $ACHIRAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "chiro",
    "messages": [{"role": "user", "content": "What is in my workspace today?"}]
  }'

A successful response is an OpenAI-shaped chat.completion object with choices[0].message.content.

Limits

  • Free plan: 1-3 members, 500 monthly messages, 1 GB storage.
  • Smallest paid self-serve tier: Spark, for 4-10 members.
  • Message, storage, member, and assistant limits are defined in the application pricing config.
  • Dedicated infrastructure starts on the higher enterprise plan buckets; see Pricing.
  • Regulated-industry use requires a signed BAA; see Security & compliance.

Next steps