13 lines
666 B
XML
13 lines
666 B
XML
{% set rows = api_model_perf(request) %}
|
|
{% set total = [] %}{% set avg = 0 %}{% set cnt = 0 %}
|
|
{% for r in rows %}{% if r.avg_ttft_ms %}{% set avg = avg + r.avg_ttft_ms %}{% set cnt = cnt + 1 %}{% endif %}{% endfor %}
|
|
{% if cnt > 0 %}{% set avg = (avg / cnt)|round(0) %}{% endif %}
|
|
{
|
|
"widgettype": "VBox",
|
|
"options": {"css": "card", "padding": "16px", "borderRadius": "12px", "width": "100%"},
|
|
"subwidgets": [
|
|
{"widgettype": "Text", "options": {"text": "平均 TTFT", "fontSize": "12px", "color": "var(--sage-text-secondary)"}},
|
|
{"widgettype": "Title2", "options": {"text": "{{avg}}ms", "fontWeight": "700", "marginTop": "4px"}}
|
|
]
|
|
}
|