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

# Planck guides

> Practical guides for choosing models, making gateway requests, prompting effectively, and building production LLM applications.

Use these guides when you want to complete a task end to end. API reference pages document individual endpoints; guides connect model discovery, request configuration, response handling, and production concerns.

## Start with the API

<CardGroup cols={2}>
  <Card title="Call and choose models" icon="terminal" href="/guides/cookbooks/call-models">
    Authenticate, filter the model catalog, call a model, and read the response.
  </Card>

  <Card title="Build a streaming chat UI" icon="messages-square" href="/gateway/chat-ui">
    Proxy streaming responses through a Next.js or FastAPI backend without
    exposing your key.
  </Card>
</CardGroup>

## Prompting

<CardGroup cols={2}>
  <Card title="Prompt engineering" icon="wand-magic-sparkles" href="/guides/prompt-engineering/overview">
    Write clear prompts, provide useful context, and choose reliable output
    constraints.
  </Card>

  <Card title="Prompt reasoning models" icon="brain" href="/guides/cookbooks/prompt-thinking-models">
    Separate task instructions from API-level reasoning controls and choose an
    appropriate effort.
  </Card>
</CardGroup>

## Common application patterns

<CardGroup cols={2}>
  <Card title="Structured JSON" icon="brackets-curly" href="/gateway/structured-json">
    Return schema-constrained data that your application can validate.
  </Card>

  <Card title="Tool calling" icon="wrench" href="/gateway/tool-calling">
    Let a model request application-defined functions safely.
  </Card>

  <Card title="Vision and multimodal" icon="image" href="/gateway/model-capabilities">
    Find endpoints that accept images or other input modalities.
  </Card>

  <Card title="Reasoning controls" icon="sliders" href="/gateway/reasoning">
    Configure thinking effort with OpenAI-compatible or Anthropic-compatible
    requests.
  </Card>

  <Card title="Provider routing" icon="route" href="/gateway/provider-routing">
    Lock a provider, configure BYOK, or allow automatic routing and fallbacks.
  </Card>

  <Card title="Error handling" icon="triangle-exclamation" href="/gateway/concepts/error-handling">
    Handle validation, authentication, provider, and streaming failures.
  </Card>
</CardGroup>
