File tree Expand file tree Collapse file tree
routes/debug/providers-status Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -51,4 +51,7 @@ declare module 'vue' {
5151 SvelteDropdown : typeof import ( './src/components/SvelteDropdown.vue' ) [ 'default' ]
5252 ToolCall : typeof import ( './src/components/ToolCall.vue' ) [ 'default' ]
5353 }
54+ export interface ComponentCustomProperties {
55+ vLoading : typeof import ( 'element-plus/es' ) [ 'ElLoadingDirective' ]
56+ }
5457}
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ import APIServerErrorView from '../views/APIServerErrorView.vue'
3939import APIServerStatusView from '../views/APIServerStatusView.vue'
4040import { isServerUp , OBP_API_DEFAULT_RESOURCE_DOC_VERSION } from '../obp'
4141import MessageDocsContent from '@/components/CodeBlock.vue'
42+ import ProvidersStatusView from '../views/ProvidersStatusView.vue'
4243
4344export default async function router ( ) : Promise < any > {
4445 const isServerActive = await isServerUp ( )
@@ -54,6 +55,11 @@ export default async function router(): Promise<any> {
5455 name : 'status' ,
5556 component : APIServerStatusView
5657 } ,
58+ {
59+ path : '/debug/providers-status' ,
60+ name : 'providers-status' ,
61+ component : ProvidersStatusView
62+ } ,
5763 {
5864 path : '/glossary' ,
5965 name : 'glossary' ,
You can’t perform that action at this time.
0 commit comments