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

{{ endpoint.name }}

{{ endpoint.base_url }} · {{ endpoint.provider_type }} · 建立於 {{ endpoint.created_at }}

探活 / 自動判定能力為背景任務,需有 worker 在運行才會被執行(ai-mcp-server 進程自帶 worker,或另開 ai-mcp worker)。入隊後到 Jobs 查看進度。

手動新增 model

適用於不提供 /v1/models 的 API。新增後可在下方對單個 model 點「自動判定能力」。

features 支援 capability=true/false 與 context_length=數字;常用別名:tts / stt / asr。

Models ({{ models|length }})

{% if models %} {% for m in models %} {% endfor %}
model_idctxcapabilities操作
{{ m.model_id }} {{ m.context_length or '-' }} ({{ m.context_length_source or '-' }}) {% for cap, cv in m.capabilities.items() %} {% if cv.value %}{{ cap }}({{ cv.source[:3] }}){% endif %} {% if not cv.value and cv.source == 'probe' %}{{ cap }}=false(pro){% endif %} {% endfor %}
{% else %}

尚未發現 model。點上面的「重新發現」或「手動新增 model」。

{% endif %} {% endblock %}