{% extends "base.html" %} {% block title %}Pacnew Review - garuda-pilot{% endblock %} {% block head_extra %} {% endblock %} {% block content %} {% if not has_claude and not has_ollama %}
AI explanations available — add one or both providers to ~/.config/garuda-pilot/config.toml:
claude_api_key = "sk-ant-..."   # Claude API key
ollama_url = "http://localhost:11434"  # Ollama (default, auto-detected)
ollama_model = "llama3.2"             # Ollama model
{% endif %} {% if not files %}
OK

No pacnew files found

Nothing to review.

{% else %}
You can try to resolve all manually with: sudo pacdiff copy
{% for f in files %}
{{ f.guidance }} {{ f.current_path }}
▶ Show diff
{{ f.guidance_text }}
{% endfor %} {% endif %} {% endblock %}