@yuntijs/arcadia-bff-sdk 1.2.40 → 1.2.42
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.
- package/dist/cjs/sdk.d.ts +16 -0
- package/dist/cjs/sdk.js +8 -0
- package/dist/esm/sdk.d.ts +16 -0
- package/dist/esm/sdk.js +8 -8
- package/dist/umd/index.min.js +1 -1
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/sdk.d.ts
CHANGED
|
@@ -454,6 +454,8 @@ export type CreateKnowledgeBaseInput = {
|
|
|
454
454
|
chunkOverlap?: InputMaybe<Scalars['Int']['input']>;
|
|
455
455
|
/** chunkSize为知识库做文档拆分时的块大小 */
|
|
456
456
|
chunkSize?: InputMaybe<Scalars['Int']['input']>;
|
|
457
|
+
/** 知识库的数据类型 */
|
|
458
|
+
dataType: Scalars['String']['input'];
|
|
457
459
|
/** 知识库资源描述 */
|
|
458
460
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
459
461
|
/** 知识库资源展示名称作为显示,并提供编辑 */
|
|
@@ -1237,6 +1239,8 @@ export type FileDetails = {
|
|
|
1237
1239
|
};
|
|
1238
1240
|
/** 根据条件顾虑版本内的文件,只支持关键词搜索 */
|
|
1239
1241
|
export type FileFilter = {
|
|
1242
|
+
/** 根据数据类型过滤,同知识库的数据类型 */
|
|
1243
|
+
dataType?: InputMaybe<Scalars['String']['input']>;
|
|
1240
1244
|
/** 根据关键词搜索文件,strings.Container(fileName, keyword) */
|
|
1241
1245
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
1242
1246
|
/** 页 */
|
|
@@ -1296,6 +1300,8 @@ export type KnowledgeBase = {
|
|
|
1296
1300
|
* 规则: webhook启用后自动添加,默认为空
|
|
1297
1301
|
*/
|
|
1298
1302
|
creator?: Maybe<Scalars['String']['output']>;
|
|
1303
|
+
/** 知识库的数据类型: text or structured */
|
|
1304
|
+
dataType?: Maybe<Scalars['String']['output']>;
|
|
1299
1305
|
/** 描述信息 */
|
|
1300
1306
|
description?: Maybe<Scalars['String']['output']>;
|
|
1301
1307
|
/** 展示名 */
|
|
@@ -3068,6 +3074,8 @@ export type Workflow = {
|
|
|
3068
3074
|
description?: Maybe<Scalars['String']['output']>;
|
|
3069
3075
|
/** 展示名,别名 */
|
|
3070
3076
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
3077
|
+
/** 草稿更新时间 */
|
|
3078
|
+
draftUpdateTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
3071
3079
|
/** 流水线编排的react-flow画布 */
|
|
3072
3080
|
graph?: Maybe<Scalars['Map']['output']>;
|
|
3073
3081
|
/** Icon,图片ID */
|
|
@@ -4725,6 +4733,7 @@ export type ListKnowledgeBasesQuery = {
|
|
|
4725
4733
|
creator?: string | null;
|
|
4726
4734
|
displayName?: string | null;
|
|
4727
4735
|
description?: string | null;
|
|
4736
|
+
dataType?: string | null;
|
|
4728
4737
|
chunkSize?: number | null;
|
|
4729
4738
|
chunkOverlap?: number | null;
|
|
4730
4739
|
batchSize?: number | null;
|
|
@@ -4810,6 +4819,7 @@ export type GetKnowledgeBaseQuery = {
|
|
|
4810
4819
|
creator?: string | null;
|
|
4811
4820
|
displayName?: string | null;
|
|
4812
4821
|
description?: string | null;
|
|
4822
|
+
dataType?: string | null;
|
|
4813
4823
|
chunkSize?: number | null;
|
|
4814
4824
|
chunkOverlap?: number | null;
|
|
4815
4825
|
batchSize?: number | null;
|
|
@@ -4871,6 +4881,7 @@ export type CreateKnowledgeBaseMutation = {
|
|
|
4871
4881
|
creator?: string | null;
|
|
4872
4882
|
displayName?: string | null;
|
|
4873
4883
|
description?: string | null;
|
|
4884
|
+
dataType?: string | null;
|
|
4874
4885
|
chunkSize?: number | null;
|
|
4875
4886
|
chunkOverlap?: number | null;
|
|
4876
4887
|
batchSize?: number | null;
|
|
@@ -4932,6 +4943,7 @@ export type UpdateKnowledgeBaseMutation = {
|
|
|
4932
4943
|
creator?: string | null;
|
|
4933
4944
|
displayName?: string | null;
|
|
4934
4945
|
description?: string | null;
|
|
4946
|
+
dataType?: string | null;
|
|
4935
4947
|
chunkSize?: number | null;
|
|
4936
4948
|
chunkOverlap?: number | null;
|
|
4937
4949
|
batchSize?: number | null;
|
|
@@ -7016,6 +7028,7 @@ export type ListWorkflowsQuery = {
|
|
|
7016
7028
|
icon?: string | null;
|
|
7017
7029
|
status?: string | null;
|
|
7018
7030
|
updateTimestamp?: any | null;
|
|
7031
|
+
draftUpdateTimestamp?: any | null;
|
|
7019
7032
|
graph?: any | null;
|
|
7020
7033
|
release?: boolean | null;
|
|
7021
7034
|
}> | null;
|
|
@@ -7044,6 +7057,7 @@ export type GetWorkflowQuery = {
|
|
|
7044
7057
|
icon?: string | null;
|
|
7045
7058
|
status?: string | null;
|
|
7046
7059
|
updateTimestamp?: any | null;
|
|
7060
|
+
draftUpdateTimestamp?: any | null;
|
|
7047
7061
|
graph?: any | null;
|
|
7048
7062
|
release?: boolean | null;
|
|
7049
7063
|
};
|
|
@@ -7070,6 +7084,7 @@ export type CreateWorkflowMutation = {
|
|
|
7070
7084
|
icon?: string | null;
|
|
7071
7085
|
status?: string | null;
|
|
7072
7086
|
updateTimestamp?: any | null;
|
|
7087
|
+
draftUpdateTimestamp?: any | null;
|
|
7073
7088
|
graph?: any | null;
|
|
7074
7089
|
};
|
|
7075
7090
|
} | null;
|
|
@@ -7095,6 +7110,7 @@ export type UpdateWorkflowMutation = {
|
|
|
7095
7110
|
icon?: string | null;
|
|
7096
7111
|
status?: string | null;
|
|
7097
7112
|
updateTimestamp?: any | null;
|
|
7113
|
+
draftUpdateTimestamp?: any | null;
|
|
7098
7114
|
graph?: any | null;
|
|
7099
7115
|
};
|
|
7100
7116
|
} | null;
|
package/dist/cjs/sdk.js
CHANGED
|
@@ -1082,6 +1082,7 @@ var ListKnowledgeBasesDocument = import_graphql_tag.default`
|
|
|
1082
1082
|
creator
|
|
1083
1083
|
displayName
|
|
1084
1084
|
description
|
|
1085
|
+
dataType
|
|
1085
1086
|
chunkSize
|
|
1086
1087
|
chunkOverlap
|
|
1087
1088
|
batchSize
|
|
@@ -1136,6 +1137,7 @@ var GetKnowledgeBaseDocument = import_graphql_tag.default`
|
|
|
1136
1137
|
creator
|
|
1137
1138
|
displayName
|
|
1138
1139
|
description
|
|
1140
|
+
dataType
|
|
1139
1141
|
chunkSize
|
|
1140
1142
|
chunkOverlap
|
|
1141
1143
|
batchSize
|
|
@@ -1188,6 +1190,7 @@ var CreateKnowledgeBaseDocument = import_graphql_tag.default`
|
|
|
1188
1190
|
creator
|
|
1189
1191
|
displayName
|
|
1190
1192
|
description
|
|
1193
|
+
dataType
|
|
1191
1194
|
chunkSize
|
|
1192
1195
|
chunkOverlap
|
|
1193
1196
|
batchSize
|
|
@@ -1240,6 +1243,7 @@ var UpdateKnowledgeBaseDocument = import_graphql_tag.default`
|
|
|
1240
1243
|
creator
|
|
1241
1244
|
displayName
|
|
1242
1245
|
description
|
|
1246
|
+
dataType
|
|
1243
1247
|
chunkSize
|
|
1244
1248
|
chunkOverlap
|
|
1245
1249
|
batchSize
|
|
@@ -2534,6 +2538,7 @@ var ListWorkflowsDocument = import_graphql_tag.default`
|
|
|
2534
2538
|
icon
|
|
2535
2539
|
status
|
|
2536
2540
|
updateTimestamp
|
|
2541
|
+
draftUpdateTimestamp
|
|
2537
2542
|
graph
|
|
2538
2543
|
release
|
|
2539
2544
|
}
|
|
@@ -2558,6 +2563,7 @@ var GetWorkflowDocument = import_graphql_tag.default`
|
|
|
2558
2563
|
icon
|
|
2559
2564
|
status
|
|
2560
2565
|
updateTimestamp
|
|
2566
|
+
draftUpdateTimestamp
|
|
2561
2567
|
graph
|
|
2562
2568
|
release
|
|
2563
2569
|
}
|
|
@@ -2580,6 +2586,7 @@ var CreateWorkflowDocument = import_graphql_tag.default`
|
|
|
2580
2586
|
icon
|
|
2581
2587
|
status
|
|
2582
2588
|
updateTimestamp
|
|
2589
|
+
draftUpdateTimestamp
|
|
2583
2590
|
graph
|
|
2584
2591
|
}
|
|
2585
2592
|
}
|
|
@@ -2601,6 +2608,7 @@ var UpdateWorkflowDocument = import_graphql_tag.default`
|
|
|
2601
2608
|
icon
|
|
2602
2609
|
status
|
|
2603
2610
|
updateTimestamp
|
|
2611
|
+
draftUpdateTimestamp
|
|
2604
2612
|
graph
|
|
2605
2613
|
}
|
|
2606
2614
|
}
|
package/dist/esm/sdk.d.ts
CHANGED
|
@@ -454,6 +454,8 @@ export type CreateKnowledgeBaseInput = {
|
|
|
454
454
|
chunkOverlap?: InputMaybe<Scalars['Int']['input']>;
|
|
455
455
|
/** chunkSize为知识库做文档拆分时的块大小 */
|
|
456
456
|
chunkSize?: InputMaybe<Scalars['Int']['input']>;
|
|
457
|
+
/** 知识库的数据类型 */
|
|
458
|
+
dataType: Scalars['String']['input'];
|
|
457
459
|
/** 知识库资源描述 */
|
|
458
460
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
459
461
|
/** 知识库资源展示名称作为显示,并提供编辑 */
|
|
@@ -1237,6 +1239,8 @@ export type FileDetails = {
|
|
|
1237
1239
|
};
|
|
1238
1240
|
/** 根据条件顾虑版本内的文件,只支持关键词搜索 */
|
|
1239
1241
|
export type FileFilter = {
|
|
1242
|
+
/** 根据数据类型过滤,同知识库的数据类型 */
|
|
1243
|
+
dataType?: InputMaybe<Scalars['String']['input']>;
|
|
1240
1244
|
/** 根据关键词搜索文件,strings.Container(fileName, keyword) */
|
|
1241
1245
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
1242
1246
|
/** 页 */
|
|
@@ -1296,6 +1300,8 @@ export type KnowledgeBase = {
|
|
|
1296
1300
|
* 规则: webhook启用后自动添加,默认为空
|
|
1297
1301
|
*/
|
|
1298
1302
|
creator?: Maybe<Scalars['String']['output']>;
|
|
1303
|
+
/** 知识库的数据类型: text or structured */
|
|
1304
|
+
dataType?: Maybe<Scalars['String']['output']>;
|
|
1299
1305
|
/** 描述信息 */
|
|
1300
1306
|
description?: Maybe<Scalars['String']['output']>;
|
|
1301
1307
|
/** 展示名 */
|
|
@@ -3068,6 +3074,8 @@ export type Workflow = {
|
|
|
3068
3074
|
description?: Maybe<Scalars['String']['output']>;
|
|
3069
3075
|
/** 展示名,别名 */
|
|
3070
3076
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
3077
|
+
/** 草稿更新时间 */
|
|
3078
|
+
draftUpdateTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
3071
3079
|
/** 流水线编排的react-flow画布 */
|
|
3072
3080
|
graph?: Maybe<Scalars['Map']['output']>;
|
|
3073
3081
|
/** Icon,图片ID */
|
|
@@ -4725,6 +4733,7 @@ export type ListKnowledgeBasesQuery = {
|
|
|
4725
4733
|
creator?: string | null;
|
|
4726
4734
|
displayName?: string | null;
|
|
4727
4735
|
description?: string | null;
|
|
4736
|
+
dataType?: string | null;
|
|
4728
4737
|
chunkSize?: number | null;
|
|
4729
4738
|
chunkOverlap?: number | null;
|
|
4730
4739
|
batchSize?: number | null;
|
|
@@ -4810,6 +4819,7 @@ export type GetKnowledgeBaseQuery = {
|
|
|
4810
4819
|
creator?: string | null;
|
|
4811
4820
|
displayName?: string | null;
|
|
4812
4821
|
description?: string | null;
|
|
4822
|
+
dataType?: string | null;
|
|
4813
4823
|
chunkSize?: number | null;
|
|
4814
4824
|
chunkOverlap?: number | null;
|
|
4815
4825
|
batchSize?: number | null;
|
|
@@ -4871,6 +4881,7 @@ export type CreateKnowledgeBaseMutation = {
|
|
|
4871
4881
|
creator?: string | null;
|
|
4872
4882
|
displayName?: string | null;
|
|
4873
4883
|
description?: string | null;
|
|
4884
|
+
dataType?: string | null;
|
|
4874
4885
|
chunkSize?: number | null;
|
|
4875
4886
|
chunkOverlap?: number | null;
|
|
4876
4887
|
batchSize?: number | null;
|
|
@@ -4932,6 +4943,7 @@ export type UpdateKnowledgeBaseMutation = {
|
|
|
4932
4943
|
creator?: string | null;
|
|
4933
4944
|
displayName?: string | null;
|
|
4934
4945
|
description?: string | null;
|
|
4946
|
+
dataType?: string | null;
|
|
4935
4947
|
chunkSize?: number | null;
|
|
4936
4948
|
chunkOverlap?: number | null;
|
|
4937
4949
|
batchSize?: number | null;
|
|
@@ -7016,6 +7028,7 @@ export type ListWorkflowsQuery = {
|
|
|
7016
7028
|
icon?: string | null;
|
|
7017
7029
|
status?: string | null;
|
|
7018
7030
|
updateTimestamp?: any | null;
|
|
7031
|
+
draftUpdateTimestamp?: any | null;
|
|
7019
7032
|
graph?: any | null;
|
|
7020
7033
|
release?: boolean | null;
|
|
7021
7034
|
}> | null;
|
|
@@ -7044,6 +7057,7 @@ export type GetWorkflowQuery = {
|
|
|
7044
7057
|
icon?: string | null;
|
|
7045
7058
|
status?: string | null;
|
|
7046
7059
|
updateTimestamp?: any | null;
|
|
7060
|
+
draftUpdateTimestamp?: any | null;
|
|
7047
7061
|
graph?: any | null;
|
|
7048
7062
|
release?: boolean | null;
|
|
7049
7063
|
};
|
|
@@ -7070,6 +7084,7 @@ export type CreateWorkflowMutation = {
|
|
|
7070
7084
|
icon?: string | null;
|
|
7071
7085
|
status?: string | null;
|
|
7072
7086
|
updateTimestamp?: any | null;
|
|
7087
|
+
draftUpdateTimestamp?: any | null;
|
|
7073
7088
|
graph?: any | null;
|
|
7074
7089
|
};
|
|
7075
7090
|
} | null;
|
|
@@ -7095,6 +7110,7 @@ export type UpdateWorkflowMutation = {
|
|
|
7095
7110
|
icon?: string | null;
|
|
7096
7111
|
status?: string | null;
|
|
7097
7112
|
updateTimestamp?: any | null;
|
|
7113
|
+
draftUpdateTimestamp?: any | null;
|
|
7098
7114
|
graph?: any | null;
|
|
7099
7115
|
};
|
|
7100
7116
|
} | null;
|
package/dist/esm/sdk.js
CHANGED
|
@@ -211,10 +211,10 @@ export var UpdateEmbedderDocument = gql(_templateObject42 || (_templateObject42
|
|
|
211
211
|
export var DeleteEmbeddersDocument = gql(_templateObject43 || (_templateObject43 = _taggedTemplateLiteral(["\n mutation deleteEmbedders($input: DeleteCommonInput!) {\n Embedder {\n deleteEmbedders(input: $input)\n }\n}\n "])));
|
|
212
212
|
export var ListEmbeddersDocument = gql(_templateObject44 || (_templateObject44 = _taggedTemplateLiteral(["\n query listEmbedders($input: ListCommonInput!) {\n Embedder {\n listEmbedders(input: $input) {\n totalCount\n hasNextPage\n nodes {\n ... on Embedder {\n name\n namespace\n labels\n annotations\n displayName\n description\n baseUrl\n models\n provider\n type\n updateTimestamp\n status\n message\n }\n }\n }\n }\n}\n "])));
|
|
213
213
|
export var GetEmbedderDocument = gql(_templateObject45 || (_templateObject45 = _taggedTemplateLiteral(["\n query getEmbedder($name: String!, $namespace: String!) {\n Embedder {\n getEmbedder(name: $name, namespace: $namespace) {\n name\n namespace\n labels\n annotations\n displayName\n description\n baseUrl\n models\n provider\n type\n updateTimestamp\n }\n }\n}\n "])));
|
|
214
|
-
export var ListKnowledgeBasesDocument = gql(_templateObject46 || (_templateObject46 = _taggedTemplateLiteral(["\n query listKnowledgeBases($input: ListKnowledgeBaseInput!) {\n KnowledgeBase {\n listKnowledgeBases(input: $input) {\n totalCount\n hasNextPage\n nodes {\n ... on KnowledgeBase {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n chunkSize\n chunkOverlap\n batchSize\n status\n reason\n message\n updateTimestamp\n embedder {\n kind\n name\n namespace\n displayName\n }\n embedderType\n vectorStore {\n kind\n name\n }\n fileGroupDetails {\n source {\n kind\n name\n }\n filedetails {\n path\n phase\n fileType\n count\n size\n updateTimestamp\n timeCost\n version\n latestVersion\n }\n }\n }\n }\n }\n }\n}\n "])));
|
|
215
|
-
export var GetKnowledgeBaseDocument = gql(_templateObject47 || (_templateObject47 = _taggedTemplateLiteral(["\n query getKnowledgeBase($name: String!, $namespace: String!) {\n KnowledgeBase {\n getKnowledgeBase(name: $name, namespace: $namespace) {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n chunkSize\n chunkOverlap\n batchSize\n status\n reason\n message\n updateTimestamp\n embedder {\n kind\n name\n namespace\n displayName\n }\n embedderType\n vectorStore {\n kind\n name\n }\n fileGroupDetails {\n source {\n kind\n name\n }\n filedetails {\n path\n phase\n fileType\n count\n size\n updateTimestamp\n timeCost\n version\n latestVersion\n }\n }\n }\n }\n}\n "])));
|
|
216
|
-
export var CreateKnowledgeBaseDocument = gql(_templateObject48 || (_templateObject48 = _taggedTemplateLiteral(["\n mutation createKnowledgeBase($input: CreateKnowledgeBaseInput!) {\n KnowledgeBase {\n createKnowledgeBase(input: $input) {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n chunkSize\n chunkOverlap\n batchSize\n status\n reason\n message\n updateTimestamp\n embedder {\n kind\n name\n namespace\n displayName\n }\n embedderType\n vectorStore {\n kind\n name\n }\n fileGroupDetails {\n source {\n kind\n name\n }\n filedetails {\n path\n phase\n fileType\n count\n size\n updateTimestamp\n timeCost\n version\n latestVersion\n }\n }\n }\n }\n}\n "])));
|
|
217
|
-
export var UpdateKnowledgeBaseDocument = gql(_templateObject49 || (_templateObject49 = _taggedTemplateLiteral(["\n mutation updateKnowledgeBase($input: UpdateKnowledgeBaseInput) {\n KnowledgeBase {\n updateKnowledgeBase(input: $input) {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n chunkSize\n chunkOverlap\n batchSize\n status\n reason\n message\n updateTimestamp\n embedder {\n kind\n name\n namespace\n displayName\n }\n embedderType\n vectorStore {\n kind\n name\n }\n fileGroupDetails {\n source {\n kind\n name\n }\n filedetails {\n path\n phase\n fileType\n count\n size\n updateTimestamp\n timeCost\n version\n latestVersion\n }\n }\n }\n }\n}\n "])));
|
|
214
|
+
export var ListKnowledgeBasesDocument = gql(_templateObject46 || (_templateObject46 = _taggedTemplateLiteral(["\n query listKnowledgeBases($input: ListKnowledgeBaseInput!) {\n KnowledgeBase {\n listKnowledgeBases(input: $input) {\n totalCount\n hasNextPage\n nodes {\n ... on KnowledgeBase {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n dataType\n chunkSize\n chunkOverlap\n batchSize\n status\n reason\n message\n updateTimestamp\n embedder {\n kind\n name\n namespace\n displayName\n }\n embedderType\n vectorStore {\n kind\n name\n }\n fileGroupDetails {\n source {\n kind\n name\n }\n filedetails {\n path\n phase\n fileType\n count\n size\n updateTimestamp\n timeCost\n version\n latestVersion\n }\n }\n }\n }\n }\n }\n}\n "])));
|
|
215
|
+
export var GetKnowledgeBaseDocument = gql(_templateObject47 || (_templateObject47 = _taggedTemplateLiteral(["\n query getKnowledgeBase($name: String!, $namespace: String!) {\n KnowledgeBase {\n getKnowledgeBase(name: $name, namespace: $namespace) {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n dataType\n chunkSize\n chunkOverlap\n batchSize\n status\n reason\n message\n updateTimestamp\n embedder {\n kind\n name\n namespace\n displayName\n }\n embedderType\n vectorStore {\n kind\n name\n }\n fileGroupDetails {\n source {\n kind\n name\n }\n filedetails {\n path\n phase\n fileType\n count\n size\n updateTimestamp\n timeCost\n version\n latestVersion\n }\n }\n }\n }\n}\n "])));
|
|
216
|
+
export var CreateKnowledgeBaseDocument = gql(_templateObject48 || (_templateObject48 = _taggedTemplateLiteral(["\n mutation createKnowledgeBase($input: CreateKnowledgeBaseInput!) {\n KnowledgeBase {\n createKnowledgeBase(input: $input) {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n dataType\n chunkSize\n chunkOverlap\n batchSize\n status\n reason\n message\n updateTimestamp\n embedder {\n kind\n name\n namespace\n displayName\n }\n embedderType\n vectorStore {\n kind\n name\n }\n fileGroupDetails {\n source {\n kind\n name\n }\n filedetails {\n path\n phase\n fileType\n count\n size\n updateTimestamp\n timeCost\n version\n latestVersion\n }\n }\n }\n }\n}\n "])));
|
|
217
|
+
export var UpdateKnowledgeBaseDocument = gql(_templateObject49 || (_templateObject49 = _taggedTemplateLiteral(["\n mutation updateKnowledgeBase($input: UpdateKnowledgeBaseInput) {\n KnowledgeBase {\n updateKnowledgeBase(input: $input) {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n dataType\n chunkSize\n chunkOverlap\n batchSize\n status\n reason\n message\n updateTimestamp\n embedder {\n kind\n name\n namespace\n displayName\n }\n embedderType\n vectorStore {\n kind\n name\n }\n fileGroupDetails {\n source {\n kind\n name\n }\n filedetails {\n path\n phase\n fileType\n count\n size\n updateTimestamp\n timeCost\n version\n latestVersion\n }\n }\n }\n }\n}\n "])));
|
|
218
218
|
export var DeleteKnowledgeBaseDocument = gql(_templateObject50 || (_templateObject50 = _taggedTemplateLiteral(["\n mutation deleteKnowledgeBase($input: DeleteCommonInput) {\n KnowledgeBase {\n deleteKnowledgeBase(input: $input)\n }\n}\n "])));
|
|
219
219
|
export var ListLlMsDocument = gql(_templateObject51 || (_templateObject51 = _taggedTemplateLiteral(["\n query listLLMs($input: ListCommonInput!) {\n LLM {\n listLLMs(input: $input) {\n totalCount\n hasNextPage\n nodes {\n ... on LLM {\n name\n namespace\n labels\n annotations\n displayName\n description\n baseUrl\n models\n provider\n type\n updateTimestamp\n status\n message\n }\n }\n }\n }\n}\n "])));
|
|
220
220
|
export var GetLlmDocument = gql(_templateObject52 || (_templateObject52 = _taggedTemplateLiteral(["\n query getLLM($name: String!, $namespace: String!) {\n LLM {\n getLLM(name: $name, namespace: $namespace) {\n name\n namespace\n labels\n annotations\n displayName\n description\n baseUrl\n models\n provider\n type\n updateTimestamp\n status\n message\n }\n }\n}\n "])));
|
|
@@ -257,10 +257,10 @@ export var GetWorkerDocument = gql(_templateObject88 || (_templateObject88 = _ta
|
|
|
257
257
|
export var CreateWorkerDocument = gql(_templateObject89 || (_templateObject89 = _taggedTemplateLiteral(["\n mutation createWorker($input: CreateWorkerInput!) {\n Worker {\n createWorker(input: $input) {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n type\n status\n message\n updateTimestamp\n model {\n name\n namespace\n kind\n apiGroup\n }\n api\n modelTypes\n replicas\n resources {\n cpu\n memory\n nvidiaGPU\n }\n matchExpressions {\n key\n operator\n values\n }\n additionalEnvs\n storage {\n accessModes\n resources {\n limits\n requests\n }\n storageClassName\n }\n }\n }\n}\n "])));
|
|
258
258
|
export var UpdateWorkerDocument = gql(_templateObject90 || (_templateObject90 = _taggedTemplateLiteral(["\n mutation updateWorker($input: UpdateWorkerInput) {\n Worker {\n updateWorker(input: $input) {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n type\n status\n message\n updateTimestamp\n replicas\n resources {\n cpu\n memory\n nvidiaGPU\n }\n api\n model {\n name\n namespace\n kind\n apiGroup\n }\n modelTypes\n matchExpressions {\n key\n operator\n values\n }\n additionalEnvs\n }\n }\n}\n "])));
|
|
259
259
|
export var DeleteWorkersDocument = gql(_templateObject91 || (_templateObject91 = _taggedTemplateLiteral(["\n mutation deleteWorkers($input: DeleteCommonInput) {\n Worker {\n deleteWorkers(input: $input)\n }\n}\n "])));
|
|
260
|
-
export var ListWorkflowsDocument = gql(_templateObject92 || (_templateObject92 = _taggedTemplateLiteral(["\n query listWorkflows($input: ListCommonInput!) {\n Workflow {\n listWorkflows(input: $input) {\n totalCount\n hasNextPage\n nodes {\n __typename\n ... on Workflow {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n icon\n status\n updateTimestamp\n graph\n release\n }\n }\n }\n }\n}\n "])));
|
|
261
|
-
export var GetWorkflowDocument = gql(_templateObject93 || (_templateObject93 = _taggedTemplateLiteral(["\n query getWorkflow($name: String!, $namespace: String!) {\n Workflow {\n getWorkflow(name: $name, namespace: $namespace) {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n icon\n status\n updateTimestamp\n graph\n release\n }\n }\n}\n "])));
|
|
262
|
-
export var CreateWorkflowDocument = gql(_templateObject94 || (_templateObject94 = _taggedTemplateLiteral(["\n mutation createWorkflow($input: CreateWorkflowInput!) {\n Workflow {\n createWorkflow(input: $input) {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n icon\n status\n updateTimestamp\n graph\n }\n }\n}\n "])));
|
|
263
|
-
export var UpdateWorkflowDocument = gql(_templateObject95 || (_templateObject95 = _taggedTemplateLiteral(["\n mutation updateWorkflow($input: UpdateWorkflowInput!) {\n Workflow {\n updateWorkflow(input: $input) {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n icon\n status\n updateTimestamp\n graph\n }\n }\n}\n "])));
|
|
260
|
+
export var ListWorkflowsDocument = gql(_templateObject92 || (_templateObject92 = _taggedTemplateLiteral(["\n query listWorkflows($input: ListCommonInput!) {\n Workflow {\n listWorkflows(input: $input) {\n totalCount\n hasNextPage\n nodes {\n __typename\n ... on Workflow {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n icon\n status\n updateTimestamp\n draftUpdateTimestamp\n graph\n release\n }\n }\n }\n }\n}\n "])));
|
|
261
|
+
export var GetWorkflowDocument = gql(_templateObject93 || (_templateObject93 = _taggedTemplateLiteral(["\n query getWorkflow($name: String!, $namespace: String!) {\n Workflow {\n getWorkflow(name: $name, namespace: $namespace) {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n icon\n status\n updateTimestamp\n draftUpdateTimestamp\n graph\n release\n }\n }\n}\n "])));
|
|
262
|
+
export var CreateWorkflowDocument = gql(_templateObject94 || (_templateObject94 = _taggedTemplateLiteral(["\n mutation createWorkflow($input: CreateWorkflowInput!) {\n Workflow {\n createWorkflow(input: $input) {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n icon\n status\n updateTimestamp\n draftUpdateTimestamp\n graph\n }\n }\n}\n "])));
|
|
263
|
+
export var UpdateWorkflowDocument = gql(_templateObject95 || (_templateObject95 = _taggedTemplateLiteral(["\n mutation updateWorkflow($input: UpdateWorkflowInput!) {\n Workflow {\n updateWorkflow(input: $input) {\n id\n creationTimestamp\n name\n namespace\n labels\n annotations\n creator\n displayName\n description\n icon\n status\n updateTimestamp\n draftUpdateTimestamp\n graph\n }\n }\n}\n "])));
|
|
264
264
|
export var DeleteWorkflowDocument = gql(_templateObject96 || (_templateObject96 = _taggedTemplateLiteral(["\n mutation deleteWorkflow($input: DeleteCommonInput!) {\n Workflow {\n deleteWorkflow(input: $input)\n }\n}\n "])));
|
|
265
265
|
export var ReleaseWorkflowDocument = gql(_templateObject97 || (_templateObject97 = _taggedTemplateLiteral(["\n mutation releaseWorkflow($input: ReleaseWorkflowInput!) {\n Workflow {\n releaseWorkflow(input: $input)\n }\n}\n "])));
|
|
266
266
|
var defaultWrapper = function defaultWrapper(action, _operationName, _operationType, variables) {
|