{% extends "portal/base.html" %} {% block title %}可用模型 - cmhub{% endblock %} {% block content %}

可用模型

API Key
{% if models %}
{% for item in models %} {% endfor %}
别名 类型 能力 原图 价格
{{ item.alias }} {% if item.operation_type == "title" %} 生成标题 {% elif item.operation_type == "image" %} 生成图片 {% else %} {{ item.operation_type }} {% endif %} {% for capability in item.capabilities %} {{ capability }} {% empty %} 无 {% endfor %} {% if item.requires_image %} 需要 {% else %} 不需要 {% endif %} {% if item.prices %}
{% for price in item.prices %} {% if price.resolution == "default" %}默认{% else %}{{ price.resolution }}{% endif %}:{{ price.points_cost }} 点 {% endfor %}
{% else %} 暂未定价 {% endif %}
{% else %}

暂无可用模型

{% endif %}
{% endblock %}