{% extends "base.html" %} {% block title %}Configure - {{ plan.name }} - Agent Generator{% endblock %} {% block content %}
1
Describe
2
Plan
3
Configure
4
Generate

Configure Generation

Choose framework, artifact mode, tools, and provider for {{ plan.name }}.

Framework

{% for fw_id, fw_label in frameworks.items() %} {% endfor %}

Artifact Mode

LLM Provider

Configure connection details in Settings (gear icon). Ollama/OllaBridge enable sandbox testing with a real LLM.

Tools

{% for category, tools_list in tool_categories.items() %}
{{ category }}
{% for tool in tools_list %} {% endfor %}
{% endfor %}

File Preview

Expected output structure

{% for item in preview_tree %} {% if item.type == 'dir' %}
{{ item.name }}/
{% else %}
{{ item.name }}
{% endif %} {% endfor %}

Plan Summary

Agents {{ plan.agents | length }}
Tasks {{ plan.tasks | length }}
Tools {{ plan.tools | length }}
{% endblock %}