{% extends 'base.html' %} {% block title %}LLM 自动分析 - 天璇{% endblock %} {% block content %}

LLM 自动分析

LLM 将自动编排工具链完成:加载 → 检测实体 → 聚合 → 聚类 → 特征提取

{% if not llm_configured %}
⚠️ LLM 尚未配置。请先在 配置页面 设置 base_url 和 API Key。
{% endif %}

选择数据集

{% if runs %} {% for run in runs %} {% empty %} {% endfor %}
ID文件实体列状态
#{{ run.id }} {{ run.csv_glob }} {{ run.entity_column|default:"-" }} {{ run.status }}
暂无数据。先去 上传 CSV
{% endif %}
{% endblock %}