{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}AI CSV Agent{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Gvelo Enterprise Platform

AI CSV Agent

The default mode is AI auto CSV generation. You can switch to manual editor mode if needed.

Personal backup: after adding or importing many products, regenerate this CSV and download it to your local machine. If data is missing after an app update, use Bulk Import with your last downloaded CSV to recover products.
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}

{{ category|upper }}: {{ message }}

{% endfor %} {% endif %} {% endwith %}

Current mode: {{ mode|upper }}


AI Analysis

Total Items: {{ summary.total_items }}

Total Stock Value: {{ summary.total_stock_value }}

Total Buying Value: {{ summary.total_buying_value }}

Total Expected Profit: {{ summary.total_expected_profit }}

Expected Profit per Product

{% for row in rows %} {% endfor %}
NameTypeStockSellBuyExpected Profit
{{ row.name }} {{ row.item_type }} {{ row.stock }} {{ row.selling_price }} {{ row.buying_price }} {{ row.expected_total_profit }}

Manual CSV Code Editor

Use this only when mode is manual.



CSV path: {{ csv_path }}

Recover Products with Bulk Import | Download Current CSV

Back to Admin
{% endblock %}