Spaces:
Running
Running
Update flare-ui/src/app/services/api.service.ts
Browse files
flare-ui/src/app/services/api.service.ts
CHANGED
@@ -40,17 +40,19 @@ export interface API {
|
|
40 |
|
41 |
export interface Version {
|
42 |
id: number;
|
43 |
-
|
44 |
-
|
|
|
45 |
published: boolean;
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
|
|
|
|
52 |
last_update_date?: string;
|
53 |
-
last_update_user?: string;
|
54 |
}
|
55 |
|
56 |
export interface Project {
|
|
|
40 |
|
41 |
export interface Version {
|
42 |
id: number;
|
43 |
+
caption?: string;
|
44 |
+
description?: string; // Bu satır eklenmeli
|
45 |
+
default_api: string;
|
46 |
published: boolean;
|
47 |
+
llm: {
|
48 |
+
repo_id: string;
|
49 |
+
generation_config: any;
|
50 |
+
use_fine_tune: boolean;
|
51 |
+
fine_tune_zip: string;
|
52 |
+
};
|
53 |
+
intents: any[];
|
54 |
+
parameters: any[];
|
55 |
last_update_date?: string;
|
|
|
56 |
}
|
57 |
|
58 |
export interface Project {
|