{% if provider == "ollama" %}
{{ icon("link") }}
{% include "_settings_models.html" with context %}
{% elif provider == "claude-cli" %}
{{ icon("cpu") }}

Generation runs through your local claude CLI — no API key, uses your Claude Code login.

{% elif provider == "codex-cli" %} {% set empty_msg = "— no codex model cache found; run codex once first —" %} {% include "_settings_models.html" with context %}

Generation runs through your local codex exec CLI — no API key, uses your ChatGPT login.

{% elif provider == "claude" %}
{{ icon("key-round") }}
{{ icon("cpu") }}

Claude isn't wired into generation yet — Ollama is the only working provider.

{% elif provider == "openai" %}
{{ icon("key-round") }}
{{ icon("cpu") }}

OpenAI isn't wired into generation yet — Ollama is the only working provider.

{% endif %}