{% extends 'base.html' %} {% from '_macros.html' import assistant_avatar %} {% block title %}AI 导师 - {{ get_app_name() }}{% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block content %}

AI 导师

配置专属 AI 助教,生成学生链接,扫码即用。

{% if items %}
{% for item in items %} {% set a = item.task %}
{{ assistant_avatar(a, size='md') }}
{{ a.title }}
{% if item.effective_status == 'expired' %} 已过期 {% elif item.effective_status == 'disabled' %} 已禁用 {% else %} 启用中 {% endif %}
{% if a.description %}

{{ a.description }}

{% else %}

暂无描述

{% endif %}
使用模型
{{ a.selected_model_name or '默认' }}
每日上限
{{ a.max_messages_per_student_daily or 50 }} 条
学生数
{{ item.conv_count }}
消息总数
{{ item.msg_count }}
链接有效期: {% if a.link_expires_at %} {{ a.link_expires_at.strftime('%Y-%m-%d %H:%M') }} {% else %} 未设置 {% endif %}
创建时间:{{ a.created_at.strftime('%Y-%m-%d %H:%M') }}
查看 编辑
{% endfor %}
{% else %}
还没有 AI 导师

创建第一个 AI 导师,为学生提供个性化学习辅助。

立即创建
{% endif %}
{% endblock %}