{% extends "base.html" %} {% block title %}Playground - Memorizz{% endblock %} {% block content %} {% if agents %}
{% for agent in agents %}
🤖
{% if agent.persona and agent.persona.name %}

{{ agent.persona.name }}

{% else %}

Agent

{% endif %} {{ agent.agent_id[:12] }}...
Mode: {{ agent.application_mode or 'assistant' }}
{% if agent.persona and agent.persona.role %}
Role: {{ agent.persona.role }}
{% endif %}
{% if agent.instruction %}

{{ agent.instruction[:150] }}{% if agent.instruction|length > 150 %}...{% endif %}

{% endif %}
{% endfor %}
{% else %}
🎮

No Agents Available

Create an agent first to use the playground.

Create Agent
{% endif %} {% endblock %}