{% extends "base.html" %} {% block title %}{{ detail.full_id }} - ai-mcp ui{% endblock %} {% block content %}
endpoint={{ detail.endpoint }} · ctx={{ detail.context_length }} ({{ detail.context_length_source }}) · last_discovered={{ detail.last_discovered_at }}
| capability | value | source | probed_at |
|---|---|---|---|
| {{ cap }} | {{ cv.value }} | {{ cv.source }} | {{ cv.probed_at or '-' }} |
| 調用次數 | 成功次數 | 平均首字節(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') }} |
近 3 天暫無調用記錄。
{% endif %}{{ detail | tojson(indent=2) }}
{% endblock %}