{% extends "base.html" %} {% block title %}{{ form_title }} - Memorizz{% endblock %} {% block content %} {% if error %}
! {{ error }}
{% endif %}
{% if is_edit %}

Agent ID

{{ agent_id }}
{% endif %}

Basics

Maximum tool-calling rounds per run (default: 20).

LLM Configuration

Optional provider-specific fields like azure_endpoint, api_version, or HuggingFace settings.

Persona

Memory

Comma or newline separated memory IDs.

Sandbox

Enable code execution in a secure sandbox. Requires the corresponding API key in Settings (E2B, Daytona) or GraalPy installed locally.

Internet Access

When enabled, the agent gets `internet_search` and `open_web_page` tools. Configure API keys in Settings.

Skills Marketplace

When enabled, the agent gets the `skills_marketplace_search` tool. Configure `SKILLSMP_API_KEY` in Settings.

{% if agent_tools %}

Tools ({{ agent_tools|length }})

{% for tool in agent_tools %}
{{ tool.name }} {% if tool.description %} {{ tool.description }} {% endif %}
{% endfor %}

Tools are registered programmatically via the Python SDK. This list is read-only.

{% endif %}
Cancel
{% endblock %} {% block scripts %} {% endblock %}