{% extends 'base.html' %} {% block title %}{{ title }}{% endblock %} {% block content %}

⚙️ AI Module Configuration

Configure AI modules for your organization

{% for config in configs %}
{{ config.get_module_type_display }}

{% if config.module_type == 'ACCOUNTING' %} Conversational data entry through AI-powered chat interface. {% elif config.module_type == 'ADVISOR' %} Financial analysis, insights, and advisory services. {% elif config.module_type == 'EXTRACTOR' %} Extract data from bank statements and documents. {% endif %}

Status: {% if config.is_enabled %} Enabled {% else %} Disabled {% endif %}
{% if config.usage_limit_monthly %}
Usage:
{% widthratio config.usage_count_current_month config.usage_limit_monthly 100 as usage_percent %}
{{ config.usage_count_current_month }} / {{ config.usage_limit_monthly }}
{% else %}
Usage: {{ config.usage_count_current_month }} (Unlimited)
{% endif %}
{% empty %}
No AI Modules Configured

Get started by configuring your first AI module.

Add Module
{% endfor %}
{% endblock %}