{% extends "base.html" %} {% block title %}{{ detail.full_id }} - ai-mcp ui{% endblock %} {% block content %}

{{ detail.full_id }}

endpoint={{ detail.endpoint }} · ctx={{ detail.context_length }} ({{ detail.context_length_source }}) · last_discovered={{ detail.last_discovered_at }}

Capability 來源逐項

{% for cap, cv in detail.capabilities.items() %} {% endfor %}
capabilityvaluesourceprobed_at
{{ cap }}{{ cv.value }}{{ cv.source }}{{ cv.probed_at or '-' }}

近 3 天性能(背景聚合)

{% if detail.performance and detail.performance.get('call_count') is not none %}
調用次數成功次數平均首字節(ms)平均 prompt token平均 output token窗口天數
{{ detail.performance.get('call_count') }} {{ detail.performance.get('success_count') }} {{ detail.performance.get('avg_first_byte_ms')|round(1) if detail.performance.get('avg_first_byte_ms') is not none else '-' }} {{ detail.performance.get('avg_prompt_tokens')|round(1) if detail.performance.get('avg_prompt_tokens') is not none else '-' }} {{ detail.performance.get('avg_output_tokens')|round(1) if detail.performance.get('avg_output_tokens') is not none else '-' }} {{ detail.performance.get('window_days') }}
{% else %}

近 3 天暫無調用記錄。

{% endif %}

新增 override

原始 metadata

{{ detail | tojson(indent=2) }}
{% endblock %}