{% extends "admin/base.html" %} {% block title %}Settings{% endblock %} {% block header_title %}Application Settings{% endblock %} {% block content %}

Branding

{% if settings.branding_logo_url and 'uploads' in settings.branding_logo_url %}
Current Logo

An uploaded logo is active.

To replace it, first remove the current one and save.

{% else %}

Max 2MB. Allowed types: PNG, JPG, GIF, SVG, WebP.

{% endif %}

Appearance

{% for theme_name, theme_colors in themes.items() %} {% endfor %}

Redis & Rate Limiting

Relative to app root or absolute path. HF models will be downloaded here.

Instance Management

Controls the range of local ports the Fortress scans to discover unmanaged Ollama instances.

IP Filtering

Comma-separated. Use * to allow all.

Comma-separated. This list is checked after the allow list.

Diagnostic Logs & Retention

Controls the automatic cleanup of application logs. Current file: lollms_hub.log

Neural Memory Recovery

Vector mode uses the Shared Routing Vectorizer defined in SB-MRA settings.

External Search & AI Tools

Required for the 'Google Search' source in Skill Architect.

Cluster Intelligence (SB-MRA)

Routing Vectorizer

Hub Orchestration

Master Guided Tours Toggle Global control for all interactive walkthroughs.
{% set tour_items = [ ('Dashboard', 'tour_dashboard', settings.tour_dashboard), ('Models Manager', 'tour_models', settings.tour_models), ('Workflows', 'tour_workflows', settings.tour_workflows), ('Data Stores', 'tour_datastores', settings.tour_datastores), ('Node Studio', 'tour_nodes', settings.tour_nodes) ] %} {% for label, name, active in tour_items %}
{{ label }}
{% endfor %}
Workflow Debug Mode When enabled, every node execution in a cognitive graph will emit a live trace to the Live Flow dashboard.

This agent is used for administrative tasks, like rewriting system prompts using the "Enhance" feature.

Gateway Protocols

Configuration Note

Enabling this starts a background manager that maintains persistent connections to messaging APIs. It allows your Virtual Agents and Workflows to be reachable via DM or group chat.

{% if not settings.enable_bot_mode %}
Currently Hidden from Sidebar
{% endif %}

If set to the same as the Proxy Port ({{ settings.PROXY_PORT }}), both APIs will share the same listener.

Comma-separated list of Ollama API paths to block for API key holders (e.g., pull, delete). This protects your backend servers from resource-intensive tasks initiated by users. This does not affect the admin UI's model management features.

HTTPS/SSL Settings

SSL Private Key

{% if settings.ssl_keyfile_content %}

An uploaded key file is currently active.

Path: {{ settings.ssl_keyfile }}

{% else %}

OR
{% endif %}

SSL Certificate

{% if settings.ssl_certfile_content %}

An uploaded certificate file is currently active.

Path: {{ settings.ssl_certfile }}

{% else %}

OR
{% endif %}
Important: Changes to SSL settings require a full server restart to take effect.

System Maintenance & Guidance

Reset Guided Tours

Clear your browser's history for all page-specific and onboarding walkthroughs.

Update Static Dependencies

Re-downloads all local JS/CSS libraries (LiteGraph, Chart.js, etc.) from secure sources.

{% endblock %}