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

# What is RunInfra?

> RunInfra turns plain English into production AI inference endpoints. Describe your use case and the AI agent builds, optimizes, and deploys it for you.

RunInfra is an AI-powered platform that lets you describe the endpoint you need in plain English and handles everything else: model selection, GPU benchmarking, optimization, deployment, and scaling. Whether you're building a low-latency chatbot, a batch summarization API, or a multi-model reasoning pipeline, you go from idea to live endpoint without writing infrastructure code.

**No YAML. No DevOps. No GPU configuration. Just chat.**

## What you can build

RunInfra can build large language model, speech-to-text, text-to-speech, embedding, vision-language, and image-generation pipelines when the selected model and runtime support the route. Six pre-built use cases ship as starting points you can fork in chat.

<Columns cols={3}>
  <Card title="Voice agents" icon="mic" href="/use-cases/voice-agent">
    Streaming STT, LLM, and TTS fused on one GPU at sub-600ms turn-taking.
  </Card>

  <Card title="AI assistants" icon="sparkles" href="/use-cases/ai-assistant">
    Llama, Hermes, Qwen with tool use, streaming, and structured output.
  </Card>

  <Card title="Embeddings + rerank" icon="search" href="/use-cases/embeddings">
    BGE encoders + cross-encoder reranker fused on one GPU in one round-trip.
  </Card>

  <Card title="RAG search" icon="library" href="/use-cases/rag-search">
    Hybrid retrieval, grounded generation, citation spans you can audit.
  </Card>

  <Card title="Document AI" icon="file-text" href="/use-cases/document-ai">
    Qwen2.5-VL and Llama 3.2 Vision parsing PDFs and forms to JSON.
  </Card>

  <Card title="Transcription" icon="audio-lines" href="/use-cases/transcription">
    Open Whisper with diarization and PII redaction.
  </Card>
</Columns>

### Example prompts

Copy any of these into the [dashboard](https://runinfra.ai/~) chat to see how it works.

<CodeGroup>
  ```text Chatbot theme={"dark"}
  Deploy Llama 3.1 8B as a low-latency customer support chatbot.
  Optimize for latency, keep P99 under 200ms.
  ```

  ```text Routing theme={"dark"}
  Build a multi-model pipeline: Phi-3 Mini for simple queries,
  Llama 70B for complex reasoning. Budget is $300/month.
  ```

  ```text Summarizer theme={"dark"}
  Optimize Qwen 2.5 14B for throughput and deploy as a batch
  summarization API. Max $0.003 per request.
  ```

  ```text Code theme={"dark"}
  I need a code generation endpoint using DeepSeek V3.
  Keep cost under $0.005 per request.
  ```
</CodeGroup>

The agent handles model selection, GPU benchmarking, optimized variant search, kernel optimization, deployment, and autoscaling.

## How it works

A four-stage workflow from description to live endpoint.

```mermaid theme={"dark"}
flowchart LR
    User[You]
    Agent[RunInfra agent]
    Optimizer[Optimizer]
    Cloud[RunInfra Cloud]
    Endpoint[OpenAI-compatible endpoint]
    App[Your app]

    User -- plain English --> Agent
    Agent -- builds pipeline --> Optimizer
    Optimizer -- GPU profiling + variant search + Forge kernels --> Cloud
    Cloud -- deploy --> Endpoint
    App -- OpenAI SDK --> Endpoint
```

<Steps>
  <Step title="Describe" icon="message-square">
    Tell RunInfra what you need in plain English. The agent asks clarifying questions when needed, then builds your pipeline automatically.
  </Step>

  <Step title="Optimize" icon="zap">
    Real GPU profiling across L4 to B200, Hugging Face variant search (AWQ, GPTQ, FP8), and Forge kernel tuning. Results stream in real time.
  </Step>

  <Step title="Deploy" icon="cloud">
    One click ships an OpenAI-compatible endpoint. Flex (scale-to-zero) or Active (always-on). Cold starts under 2 seconds.
  </Step>

  <Step title="Integrate" icon="code">
    OpenAI Python and JavaScript SDKs, curl, and documented framework integrations use your RunInfra base URL and deployed model ID.
  </Step>
</Steps>

## Why RunInfra

Closed-source APIs charge per token with no control over latency, throughput, or cost. With RunInfra you own the model and the infrastructure. RunInfra optimizes GPU kernels so your open-source models run as fast as, or faster than, proprietary APIs at a fraction of the cost.

## Get started

<Columns cols={2}>
  <Card title="Quickstart" icon="rocket" href="/introduction/quickstart">
    Your first pipeline in 5 minutes.
  </Card>

  <Card title="Use cases" icon="layers" href="/use-cases/overview">
    Pre-built workflows you can fork in chat.
  </Card>

  <Card title="Which model?" icon="compass" href="/introduction/model-picker">
    Decision table by use case and priority.
  </Card>

  <Card title="Deployments" icon="server" href="/deployments/overview">
    Flex vs Active, deployment targets, scaling.
  </Card>
</Columns>
