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

# Model Catalog

> Browse 140+ available open-source models by category, with pricing and specs.

export const RuncrateStyles = () => {
  if (typeof document !== 'undefined' && !document.getElementById('runcrate-overrides')) {
    const s = document.createElement('style');
    s.id = 'runcrate-overrides';
    s.textContent = `
      /* Match Runcrate's rounding scale (--radius: 0.75rem) */
      .rounded-sm { border-radius: 0.5rem !important; }   /* 8px */
      .rounded-md { border-radius: 0.625rem !important; } /* 10px */
      .rounded-lg { border-radius: 0.75rem !important; }  /* 12px */
      .rounded-l-sm { border-top-left-radius: 0.5rem !important; border-bottom-left-radius: 0.5rem !important; }
      .rounded-r-sm { border-top-right-radius: 0.5rem !important; border-bottom-right-radius: 0.5rem !important; }
      .rounded-l-md { border-top-left-radius: 0.625rem !important; border-bottom-left-radius: 0.625rem !important; }
      .rounded-r-md { border-top-right-radius: 0.625rem !important; border-bottom-right-radius: 0.625rem !important; }
      .rounded-l-lg { border-top-left-radius: 0.75rem !important; border-bottom-left-radius: 0.75rem !important; }
      .rounded-r-lg { border-top-right-radius: 0.75rem !important; border-bottom-right-radius: 0.75rem !important; }

      /* Cards: never pure white in light mode */
      .card { background-color: #fcfcfc !important; border-radius: 0.75rem !important; }
      html.dark .card { background-color: #141414 !important; }

      /* Docs hero box */
      .rc-hero { background-color: #fcfcfc; border: 1px solid #e0e0e0; }
      html.dark .rc-hero { background-color: #141414; border-color: #242424; }
      html.dark .rc-hero h1 { color: #f5f5f5; }

      /* Runcrate scrollbar — thin, transparent track, hide-until-hover thumb */
      ::-webkit-scrollbar { width: 6px; height: 6px; background-color: transparent; }
      ::-webkit-scrollbar-track { background-color: transparent; }
      ::-webkit-scrollbar-thumb { background-color: rgba(155, 155, 155, 0.5); border-radius: 10px; transition: opacity 0.3s ease; opacity: 0; }
      ::-webkit-scrollbar-thumb:hover { background-color: rgba(155, 155, 155, 0.7); }
      *:hover::-webkit-scrollbar-thumb,
      *:focus::-webkit-scrollbar-thumb,
      *:active::-webkit-scrollbar-thumb { opacity: 1; }
      * { scrollbar-width: thin; scrollbar-color: rgba(155, 155, 155, 0.5) transparent; }
    `;
    document.head.appendChild(s);
  }
  return null;
};

<RuncrateStyles />

Runcrate offers 140+ open-source models across 8 categories. Browse them in the dashboard at **Dashboard → Models** or use the public catalog at [runcrate.ai/models](https://runcrate.ai/models).

## Browsing the Catalog

The dashboard model catalog features:

* **Featured models** highlighted as hero cards at the top
* **Category filters** — All, Chat, Code, Image, Video, Vision, Reasoning, TTS, ASR
* **Search** with fuzzy matching across model names and descriptions
* **Pricing** displayed per model (per token, per image, per second, etc.)
* **Context length** for text models
* **Click to open** any model in the [Playground](/models/playground)

## Model Naming

Models use the format `org/model-name`. Examples:

* `deepseek-ai/DeepSeek-V3`
* `black-forest-labs/FLUX.1-schnell`
* `google/veo-3.0`
* `hexgrad/Kokoro-82M`

Use the exact model ID when making API calls.

## Categories

### Chat

General-purpose conversational models for instruction following, creative writing, analysis, and more. Includes frontier models from OpenAI, Anthropic, Google, Meta, DeepSeek, Qwen, Mistral, and others.

### Reasoning

Chain-of-thought models that show their thinking process. Ideal for math, logic, complex problem-solving, and multi-step analysis.

### Code

Specialized models for code generation, debugging, refactoring, and code analysis.

### Vision

Multimodal models that accept both text and image inputs. Use them for image understanding, visual Q\&A, document analysis, and more.

### Image

Text-to-image models including the FLUX family, Stable Diffusion, and others. Support various aspect ratios, image editing, and style control.

### Video

Text-to-video models for generating short video clips from prompts. Includes Sora, Veo, Kling, Seedance, and more.

### TTS (Text-to-Speech)

Voice synthesis models with multiple voice presets. Generate natural-sounding speech from text.

### ASR (Automatic Speech Recognition)

Audio transcription models that convert speech to text.

## Checking Pricing

Each model's pricing is shown in the catalog and on its detail page. Pricing models include:

| Type               | How It's Billed                            |
| ------------------ | ------------------------------------------ |
| **Per token**      | Input tokens + output tokens (text models) |
| **Per image**      | Flat rate per generated image              |
| **Per second**     | Duration-based (video models)              |
| **Per video**      | Flat rate per video (some video models)    |
| **Per generation** | Flat rate (TTS, ASR)                       |
