{% 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).

Continuous mode may consume a very large number of tokens. The agent will keep running tool loops until the task is complete.

LLM Configuration

Optional provider-specific fields (e.g. azure_endpoint, api_version, ollama host, HuggingFace settings, temperature).

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.

Automations

When enabled (and Oracle is connected), the agent can create durable scheduled jobs from chat.

IANA timezone name used when timezone is omitted for automations.

WhatsApp Chat

When enabled, this agent can be set as the active WhatsApp communicator. Users can then chat with this agent via WhatsApp.

This message will be sent when a user first contacts the agent via WhatsApp (feature coming soon).

Self-Awareness

When enabled, the agent can inspect files and run allowlisted commands within configured roots.

One path per line (or comma-separated). Empty uses the current working directory.

Disabled by default. Enables file creation and edits under allowed roots.

Deletes require writes and remain guarded by root and wildcard protections.

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 %}