{% extends "base.html" %} {% block title %}Settings — MemForge{% endblock %} {% block content %}

Settings

{% if saved %}
✓ Configuration saved.
{% endif %} {% if errors %}
Validation errors:
{% endif %}
{% for scope_label, config_path, config_content in configs %}
{{ scope_label }} {{ config_path }}
{{ 'global' if 'global' in scope_label.lower() else 'project' }}

YAML format · Saved changes take effect immediately

{% endfor %} {% if not configs %}

No config files found. Run mem init first.

{% endif %}

Key settings reference

extractor.model — Claude model for extraction
extractor.language — Output language (en/ru/…)
scrubber.regex — default | strict | off
scrubber.detect_secrets — true | false
index.max_tokens — Index size cap (default 4000)
git.auto_commit — Commit on every write
{% endblock %}