{ "widgettype": "VBox", "id": "rag_search_page", "options": {"width": "100%", "padding": "24px", "spacing": "16px"}, "subwidgets": [ { "widgettype": "Text", "options": {"text": "知识库检索", "cfontsize": 24, "fontWeight": "bold"} }, { "widgettype": "Text", "options": {"text": "文本搜索,自动向量化 + 重排序,支持全库或指定知识库", "cfontsize": 13, "color": "#888"} }, { "widgettype": "Form", "id": "search_form", "options": { "submit_url": "/rag/search_result.dspy", "fields": [ {"name": "query", "label": "搜索", "uitype": "Text", "required": false, "placeholder": "输入关键词检索知识库..."}, {"name": "kb_id", "label": "kb_id", "uitype": "Text", "required": false, "hidden": true, "value": ""}, {"name": "top_k", "label": "top_k", "uitype": "Text", "required": false, "hidden": true, "value": "10"}, {"name": "recall_k", "label": "recall_k", "uitype": "Text", "required": false, "hidden": true, "value": "30"} ] }, "subwidgets": [ { "widgettype": "Text", "options": {"text": "知识库:", "cfontsize": 13, "color": "#666", "padding": "4px 0 8px 0"} }, { "widgettype": "HBox", "id": "kb_selector_row", "options": {"spacing": "8px", "width": "100%", "wrap": true}, "subwidgets": [ { "widgettype": "Text", "id": "kb_btn_all", "options": {"text": "全部知识库", "cfontsize": 12, "padding": "4px 12px", "bgcolor": "#3b82f6", "color": "#fff", "borderRadius": "4px", "css": "clickable"}, "binds": [{"wid": "self", "event": "click", "actiontype": "script", "target": "self", "script": "var f=document.querySelector('[name=kb_id]');if(f)f.value='';var btns=document.querySelectorAll('.kb-btn');for(var i=0;i