111 lines
2.7 KiB
XML
111 lines
2.7 KiB
XML
{
|
|
"widgettype": "VBox",
|
|
"id": "new-session-container",
|
|
"options": {
|
|
"width": "100%",
|
|
"height": "100%",
|
|
"padding": "20px"
|
|
},
|
|
"subwidgets": [
|
|
{
|
|
"widgettype": "Text",
|
|
"options": {
|
|
"text": "Create New Session",
|
|
"fontSize": "24px",
|
|
"fontWeight": "bold",
|
|
"color": "#F8FAFC",
|
|
"marginBottom": "20px"
|
|
}
|
|
},
|
|
{
|
|
"widgettype": "Form",
|
|
"id": "new-session-form",
|
|
"options": {
|
|
"width": "100%",
|
|
"maxWidth": "600px",
|
|
"fields": [
|
|
{
|
|
"widgettype": "UiStr",
|
|
"name": "session-name",
|
|
"label": "Session Name",
|
|
"placeholder": "Enter session name...",
|
|
"width": "100%",
|
|
"marginBottom": "16px"
|
|
},
|
|
{
|
|
"widgettype": "UiCode",
|
|
"name": "model-select",
|
|
"label": "AI Model",
|
|
"placeholder": "Select model...",
|
|
"width": "100%",
|
|
"marginBottom": "16px",
|
|
"items": []
|
|
},
|
|
{
|
|
"widgettype": "UiText",
|
|
"name": "initial-prompt",
|
|
"label": "Initial Prompt (Optional)",
|
|
"placeholder": "Enter initial context or instructions...",
|
|
"width": "100%",
|
|
"height": "100px",
|
|
"marginBottom": "24px"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"widgettype": "HBox",
|
|
"options": {
|
|
"width": "100%",
|
|
"gap": "12px"
|
|
},
|
|
"subwidgets": [
|
|
{
|
|
"widgettype": "Button",
|
|
"options": {
|
|
"label": "Create Session",
|
|
"bgcolor": "#22C55E",
|
|
"color": "#FFFFFF",
|
|
"border": "none",
|
|
"borderRadius": "6px",
|
|
"padding": "10px 20px",
|
|
"fontWeight": "600"
|
|
},
|
|
"binds": [
|
|
{
|
|
"wid": "self",
|
|
"event": "click",
|
|
"actiontype": "registerfunction",
|
|
"target": "app.new-session-container",
|
|
"rfname": "create_session",
|
|
"params": {}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"widgettype": "Button",
|
|
"options": {
|
|
"label": "Cancel",
|
|
"bgcolor": "#64748B",
|
|
"color": "#FFFFFF",
|
|
"border": "none",
|
|
"borderRadius": "6px",
|
|
"padding": "10px 20px"
|
|
},
|
|
"binds": [
|
|
{
|
|
"wid": "self",
|
|
"event": "click",
|
|
"actiontype": "urlwidget",
|
|
"target": "app.main-content",
|
|
"options": {
|
|
"url": "{{entire_url('index.ui')}}"
|
|
},
|
|
"mode": "replace"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
} |