Browse Source

add IAiModelSystem

visuddhinanda 7 months ago
parent
commit
da9fafa0c6
1 changed files with 5 additions and 0 deletions
  1. 5 0
      dashboard-v4/dashboard/src/components/api/ai.ts

+ 5 - 0
dashboard-v4/dashboard/src/components/api/ai.ts

@@ -98,3 +98,8 @@ export interface IAiModelLogListResponse {
   message: string;
   message: string;
   data: { rows: IAiModelLogData[]; total: number };
   data: { rows: IAiModelLogData[]; total: number };
 }
 }
+
+export interface IAiModelSystem {
+  view: string;
+  models: string[];
+}