{% extends "layouts/docs_app.html" %} {% from "chirpui/button.html" import btn %} {% from "chirpui/layout.html" import container, stack as layout_stack, cluster %} {% from "chirpui/cta_band.html" import cta_band %} {% from "chirpui/surface.html" import surface %} {% from "partials/shell_nav_mega.html" import shell_mega_item %} {% block app_content %} {% let home = site_home %} {% let visual = home.visual %} {% let ideas = home | get("ideas") %} {% let explore = home | get("explore") %} {% let pipeline = home | get("pipeline") %} {% let deployments = home | get("deployments") %} {% let sources = home | get("sources") %} {% let metrics_head = home | get("metrics_head") %} {% let quick_start = home | get("quick_start") %} {% let cta = home | get("cta") %}
{% call container(max_width="72rem") %} {% call layout_stack(gap="xl", cls="chirp-theme-home__flow") %}

{{ site_name }} {{ site_tagline }}

{{ node.title }}

{{ node.description }}

{% call cluster(gap="sm", cls="chirp-theme-home__actions") %} {{ btn(home.cta_primary.label, href=home.cta_primary.href, variant="primary") }} {{ home.cta_secondary.label }} {% end %} {% if home.hero_points %}
    {% for point in home.hero_points %}
  • {{ point }}
  • {% end %}
{% end %}
{% call surface(variant="glass", cls="chirp-theme-home__hero-panel") %}

{{ visual.eyebrow }}

{{ visual.title }}

{{ visual.description }}

{{ visual.feature_title }}

{{ visual.feature_body }}

{{ visual.cta_label }} Browse the published docs
{% end %}
{% if home.metrics %}
{% if metrics_head %}
{% if metrics_head.eyebrow %}

{{ metrics_head.eyebrow }}

{% end %} {% if metrics_head.title %}

{{ metrics_head.title }}

{% end %} {% if metrics_head.subtitle %}

{{ metrics_head.subtitle }}

{% end %}
{% end %}
{% for metric in home.metrics %}
{{ metric.value }}

{{ metric.label }}

{{ metric.hint }}

{% end %}
{% end %} {% if ideas %}

{{ ideas.eyebrow }}

{{ ideas.title }}

{{ ideas.subtitle }}

{% for feature in ideas.features %} {% end %}
{% end %} {% if sources %}

{{ sources.eyebrow }}

{{ sources.title }}

{% if sources.subtitle %}

{{ sources.subtitle }}

{% end %}
{% for format in sources.formats %}

{{ format.label }}

{% if format.detail %}

{{ format.detail }}

{% end %}

{{ format.body }}

{% end %} {% if sources.note %} {% end %}
{% end %} {% if pipeline %}

{{ pipeline.eyebrow }}

{{ pipeline.title }}

{% if pipeline.subtitle %}

{{ pipeline.subtitle }}

{% end %}
{% for step in pipeline.steps %} {% set step_index = loop.index %} {{ step.label }} {% if not loop.last %} {% end %} {% end %}
{% if pipeline.modes %}
{% for mode in pipeline.modes %}

{{ mode.subtitle }}

{{ mode.title }}

{{ mode.body }}

{% end %}
{% end %}
{% end %} {% if deployments %}

{{ deployments.eyebrow }}

{{ deployments.title }}

{% if deployments.subtitle %}

{{ deployments.subtitle }}

{% end %}
{% for option in deployments.options %}

{{ option.label }}

{{ option.title }}

{{ option.body }}

{% end %} {% if deployments.future %} {% end %}
{% end %} {% if explore %} {% end %} {% if quick_start %}

{{ quick_start.eyebrow }}

{{ quick_start.title }}

{{ quick_start.commands }}
{% if quick_start.caption %}

{{ quick_start.caption }}

{% end %}
{% end %} {% if home.exports %}

Structured outputs

{{ home.exports.title }}

{% if home.exports.subtitle %}

{{ home.exports.subtitle }}

{% end %} {{ home.exports.action.label }}
{% for export in develop_exports[:4] %} {{ shell_mega_item(export.preview_href, export.label, export.description, export.icon) }} {% end %}
{% end %} {% if home.workflows %}

{{ home.workflows.eyebrow }}

{{ home.workflows.title }}

    {% for item in home.workflows.items %}
  1. {{ item.text }} {% if item.link %} {{ item.link.label }} {% end %}
  2. {% end %}
{% end %} {% if cta %} {% call surface(variant="gradient-subtle", cls="chirp-theme-home__panel chirp-theme-home__cta-panel") %} {{ cta_band(cta.title, body=cta.body, primary_label=home.cta_primary.label, primary_href=home.cta_primary.href, secondary_label=cta.secondary.label, secondary_href=cta.secondary.href, variant="accent") }} {% end %} {% end %} {% end %} {% end %}
{% end %}