feat: add instance view

This commit is contained in:
jialin
2026-03-26 18:20:55 +08:00
committed by jialin
parent 33fe180997
commit adde7fba37
31 changed files with 1171 additions and 702 deletions
+1
View File
@@ -17,6 +17,7 @@ export default {
'menu.models.benchmarkDetail': 'Benchmark Details',
'menu.modelCatalog': 'カタログ',
'menu.models.providers': 'Providers',
'menu.models.instances': 'Instances',
'menu.models.routes': 'Routes',
'menu.resources': 'リソース',
'menu.apikeys': 'APIキー',
+5 -1
View File
@@ -279,7 +279,9 @@ export default {
'models.form.maxContextLength': 'Maximum Context Length',
'models.form.backend.helperText':
'Not enabled yet. Will be enabled after deployment. ',
'models.table.instance.benchmark': 'Run Benchmark'
'models.table.instance.benchmark': 'Run Benchmark',
'models.table.modelView': 'Model View',
'models.table.instanceView': 'Instance View'
};
// ========== To-Do: Translate Keys (Remove After Translation) ==========
@@ -380,4 +382,6 @@ export default {
// 78. 'models.table.instance.benchmark': 'Run Benchmark'
// 77. 'models.form.enableModelRoute': 'Enable Model Route',
// 78. 'models.form.enableModelRoute.tips': 'Enable Model Route',
// 79. 'models.table.modelView': 'Model View',
// 80. 'models.table.instanceView': 'Instance View'
// ========== End of To-Do List ==========
+5 -1
View File
@@ -48,5 +48,9 @@ export default {
'noresult.providers.nofound': 'No matching providers found.',
'noresult.routes.title': 'No Routes',
'noresult.routes.subTitle': 'No routes have been added yet.',
'noresult.routes.nofound': 'No matching routes found.'
'noresult.routes.nofound': 'No matching routes found.',
'noresult.instances.title': 'No instances',
'noresult.instances.subTitle':
'There are no running model instances. Deploy a model to create one automatically.',
'noresult.instances.nofound': 'No matching instances found.'
};