ciyidogan commited on
Commit
4d12825
·
verified ·
1 Parent(s): b49c091

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
- version_number: number;
44
- caption: string;
 
45
  published: boolean;
46
- general_prompt?: string;
47
- llm?: any;
48
- intents?: any[];
49
- created_date?: string;
50
- published_by?: string;
51
- publish_date?: string;
 
 
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 {