@flashbacktech/flashbackclient 0.2.14 → 0.2.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { NodeStatusInfo, NodeStatusType } from './bridge';
|
|
2
|
+
import { RepoAiLlmInfo } from '../ai/aillm';
|
|
2
3
|
export declare enum StorageType {
|
|
3
4
|
S3 = "S3",
|
|
4
5
|
GCS = "GCS",
|
|
@@ -65,6 +66,7 @@ export interface CreateRepoRequest {
|
|
|
65
66
|
storageType: StorageType;
|
|
66
67
|
mode: ModeType;
|
|
67
68
|
repoUnits: RepoUnitInfo[];
|
|
69
|
+
repoAiLlms?: RepoAiLlmInfo[];
|
|
68
70
|
workspaceId: string;
|
|
69
71
|
}
|
|
70
72
|
export interface CreateRepoResponse {
|
|
@@ -100,6 +102,7 @@ export interface StorageRepo {
|
|
|
100
102
|
storageType: StorageType;
|
|
101
103
|
mode: ModeType;
|
|
102
104
|
units: RepoUnitInfo[];
|
|
105
|
+
aiLlms?: RepoAiLlmInfo[];
|
|
103
106
|
apiKeys?: ApiKey[];
|
|
104
107
|
createdAt: string;
|
|
105
108
|
disabled?: boolean;
|
|
@@ -223,6 +226,7 @@ export interface CreateRepoWithBucketsRequest {
|
|
|
223
226
|
storageType: StorageType;
|
|
224
227
|
mode: ModeType;
|
|
225
228
|
repoBuckets: RepoBucketInfo[];
|
|
229
|
+
repoAiLlms?: RepoAiLlmInfo[];
|
|
226
230
|
workspaceId: string;
|
|
227
231
|
}
|
|
228
232
|
export interface UpdateRepoWithBucketsRequest extends CreateRepoWithBucketsRequest {
|
|
@@ -234,6 +238,7 @@ export interface StorageRepoWithBuckets {
|
|
|
234
238
|
mode: ModeType;
|
|
235
239
|
workspaceId: string;
|
|
236
240
|
buckets: RepoBucketInfo[];
|
|
241
|
+
aiLlms?: RepoAiLlmInfo[];
|
|
237
242
|
apiKeys?: ApiKey[];
|
|
238
243
|
createdAt: string;
|
|
239
244
|
disabled?: boolean;
|