feat: add menu.ui with reasoning sessions, config and console menu items

This commit is contained in:
yumoqing 2026-05-05 21:56:12 +08:00
parent cb89a25b27
commit 216c21466f

31
wwwroot/menu.ui Normal file
View File

@ -0,0 +1,31 @@
{
"widgettype":"Menu",
"options":{
"target":"PopupWindow",
"popup_options":{
"archor":"cc",
"width":"70%",
"height":"70%"
},
"cwidth":10,
"items":[
{% if get_user() %}
{
"name":"reasoning_console",
"label":"推理控制台",
"url":"{{entire_url('/harnessed_reasoning/hermes_reasoning')}}"
},
{
"name":"reasoning_sessions",
"label":"推理会话",
"url":"{{entire_url('/harnessed_reasoning/sessions')}}"
},
{
"name":"reasoning_config",
"label":"推理配置",
"url":"{{entire_url('/harnessed_reasoning/config')}}"
}
{% endif %}
]
}
}