Skip to content

Quick Start

Get from zero to a running model in under 10 minutes.

1. Create a project

After signing in at app.altai.dev:

  1. Click New Project
  2. Name your project
  3. Choose a product (AfterImage, Letsearch, Training, or Agent Builder)

2. Upload your data

  • Images — drag and drop JPG/PNG files, or connect an S3 bucket
  • Documents — upload PDFs, Word docs, or plain text
  • Structured data — CSV or JSON

3. Train

Click Start Training. ALTAI handles infrastructure, hyperparameters, and optimization automatically.

Training time depends on dataset size:

  • Small (< 1k samples): ~2 minutes
  • Medium (1k–10k): ~15 minutes
  • Large (10k+): ~1 hour

4. Deploy

When training completes, click Deploy. Your model gets a REST API endpoint instantly:

bash
curl -X POST https://api.altai.dev/v1/predict \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input": "your data here"}'

5. Integrate

Use the endpoint in your app, or connect it to the Agent Builder to create automated workflows.

Your model. Not theirs.