{% extends "base.html" %} {% block title %}API密钥状态 - Gemini Balance{% endblock %} {% block head_extra_styles %} {% endblock %} {% block head_extra_scripts %} {% endblock %} {% block content %}

Gemini Balance Logo Gemini Balance

有效密钥

    {% for key, fail_count in valid_keys.items() %}
  • 有效
    {{ key[:4] + '...' + key[-4:] }}
    失败: {{ fail_count }}
  • {% endfor %}

无效密钥

    {% for key, fail_count in invalid_keys.items() %}
  • 无效
    {{ key[:4] + '...' + key[-4:] }}
    失败: {{ fail_count }}
  • {% endfor %}
总密钥数:{{ total }}
{% endblock %} {% block body_scripts %} {% endblock %}