Agent Details: {{ agent.name or agent.slug or "Unknown Agent" }}

Debug Info:

{{ agent | tojson(indent=2) }}

Basic Information

Name
{{ agent.name or "Unnamed Agent" }}
Type
{{ agent.type or "conversational" }}
Version
{{ agent.version or "1.0.0" }}
Status
{{ agent.status or "Active" }}

Configuration

Model
{{ agent.model or "-" }}
Provider
{{ agent.provider or "-" }}
Max Tokens
{{ agent.max_tokens or "-" }}
Temperature
{{ agent.temperature or "-" }}
{% if agent.description %}

Description

{{ agent.description }}

{% endif %} {% if agent.system_prompt %}

System Prompt

{{ agent.system_prompt }}
{% endif %} {% if agent.tools %}

Available Tools ({{ agent.tools | length }})

    {% for tool in agent.tools %}
  • {{ tool.name if tool is mapping else tool }}

    {% if tool is mapping and tool.description %}

    {{ tool.description }}

    {% endif %}
    {% if tool is mapping and tool.enabled is defined %} {{ "Enabled" if tool.enabled else "Disabled" }} {% endif %}
  • {% endfor %}
{% endif %} {% if agent.config %}

Additional Configuration

{{ agent.config | tojson(indent=2) }}
{% endif %}