llmage/wwwroot/llmusage_usages_display.ui

36 lines
987 B
XML

{% set sor = db.sqlorContext() %}
{% set row = sor.execute_sql('select llmid, usages from llmusage where id = ${id}$').first() %}
{% set usages = row.usages if row and row.usages else '' %}
{% set model_id = row.llmid if row else '' %}
{
"widgettype": "VScrollPanel",
"options": {
"width": "100%",
"height": "100%"
},
"subwidgets": [
{
"widgettype": "VBox",
"options": {
"width": "100%",
"padding": "16px",
"spacing": 12
},
"subwidgets": [
{
"widgettype": "Title4",
"options": {
"text": "Model: {{ model_id }}"
}
},
{
"widgettype": "Text",
"options": {
"text": {{ usages | tojson }}
}
}
]
}
]
}