> ## Documentation Index
> Fetch the complete documentation index at: https://docs.perceptron.inc/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Isaac 0.1 — open-weights image-based vision-language model (legacy).

<Callout type="info">
  Isaac 0.1 is supported for existing integrations. New projects should use [Isaac 0.2](/isaac-0.2) or [Perceptron Mk1](/perceptron-mk1).
</Callout>

Isaac 0.1 is the first generation of Perceptron's open-weights image-based vision-language family. Ask questions about images, detect objects, read text, get captions — through the hosted API or by self-hosting the [open weights on Hugging Face](https://huggingface.co/PerceptronAI/Isaac-0.1).

## Try Isaac 0.1 in 30 seconds

<CardGroup cols={2}>
  <Card title="Create an API key" icon="key" href="https://platform.perceptron.inc/">
    Get your key from the Perceptron platform
  </Card>

  <Card title="Join Discord" icon="discord" href="https://discord.gg/fgBeaACQzE">
    Get help and see what others are building
  </Card>
</CardGroup>

<Card icon="play" title="Get started with Image" href="https://colab.research.google.com/github/perceptron-ai-inc/perceptron/blob/main/cookbook/quickstart/quickstart_isaac_0_1/quickstart_isaac_0_1.ipynb">
  Step through this example interactively
</Card>

Or pick your preferred method:

<CodeGroup>
  ```bash curl theme={null}
  curl -X POST "https://api.perceptron.inc/v1/chat/completions" \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer $PERCEPTRON_API_KEY" \
    -d '{
    "model": "isaac-0.1",
    "messages": [
      {
        "role": "user",
        "content": [
          {"type": "image_url", "image_url": {"url": "https://raw.githubusercontent.com/perceptron-ai-inc/perceptron/main/cookbook/_shared/assets/capabilities/qna/studio_scene.webp"}},
          {"type": "text", "text": "What stands out in this scene?"}
        ]
      }
    ]
  }'
  ```

  ```python Python SDK theme={null}
  from perceptron import configure, image, question

  configure(
      provider="perceptron",
      model="isaac-0.1",
      api_key="YOUR_API_KEY",  # Get yours at platform.perceptron.inc
  )

  result = question(
      image("https://raw.githubusercontent.com/perceptron-ai-inc/perceptron/main/cookbook/_shared/assets/capabilities/qna/studio_scene.webp"),
      "What stands out in this scene?",
  )
  print(result.text)
  ```

  ```python OpenAI SDK theme={null}
  from openai import OpenAI

  client = OpenAI(
      api_key="YOUR_API_KEY",  # Get yours at platform.perceptron.inc
      base_url="https://api.perceptron.inc/v1",
  )

  response = client.chat.completions.create(
      model="isaac-0.1",
      messages=[
          {
              "role": "user",
              "content": [
                  {"type": "image_url", "image_url": {"url": "https://raw.githubusercontent.com/perceptron-ai-inc/perceptron/main/cookbook/_shared/assets/capabilities/qna/studio_scene.webp"}},
                  {"type": "text", "text": "What stands out in this scene?"}
              ],
          }
      ],
  )

  print(response.choices[0].message.content)
  ```
</CodeGroup>

<Callout type="tip">
  **Using Python?** Install with `pip install perceptron` or `pip install openai`. Isaac 0.1 does not support reasoning; the SDK silently drops `reasoning=True` and warns. To trigger grounding via raw chat completions, use `<hint>BOX</hint>` or `<hint>POINT</hint>` as a system-role message.
</Callout>

**Supported image formats:** JPEG, PNG, WebP — pass a URL or local file path.

Outputs are deterministic by default (`temperature` defaults to `0.0`). See [API Reference](/isaac-0.1/api-reference/endpoint/chat-completions) for all parameters.

## Explore Isaac 0.1 capabilities

<CardGroup cols={2}>
  <Card title="Image Q&A" icon="glasses-round" href="/isaac-0.1/capabilities/image-qa">
    Ask questions about images and get grounded answers
  </Card>

  <Card title="Object Detection" icon="camera-security" href="/isaac-0.1/capabilities/object-detection">
    Locate targets with precise bounding boxes
  </Card>

  <Card title="OCR" icon="text" href="/isaac-0.1/capabilities/ocr">
    Extract text from images and documents
  </Card>

  <Card title="Image Captioning" icon="closed-captioning" href="/isaac-0.1/capabilities/image-captioning">
    Generate descriptions of images
  </Card>

  <Card title="In-Context Learning" icon="sparkles" href="/isaac-0.1/capabilities/in-context-learning-image">
    Adapt Isaac 0.1 to image tasks with a handful of examples
  </Card>
</CardGroup>
