llmage/wwwroot/llm_dialog.ui
2025-09-01 11:03:32 +08:00

28 lines
691 B
XML

{% set llm = get_llm(params_kw.id) %}
{% if llm %}
{
"widgettype":"LlmIO",
"options":{
"width":"100%",
"height":"100%",
"title":"{{llm.name}}",
"list_models_url":"{{entire_url('list_mti_models.dspy')}}",
"estimate_url":"/estimate/model_estimate.dspy",
"input_fields":{{llm.input_fields}},
"input_view":{{llm.input_view}},
"models":[
{
"llmid":"{{llm.id}}",
"llmcatelogid":"{{llm.llmcatelogid}}",
"output_view":{{llm.output_view}},
"icon":"{{entire_url('/appbase/get_icon.dspy')}}?id={{llm.iconid}}",
"url":"{{entire_url('/llmage/llminference.dspy')}}",
"model":"{{llm.model}}",
"modelname":"{{llm.name}}"
}
]
}
}
{% else %}
{% endif %}