{% extends "base.html" %} {% block title %}AI API 中转站红黑榜 · 真实检测数据排行 | Veridrop{% endblock %} {% block description %}基于 {{ summary.total_reports }} 份社区公开检测数据,按贝叶斯加权排名 {{ summary.total_relays }} 家 AI API 中转站。Top 10 主榜显示长期稳定测试的高分中转站,识破假冒 Claude / GPT / Gemini 中转站。{% endblock %} {% block og_title %}AI API 中转站红黑榜 · {{ summary.total_relays }} 家中转站真实评分{% endblock %} {% block og_description %}{{ summary.total_reports }} 份社区检测数据自动聚合,按贝叶斯加权排行。免费查阅,数据真实。{% endblock %} {% block canonical %}https://veridrop.org/leaderboard{% if page > 1 %}?page={{ page }}{% endif %}{% endblock %} {% block og_url %}https://veridrop.org/leaderboard{% if page > 1 %}?page={{ page }}{% endif %}{% endblock %} {% block head_extra %} {% endblock %} {% macro relay_row(r, rank_index) %}
{% if rank_index == 1 and r.is_ranked %}🥇 {% elif rank_index == 2 and r.is_ranked %}🥈 {% elif rank_index == 3 and r.is_ranked %}🥉 {% else %}{{ rank_index }}{% endif %}

{{ r.domain }}

{{ r.total_count }} 次检测 · {{ r.protocols_label }} {% if r.last_checked %} · 最近 {{ r.last_checked.strftime('%Y-%m-%d') }} {% endif %} {% if not r.is_ranked %} · 单次样本,仅供参考 {% endif %} · 查看完整历史 →

{% for proto, ps in r.by_protocol.items() %} {% set verdict_zh = verdict_labels.get(ps.last_verdict, ps.last_verdict) %} {% set badge_class = 'ok' if ps.last_score >= 85 else ('good' if ps.last_score >= 70 else ('warn' if ps.last_score >= 50 else 'fail')) %} {{ protocol_labels.get(proto, proto) }} {{ "%.0f"|format(ps.last_score) }} {{ verdict_zh }} {% if ps.count > 1 %} ×{{ ps.count }} {% endif %} {% endfor %}
{% set top_failed = [] %} {% for ps in r.by_protocol.values() %} {% for name, cnt in ps.failed_detectors.most_common(2) %} {% set _ = top_failed.append((name, cnt)) %} {% endfor %} {% endfor %} {% if top_failed %}

常见问题: {% for name, cnt in top_failed[:3] %} {{ name }}{% if not loop.last %}、{% endif %} {% endfor %}

{% endif %}
{{ "%.0f"|format(r.overall_median) }} 中位
{% endmacro %} {% block content %}

AI API 中转站红黑榜

Veridrop 基于社区公开检测数据自动聚合,按 贝叶斯加权评分排行 AI API 中转站质量(测试越多 + 分数越稳定 → 排名越前)。 数据来自 {{ summary.total_reports }} 份公开检测报告,共覆盖 {{ summary.total_relays }} 家中转站 ({{ summary.ranked_relays }} 家有 ≥2 次检测可参与正式排名)。 数据每 10 分钟刷新 · 想给中转站做检测?回首页

{% if not top_relays and not has_rest %}

暂无检测数据。去做第一次检测 →

{% else %} {# ───── 主榜 Top 10 ───── #} {% if top_relays %}

🏆 主榜 Top {{ top_relays|length }}

按贝叶斯加权评分排序 — 测试越多次的中转站,分数越能反映真实能力

{% for r in top_relays %} {{ relay_row(r, loop.index) }} {% endfor %}
{% endif %} {# ───── 全部列表(分页)───── #} {% if has_rest %}

全部中转站

共 {{ summary.total_relays }} 家,当前第 {{ page }} / {{ total_pages }} 页

{% if rest_relays %}
{% for r in rest_relays %} {{ relay_row(r, rest_start_rank + loop.index0) }} {% endfor %}
{# Pagination controls #} {% if total_pages > 1 %} {% endif %} {% endif %} {% endif %} {% endif %}

红黑榜怎么算的?

每份 /r/{job_id} 公开报告自动汇入此榜,按 base_url 域名分组。 排名使用 贝叶斯加权评分(prior=50,prior_weight=5): 一次满分 100 的中转站排名分仅 58.3,需要测 ≥10 次稳定接近满分才能升到主榜前列。 这避免了"新中转站随机跑一次拿满分就霸榜"的问题,真正经得起多次检验的中转站排前。 UI 显示的"中位"是历次分数的中位数(给用户直观参考),排序按贝叶斯加权。

单次检测的中转站不进入主榜(避免噪声),仍然在全部列表底部可见。

{% endblock %}