llmage/json/llmcatelog.json
yumoqing 1b74b5bf10 feat: add llm catalog (type) management module
- Add CRUD API for llmcatelog (list/create/update/delete)
- Add llmcatelog.ui as main entry for catalog management
- Add llmcatelog_list.ui as DataViewer interface
- Add index.ui as module navigation page
- Update json/llmcatelog.json with editable section
2026-05-17 00:46:31 +08:00

19 lines
553 B
JSON

{
"tblname": "llmcatelog",
"alias": "llmcatelog_list",
"title": "模型类型管理",
"params": {
"sortby": ["name"],
"editable": {
"new_data_url": "{{entire_url('../api/llmcatelog_create.dspy')}}",
"update_data_url": "{{entire_url('../api/llmcatelog_update.dspy')}}",
"delete_data_url": "{{entire_url('../api/llmcatelog_delete.dspy')}}"
},
"browserfields": {
"exclouded": ["id"],
"alters": {}
},
"editexclouded": ["id"]
}
}