{{ agent.name }} v{{ agent.version }} {{ agent.state }}
{{ agent.purpose }}
Owner
{{ agent.owner }}
Risk threshold (HITL)
{{ agent.risk_threshold_for_hitl }}
{% if agent.category %}
Categoría
{{ agent.category }}
{% endif %}
LLM
{{ agent.llm.provider }} / {{ agent.llm.model }}
temp={{ agent.llm.temperature }} · max={{ agent.llm.max_tokens }}
Guardrails
{% for g in agent.guardrails %} {{ g }} {% endfor %}
Comportamiento
Ver system prompt expandir
{{ agent.system_prompt }}
Output schema
{{ agent.output_schema | tojson(indent=2) }}
{% if agent.input_label or agent.input_placeholder or agent.updated_at %}
Metadatos
{% if agent.input_label %}
Input label: {{ agent.input_label }}
{% endif %} {% if agent.input_placeholder %}
Placeholder: {{ agent.input_placeholder }}
{% endif %}
Última actualización: {{ agent.updated_at.strftime('%Y-%m-%d %H:%M') if agent.updated_at else '—' }}
{% endif %} {% if agent.tags %}
Tags
{% for tag in agent.tags %} {{ tag }} {% endfor %}
{% endif %}