llmage/wwwroot/api_doc.ui
yumoqing 1dc7df71ef feat: 添加大模型API文档页面供客户查阅
- api_doc.ui: MarkdownViewer渲染API文档
- api_doc.md: 从docs/API.md复制的v1接口文档
- 包含chat/completions、video/generations、image/generations、models、tasks接口说明
2026-05-31 09:02:23 +08:00

42 lines
1.0 KiB
XML

{
"widgettype": "VBox",
"options": {
"width": "100%",
"height": "100%",
"padding": "0"
},
"subwidgets": [
{
"widgettype": "HBox",
"options": {
"width": "100%",
"alignItems": "center",
"marginBottom": "16px"
},
"subwidgets": [
{
"widgettype": "Title2",
"options": {
"text": "大模型 API 文档"
}
}
]
},
{
"widgettype": "VScrollPanel",
"options": {
"css": "filler"
},
"subwidgets": [
{
"widgettype": "MarkdownViewer",
"options": {
"md_url": "{{entire_url('/llmage/api_doc.md')}}",
"width": "100%"
}
}
]
}
]
}