> ## Documentation Index
> Fetch the complete documentation index at: https://student-213fb9fc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# AJ STUDIOZ Cloud Infra

> Run powerful open-weight and proprietary AI models in the cloud. Fully Ollama-compatible API with OpenAI compatibility layer.

## The Cloud AI Inference Platform for Developers

Run **30+ frontier AI models** from a single API endpoint — fully compatible with Ollama and OpenAI SDKs. No GPU provisioning, no infrastructure to manage.

<CardGroup cols={2}>
  <Card title="Get your API key" icon="key" href="https://cloud.ajstudioz.com/api-keys">
    Sign up and get your API key in under 60 seconds
  </Card>

  <Card title="Browse Models" icon="microchip-ai" href="/models">
    From 3B compact models to 1T+ flagship models
  </Card>
</CardGroup>

***

## Why AJ STUDIOZ Cloud Infra?

<CardGroup cols={3}>
  <Card title="Ollama-Compatible" icon="plug">
    Drop-in replacement for your local Ollama setup. Same API, zero code changes.
  </Card>

  <Card title="OpenAI-Compatible" icon="circle-dot">
    Works with every OpenAI SDK and tool out of the box.
  </Card>

  <Card title="30+ Models" icon="cubes">
    From Gemma 3B to Kimi K2 1T — the widest model selection available.
  </Card>
</CardGroup>

***

## Make your first request

Swap your Ollama base URL to `https://api.ajstudioz.co.in` and you're done.

<CodeGroup>
  ```bash cURL theme={null}
  curl https://api.ajstudioz.co.in/api/chat \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "model": "gemma3:27b",
      "messages": [
        { "role": "user", "content": "Hello! Tell me about yourself." }
      ],
      "stream": false
    }'
  ```

  ```python Python (Ollama SDK) theme={null}
  from ollama import Client

  client = Client(
      host="https://api.ajstudioz.co.in",
      headers={"Authorization": "Bearer YOUR_API_KEY"}
  )

  response = client.chat(
      model="deepseek-v3.2",
      messages=[{"role": "user", "content": "Hello!"}]
  )
  print(response.message.content)
  ```

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

  client = OpenAI(
      base_url="https://api.ajstudioz.co.in/v1",
      api_key="YOUR_API_KEY"
  )

  response = client.chat.completions.create(
      model="kimi-k2:1t",
      messages=[{"role": "user", "content": "Hello!"}]
  )
  print(response.choices[0].message.content)
  ```

  ```javascript Node.js (OpenAI SDK) theme={null}
  import OpenAI from "openai";

  const openai = new OpenAI({
    baseURL: "https://api.ajstudioz.co.in/v1",
    apiKey: "YOUR_API_KEY",
  });

  const response = await openai.chat.completions.create({
    model: "glm-5",
    messages: [{ role: "user", content: "Hello!" }],
  });
  console.log(response.choices[0].message.content);
  ```
</CodeGroup>

<Accordion title="Example response">
  ```json theme={null}
  {
    "model": "gemma3:27b",
    "created_at": "2026-03-07T12:00:00Z",
    "message": {
      "role": "assistant",
      "content": "Hello! I'm Gemma 3, a powerful open-weight model running on AJ STUDIOZ Cloud Infra. How can I help you today?"
    },
    "done_reason": "stop",
    "done": true,
    "total_duration": 1234567890,
    "prompt_eval_count": 12,
    "eval_count": 32
  }
  ```
</Accordion>

***

## Featured Models

| Model              | Size      | Best For                         |
| ------------------ | --------- | -------------------------------- |
| `kimi-k2:1t`       | 1T params | Agentic reasoning, complex tasks |
| `deepseek-v3.2`    | 671B      | Coding, analysis                 |
| `glm-5`            | Large     | Multilingual, long context       |
| `gemma3:27b`       | 27B       | Balanced performance             |
| `qwen3-coder:480b` | 480B      | Code generation                  |
| `gemma3:4b`        | 4B        | Fast, lightweight tasks          |

<Card title="View all 30+ models →" icon="list" href="/models" />

***

## Resources

<CardGroup cols={2}>
  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    Full Ollama-compatible and OpenAI-compatible API docs
  </Card>

  <Card title="Authentication" icon="lock" href="/authentication">
    How to authenticate with API keys
  </Card>

  <Card title="Quickstart" icon="bolt" href="/quickstart">
    Get up and running in 5 minutes
  </Card>

  <Card title="Model Families" icon="diagram-project" href="/model-families">
    Understand model capabilities and use cases
  </Card>
</CardGroup>
