{% extends 'base.html' %} {% load static %} {% block content %}

KitchenAI Settings

Configure your KitchenAI instance settings

System Settings

{% for section_name, settings in env_settings.items %}

{{ section_name }}

{% for key, value in settings.items %}{{ key }}: {{ value }}
{% endfor %}
{% endfor %}
AUTH_ENABLED: {{ kitchenai_settings.settings.auth }}
JWT_SECRET: {{ kitchenai_settings.jwt_secret }}

Installed Components

Bento Models

{% if kitchenai_settings.bento %}
{% for bento in kitchenai_settings.bento %}

{{ bento.name }}

{{ bento.description }}

{% for tag in bento.tags %} {{ tag }} {% endfor %}

Namespace: {{ bento.namespace }}

Home: {{ bento.home }}

Settings:

    {% for key, value in bento.settings.items %}
  • {{ key }}: {{ value }}
  • {% endfor %}
{% endfor %}
{% else %}

No Bento models installed

{% endif %}

Plugins

{% if kitchenai_settings.plugins %}
{% for plugin in kitchenai_settings.plugins %}

{{ plugin.name }}

{{ plugin.description }}

{% for tag in plugin.tags %} {{ tag }} {% endfor %}

Namespace: {{ plugin.namespace }}

Home: {{ plugin.home }}

{% endfor %}
{% else %}

No plugins installed

{% endif %}

Apps

{% if kitchenai_settings.apps %}
    {% for app in kitchenai_settings.apps %}
  • {{ app }}
  • {% endfor %}
{% else %}

No apps installed

{% endif %}
{% endblock %}