@yuntijs/arcadia-bff-sdk 1.2.121 → 1.2.123
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 +72 -11
- package/dist/cjs/sdk.js +50 -8
- package/dist/esm/sdk.d.ts +72 -11
- 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
|
@@ -1406,11 +1406,12 @@ export type Embedder = {
|
|
|
1406
1406
|
creator?: Maybe<Scalars['String']['output']>;
|
|
1407
1407
|
description?: Maybe<Scalars['String']['output']>;
|
|
1408
1408
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
1409
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
1409
1410
|
id?: Maybe<Scalars['String']['output']>;
|
|
1410
1411
|
labels?: Maybe<Scalars['Map']['output']>;
|
|
1411
1412
|
message?: Maybe<Scalars['String']['output']>;
|
|
1412
1413
|
/** 此Embedder支持调用的模型列表 */
|
|
1413
|
-
models?: Maybe<Array<
|
|
1414
|
+
models?: Maybe<Array<ModelMetadata>>;
|
|
1414
1415
|
name: Scalars['String']['output'];
|
|
1415
1416
|
namespace: Scalars['String']['output'];
|
|
1416
1417
|
/**
|
|
@@ -1791,11 +1792,12 @@ export type Llm = {
|
|
|
1791
1792
|
creator?: Maybe<Scalars['String']['output']>;
|
|
1792
1793
|
description?: Maybe<Scalars['String']['output']>;
|
|
1793
1794
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
1795
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
1794
1796
|
id?: Maybe<Scalars['String']['output']>;
|
|
1795
1797
|
labels?: Maybe<Scalars['Map']['output']>;
|
|
1796
1798
|
message?: Maybe<Scalars['String']['output']>;
|
|
1797
1799
|
/** 此LLM支持调用的模型列表 */
|
|
1798
|
-
models?: Maybe<Array<
|
|
1800
|
+
models?: Maybe<Array<ModelMetadata>>;
|
|
1799
1801
|
name: Scalars['String']['output'];
|
|
1800
1802
|
namespace: Scalars['String']['output'];
|
|
1801
1803
|
/**
|
|
@@ -1852,6 +1854,7 @@ export type LabelSelectorRequirementInput = {
|
|
|
1852
1854
|
values?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1853
1855
|
};
|
|
1854
1856
|
export type ListAgentInvocationLogsInput = {
|
|
1857
|
+
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
1855
1858
|
endTime?: InputMaybe<Scalars['Time']['input']>;
|
|
1856
1859
|
name: Scalars['String']['input'];
|
|
1857
1860
|
namespace: Scalars['String']['input'];
|
|
@@ -2246,6 +2249,13 @@ export type Model = {
|
|
|
2246
2249
|
export type ModelFilesArgs = {
|
|
2247
2250
|
input?: InputMaybe<FileFilter>;
|
|
2248
2251
|
};
|
|
2252
|
+
export type ModelMetadata = {
|
|
2253
|
+
__typename?: 'ModelMetadata';
|
|
2254
|
+
contextLength?: Maybe<Scalars['Int']['output']>;
|
|
2255
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
2256
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
2257
|
+
name: Scalars['String']['output'];
|
|
2258
|
+
};
|
|
2249
2259
|
export type ModelMutation = {
|
|
2250
2260
|
__typename?: 'ModelMutation';
|
|
2251
2261
|
createModel: Model;
|
|
@@ -2851,11 +2861,12 @@ export type Reranker = {
|
|
|
2851
2861
|
creator?: Maybe<Scalars['String']['output']>;
|
|
2852
2862
|
description?: Maybe<Scalars['String']['output']>;
|
|
2853
2863
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
2864
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
2854
2865
|
id?: Maybe<Scalars['String']['output']>;
|
|
2855
2866
|
labels?: Maybe<Scalars['Map']['output']>;
|
|
2856
2867
|
message?: Maybe<Scalars['String']['output']>;
|
|
2857
2868
|
/** 此Reranker支持调用的模型列表 */
|
|
2858
|
-
models?: Maybe<Array<
|
|
2869
|
+
models?: Maybe<Array<ModelMetadata>>;
|
|
2859
2870
|
name: Scalars['String']['output'];
|
|
2860
2871
|
namespace: Scalars['String']['output'];
|
|
2861
2872
|
/**
|
|
@@ -5868,12 +5879,18 @@ export type ListEmbeddersQuery = {
|
|
|
5868
5879
|
displayName?: string | null;
|
|
5869
5880
|
description?: string | null;
|
|
5870
5881
|
baseUrl: string;
|
|
5871
|
-
models?: Array<string> | null;
|
|
5872
5882
|
provider?: string | null;
|
|
5873
5883
|
type?: string | null;
|
|
5874
5884
|
updateTimestamp?: any | null;
|
|
5875
5885
|
status?: string | null;
|
|
5876
5886
|
message?: string | null;
|
|
5887
|
+
icon?: string | null;
|
|
5888
|
+
models?: Array<{
|
|
5889
|
+
__typename?: 'ModelMetadata';
|
|
5890
|
+
name: string;
|
|
5891
|
+
displayName?: string | null;
|
|
5892
|
+
icon?: string | null;
|
|
5893
|
+
}> | null;
|
|
5877
5894
|
} | {
|
|
5878
5895
|
__typename?: 'F';
|
|
5879
5896
|
} | {
|
|
@@ -5939,10 +5956,16 @@ export type GetEmbedderQuery = {
|
|
|
5939
5956
|
displayName?: string | null;
|
|
5940
5957
|
description?: string | null;
|
|
5941
5958
|
baseUrl: string;
|
|
5942
|
-
models?: Array<string> | null;
|
|
5943
5959
|
provider?: string | null;
|
|
5944
5960
|
type?: string | null;
|
|
5945
5961
|
updateTimestamp?: any | null;
|
|
5962
|
+
icon?: string | null;
|
|
5963
|
+
models?: Array<{
|
|
5964
|
+
__typename?: 'ModelMetadata';
|
|
5965
|
+
name: string;
|
|
5966
|
+
displayName?: string | null;
|
|
5967
|
+
icon?: string | null;
|
|
5968
|
+
}> | null;
|
|
5946
5969
|
};
|
|
5947
5970
|
} | null;
|
|
5948
5971
|
};
|
|
@@ -6811,12 +6834,19 @@ export type ListLlMsQuery = {
|
|
|
6811
6834
|
displayName?: string | null;
|
|
6812
6835
|
description?: string | null;
|
|
6813
6836
|
baseUrl: string;
|
|
6814
|
-
models?: Array<string> | null;
|
|
6815
6837
|
provider?: string | null;
|
|
6816
6838
|
type?: string | null;
|
|
6817
6839
|
updateTimestamp?: any | null;
|
|
6818
6840
|
status?: string | null;
|
|
6819
6841
|
message?: string | null;
|
|
6842
|
+
icon?: string | null;
|
|
6843
|
+
models?: Array<{
|
|
6844
|
+
__typename?: 'ModelMetadata';
|
|
6845
|
+
name: string;
|
|
6846
|
+
displayName?: string | null;
|
|
6847
|
+
icon?: string | null;
|
|
6848
|
+
contextLength?: number | null;
|
|
6849
|
+
}> | null;
|
|
6820
6850
|
} | {
|
|
6821
6851
|
__typename?: 'Model';
|
|
6822
6852
|
} | {
|
|
@@ -6870,12 +6900,19 @@ export type GetLlmQuery = {
|
|
|
6870
6900
|
displayName?: string | null;
|
|
6871
6901
|
description?: string | null;
|
|
6872
6902
|
baseUrl: string;
|
|
6873
|
-
models?: Array<string> | null;
|
|
6874
6903
|
provider?: string | null;
|
|
6875
6904
|
type?: string | null;
|
|
6876
6905
|
updateTimestamp?: any | null;
|
|
6877
6906
|
status?: string | null;
|
|
6878
6907
|
message?: string | null;
|
|
6908
|
+
icon?: string | null;
|
|
6909
|
+
models?: Array<{
|
|
6910
|
+
__typename?: 'ModelMetadata';
|
|
6911
|
+
name: string;
|
|
6912
|
+
displayName?: string | null;
|
|
6913
|
+
icon?: string | null;
|
|
6914
|
+
contextLength?: number | null;
|
|
6915
|
+
}> | null;
|
|
6879
6916
|
};
|
|
6880
6917
|
} | null;
|
|
6881
6918
|
};
|
|
@@ -7880,12 +7917,18 @@ export type ListRagQuery = {
|
|
|
7880
7917
|
name: string;
|
|
7881
7918
|
namespace: string;
|
|
7882
7919
|
baseUrl: string;
|
|
7883
|
-
models?: Array<string> | null;
|
|
7884
7920
|
provider?: string | null;
|
|
7885
7921
|
type?: string | null;
|
|
7886
7922
|
status?: string | null;
|
|
7887
7923
|
message?: string | null;
|
|
7888
7924
|
displayName?: string | null;
|
|
7925
|
+
models?: Array<{
|
|
7926
|
+
__typename?: 'ModelMetadata';
|
|
7927
|
+
name: string;
|
|
7928
|
+
displayName?: string | null;
|
|
7929
|
+
icon?: string | null;
|
|
7930
|
+
contextLength?: number | null;
|
|
7931
|
+
}> | null;
|
|
7889
7932
|
};
|
|
7890
7933
|
} | {
|
|
7891
7934
|
__typename?: 'RayCluster';
|
|
@@ -8039,12 +8082,18 @@ export type GetRagQuery = {
|
|
|
8039
8082
|
displayName?: string | null;
|
|
8040
8083
|
description?: string | null;
|
|
8041
8084
|
baseUrl: string;
|
|
8042
|
-
models?: Array<string> | null;
|
|
8043
8085
|
provider?: string | null;
|
|
8044
8086
|
type?: string | null;
|
|
8045
8087
|
updateTimestamp?: any | null;
|
|
8046
8088
|
status?: string | null;
|
|
8047
8089
|
message?: string | null;
|
|
8090
|
+
models?: Array<{
|
|
8091
|
+
__typename?: 'ModelMetadata';
|
|
8092
|
+
name: string;
|
|
8093
|
+
displayName?: string | null;
|
|
8094
|
+
icon?: string | null;
|
|
8095
|
+
contextLength?: number | null;
|
|
8096
|
+
}> | null;
|
|
8048
8097
|
};
|
|
8049
8098
|
metrics: Array<{
|
|
8050
8099
|
__typename?: 'RAGMetric';
|
|
@@ -8335,12 +8384,18 @@ export type ListRerankersQuery = {
|
|
|
8335
8384
|
displayName?: string | null;
|
|
8336
8385
|
description?: string | null;
|
|
8337
8386
|
baseUrl: string;
|
|
8338
|
-
models?: Array<string> | null;
|
|
8339
8387
|
type?: string | null;
|
|
8340
8388
|
provider?: string | null;
|
|
8341
8389
|
updateTimestamp?: any | null;
|
|
8342
8390
|
status?: string | null;
|
|
8343
8391
|
message?: string | null;
|
|
8392
|
+
icon?: string | null;
|
|
8393
|
+
models?: Array<{
|
|
8394
|
+
__typename?: 'ModelMetadata';
|
|
8395
|
+
name: string;
|
|
8396
|
+
displayName?: string | null;
|
|
8397
|
+
icon?: string | null;
|
|
8398
|
+
}> | null;
|
|
8344
8399
|
} | {
|
|
8345
8400
|
__typename?: 'SFT';
|
|
8346
8401
|
} | {
|
|
@@ -8378,10 +8433,16 @@ export type GetRerankerQuery = {
|
|
|
8378
8433
|
displayName?: string | null;
|
|
8379
8434
|
description?: string | null;
|
|
8380
8435
|
baseUrl: string;
|
|
8381
|
-
models?: Array<string> | null;
|
|
8382
8436
|
type?: string | null;
|
|
8383
8437
|
provider?: string | null;
|
|
8384
8438
|
updateTimestamp?: any | null;
|
|
8439
|
+
icon?: string | null;
|
|
8440
|
+
models?: Array<{
|
|
8441
|
+
__typename?: 'ModelMetadata';
|
|
8442
|
+
name: string;
|
|
8443
|
+
displayName?: string | null;
|
|
8444
|
+
icon?: string | null;
|
|
8445
|
+
}> | null;
|
|
8385
8446
|
};
|
|
8386
8447
|
} | null;
|
|
8387
8448
|
};
|
package/dist/cjs/sdk.js
CHANGED
|
@@ -1188,12 +1188,17 @@ var ListEmbeddersDocument = import_graphql_tag.default`
|
|
|
1188
1188
|
displayName
|
|
1189
1189
|
description
|
|
1190
1190
|
baseUrl
|
|
1191
|
-
models
|
|
1191
|
+
models {
|
|
1192
|
+
name
|
|
1193
|
+
displayName
|
|
1194
|
+
icon
|
|
1195
|
+
}
|
|
1192
1196
|
provider
|
|
1193
1197
|
type
|
|
1194
1198
|
updateTimestamp
|
|
1195
1199
|
status
|
|
1196
1200
|
message
|
|
1201
|
+
icon
|
|
1197
1202
|
}
|
|
1198
1203
|
}
|
|
1199
1204
|
}
|
|
@@ -1211,10 +1216,15 @@ var GetEmbedderDocument = import_graphql_tag.default`
|
|
|
1211
1216
|
displayName
|
|
1212
1217
|
description
|
|
1213
1218
|
baseUrl
|
|
1214
|
-
models
|
|
1219
|
+
models {
|
|
1220
|
+
name
|
|
1221
|
+
displayName
|
|
1222
|
+
icon
|
|
1223
|
+
}
|
|
1215
1224
|
provider
|
|
1216
1225
|
type
|
|
1217
1226
|
updateTimestamp
|
|
1227
|
+
icon
|
|
1218
1228
|
}
|
|
1219
1229
|
}
|
|
1220
1230
|
}
|
|
@@ -1680,12 +1690,18 @@ var ListLlMsDocument = import_graphql_tag.default`
|
|
|
1680
1690
|
displayName
|
|
1681
1691
|
description
|
|
1682
1692
|
baseUrl
|
|
1683
|
-
models
|
|
1693
|
+
models {
|
|
1694
|
+
name
|
|
1695
|
+
displayName
|
|
1696
|
+
icon
|
|
1697
|
+
contextLength
|
|
1698
|
+
}
|
|
1684
1699
|
provider
|
|
1685
1700
|
type
|
|
1686
1701
|
updateTimestamp
|
|
1687
1702
|
status
|
|
1688
1703
|
message
|
|
1704
|
+
icon
|
|
1689
1705
|
}
|
|
1690
1706
|
}
|
|
1691
1707
|
}
|
|
@@ -1703,12 +1719,18 @@ var GetLlmDocument = import_graphql_tag.default`
|
|
|
1703
1719
|
displayName
|
|
1704
1720
|
description
|
|
1705
1721
|
baseUrl
|
|
1706
|
-
models
|
|
1722
|
+
models {
|
|
1723
|
+
name
|
|
1724
|
+
displayName
|
|
1725
|
+
icon
|
|
1726
|
+
contextLength
|
|
1727
|
+
}
|
|
1707
1728
|
provider
|
|
1708
1729
|
type
|
|
1709
1730
|
updateTimestamp
|
|
1710
1731
|
status
|
|
1711
1732
|
message
|
|
1733
|
+
icon
|
|
1712
1734
|
}
|
|
1713
1735
|
}
|
|
1714
1736
|
}
|
|
@@ -2235,7 +2257,12 @@ var ListRagDocument = import_graphql_tag.default`
|
|
|
2235
2257
|
name
|
|
2236
2258
|
namespace
|
|
2237
2259
|
baseUrl
|
|
2238
|
-
models
|
|
2260
|
+
models {
|
|
2261
|
+
name
|
|
2262
|
+
displayName
|
|
2263
|
+
icon
|
|
2264
|
+
contextLength
|
|
2265
|
+
}
|
|
2239
2266
|
provider
|
|
2240
2267
|
type
|
|
2241
2268
|
status
|
|
@@ -2361,7 +2388,12 @@ var GetRagDocument = import_graphql_tag.default`
|
|
|
2361
2388
|
displayName
|
|
2362
2389
|
description
|
|
2363
2390
|
baseUrl
|
|
2364
|
-
models
|
|
2391
|
+
models {
|
|
2392
|
+
name
|
|
2393
|
+
displayName
|
|
2394
|
+
icon
|
|
2395
|
+
contextLength
|
|
2396
|
+
}
|
|
2365
2397
|
provider
|
|
2366
2398
|
type
|
|
2367
2399
|
updateTimestamp
|
|
@@ -2526,12 +2558,17 @@ var ListRerankersDocument = import_graphql_tag.default`
|
|
|
2526
2558
|
displayName
|
|
2527
2559
|
description
|
|
2528
2560
|
baseUrl
|
|
2529
|
-
models
|
|
2561
|
+
models {
|
|
2562
|
+
name
|
|
2563
|
+
displayName
|
|
2564
|
+
icon
|
|
2565
|
+
}
|
|
2530
2566
|
type
|
|
2531
2567
|
provider
|
|
2532
2568
|
updateTimestamp
|
|
2533
2569
|
status
|
|
2534
2570
|
message
|
|
2571
|
+
icon
|
|
2535
2572
|
}
|
|
2536
2573
|
}
|
|
2537
2574
|
}
|
|
@@ -2549,10 +2586,15 @@ var GetRerankerDocument = import_graphql_tag.default`
|
|
|
2549
2586
|
displayName
|
|
2550
2587
|
description
|
|
2551
2588
|
baseUrl
|
|
2552
|
-
models
|
|
2589
|
+
models {
|
|
2590
|
+
name
|
|
2591
|
+
displayName
|
|
2592
|
+
icon
|
|
2593
|
+
}
|
|
2553
2594
|
type
|
|
2554
2595
|
provider
|
|
2555
2596
|
updateTimestamp
|
|
2597
|
+
icon
|
|
2556
2598
|
}
|
|
2557
2599
|
}
|
|
2558
2600
|
}
|
package/dist/esm/sdk.d.ts
CHANGED
|
@@ -1406,11 +1406,12 @@ export type Embedder = {
|
|
|
1406
1406
|
creator?: Maybe<Scalars['String']['output']>;
|
|
1407
1407
|
description?: Maybe<Scalars['String']['output']>;
|
|
1408
1408
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
1409
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
1409
1410
|
id?: Maybe<Scalars['String']['output']>;
|
|
1410
1411
|
labels?: Maybe<Scalars['Map']['output']>;
|
|
1411
1412
|
message?: Maybe<Scalars['String']['output']>;
|
|
1412
1413
|
/** 此Embedder支持调用的模型列表 */
|
|
1413
|
-
models?: Maybe<Array<
|
|
1414
|
+
models?: Maybe<Array<ModelMetadata>>;
|
|
1414
1415
|
name: Scalars['String']['output'];
|
|
1415
1416
|
namespace: Scalars['String']['output'];
|
|
1416
1417
|
/**
|
|
@@ -1791,11 +1792,12 @@ export type Llm = {
|
|
|
1791
1792
|
creator?: Maybe<Scalars['String']['output']>;
|
|
1792
1793
|
description?: Maybe<Scalars['String']['output']>;
|
|
1793
1794
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
1795
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
1794
1796
|
id?: Maybe<Scalars['String']['output']>;
|
|
1795
1797
|
labels?: Maybe<Scalars['Map']['output']>;
|
|
1796
1798
|
message?: Maybe<Scalars['String']['output']>;
|
|
1797
1799
|
/** 此LLM支持调用的模型列表 */
|
|
1798
|
-
models?: Maybe<Array<
|
|
1800
|
+
models?: Maybe<Array<ModelMetadata>>;
|
|
1799
1801
|
name: Scalars['String']['output'];
|
|
1800
1802
|
namespace: Scalars['String']['output'];
|
|
1801
1803
|
/**
|
|
@@ -1852,6 +1854,7 @@ export type LabelSelectorRequirementInput = {
|
|
|
1852
1854
|
values?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1853
1855
|
};
|
|
1854
1856
|
export type ListAgentInvocationLogsInput = {
|
|
1857
|
+
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
1855
1858
|
endTime?: InputMaybe<Scalars['Time']['input']>;
|
|
1856
1859
|
name: Scalars['String']['input'];
|
|
1857
1860
|
namespace: Scalars['String']['input'];
|
|
@@ -2246,6 +2249,13 @@ export type Model = {
|
|
|
2246
2249
|
export type ModelFilesArgs = {
|
|
2247
2250
|
input?: InputMaybe<FileFilter>;
|
|
2248
2251
|
};
|
|
2252
|
+
export type ModelMetadata = {
|
|
2253
|
+
__typename?: 'ModelMetadata';
|
|
2254
|
+
contextLength?: Maybe<Scalars['Int']['output']>;
|
|
2255
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
2256
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
2257
|
+
name: Scalars['String']['output'];
|
|
2258
|
+
};
|
|
2249
2259
|
export type ModelMutation = {
|
|
2250
2260
|
__typename?: 'ModelMutation';
|
|
2251
2261
|
createModel: Model;
|
|
@@ -2851,11 +2861,12 @@ export type Reranker = {
|
|
|
2851
2861
|
creator?: Maybe<Scalars['String']['output']>;
|
|
2852
2862
|
description?: Maybe<Scalars['String']['output']>;
|
|
2853
2863
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
2864
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
2854
2865
|
id?: Maybe<Scalars['String']['output']>;
|
|
2855
2866
|
labels?: Maybe<Scalars['Map']['output']>;
|
|
2856
2867
|
message?: Maybe<Scalars['String']['output']>;
|
|
2857
2868
|
/** 此Reranker支持调用的模型列表 */
|
|
2858
|
-
models?: Maybe<Array<
|
|
2869
|
+
models?: Maybe<Array<ModelMetadata>>;
|
|
2859
2870
|
name: Scalars['String']['output'];
|
|
2860
2871
|
namespace: Scalars['String']['output'];
|
|
2861
2872
|
/**
|
|
@@ -5868,12 +5879,18 @@ export type ListEmbeddersQuery = {
|
|
|
5868
5879
|
displayName?: string | null;
|
|
5869
5880
|
description?: string | null;
|
|
5870
5881
|
baseUrl: string;
|
|
5871
|
-
models?: Array<string> | null;
|
|
5872
5882
|
provider?: string | null;
|
|
5873
5883
|
type?: string | null;
|
|
5874
5884
|
updateTimestamp?: any | null;
|
|
5875
5885
|
status?: string | null;
|
|
5876
5886
|
message?: string | null;
|
|
5887
|
+
icon?: string | null;
|
|
5888
|
+
models?: Array<{
|
|
5889
|
+
__typename?: 'ModelMetadata';
|
|
5890
|
+
name: string;
|
|
5891
|
+
displayName?: string | null;
|
|
5892
|
+
icon?: string | null;
|
|
5893
|
+
}> | null;
|
|
5877
5894
|
} | {
|
|
5878
5895
|
__typename?: 'F';
|
|
5879
5896
|
} | {
|
|
@@ -5939,10 +5956,16 @@ export type GetEmbedderQuery = {
|
|
|
5939
5956
|
displayName?: string | null;
|
|
5940
5957
|
description?: string | null;
|
|
5941
5958
|
baseUrl: string;
|
|
5942
|
-
models?: Array<string> | null;
|
|
5943
5959
|
provider?: string | null;
|
|
5944
5960
|
type?: string | null;
|
|
5945
5961
|
updateTimestamp?: any | null;
|
|
5962
|
+
icon?: string | null;
|
|
5963
|
+
models?: Array<{
|
|
5964
|
+
__typename?: 'ModelMetadata';
|
|
5965
|
+
name: string;
|
|
5966
|
+
displayName?: string | null;
|
|
5967
|
+
icon?: string | null;
|
|
5968
|
+
}> | null;
|
|
5946
5969
|
};
|
|
5947
5970
|
} | null;
|
|
5948
5971
|
};
|
|
@@ -6811,12 +6834,19 @@ export type ListLlMsQuery = {
|
|
|
6811
6834
|
displayName?: string | null;
|
|
6812
6835
|
description?: string | null;
|
|
6813
6836
|
baseUrl: string;
|
|
6814
|
-
models?: Array<string> | null;
|
|
6815
6837
|
provider?: string | null;
|
|
6816
6838
|
type?: string | null;
|
|
6817
6839
|
updateTimestamp?: any | null;
|
|
6818
6840
|
status?: string | null;
|
|
6819
6841
|
message?: string | null;
|
|
6842
|
+
icon?: string | null;
|
|
6843
|
+
models?: Array<{
|
|
6844
|
+
__typename?: 'ModelMetadata';
|
|
6845
|
+
name: string;
|
|
6846
|
+
displayName?: string | null;
|
|
6847
|
+
icon?: string | null;
|
|
6848
|
+
contextLength?: number | null;
|
|
6849
|
+
}> | null;
|
|
6820
6850
|
} | {
|
|
6821
6851
|
__typename?: 'Model';
|
|
6822
6852
|
} | {
|
|
@@ -6870,12 +6900,19 @@ export type GetLlmQuery = {
|
|
|
6870
6900
|
displayName?: string | null;
|
|
6871
6901
|
description?: string | null;
|
|
6872
6902
|
baseUrl: string;
|
|
6873
|
-
models?: Array<string> | null;
|
|
6874
6903
|
provider?: string | null;
|
|
6875
6904
|
type?: string | null;
|
|
6876
6905
|
updateTimestamp?: any | null;
|
|
6877
6906
|
status?: string | null;
|
|
6878
6907
|
message?: string | null;
|
|
6908
|
+
icon?: string | null;
|
|
6909
|
+
models?: Array<{
|
|
6910
|
+
__typename?: 'ModelMetadata';
|
|
6911
|
+
name: string;
|
|
6912
|
+
displayName?: string | null;
|
|
6913
|
+
icon?: string | null;
|
|
6914
|
+
contextLength?: number | null;
|
|
6915
|
+
}> | null;
|
|
6879
6916
|
};
|
|
6880
6917
|
} | null;
|
|
6881
6918
|
};
|
|
@@ -7880,12 +7917,18 @@ export type ListRagQuery = {
|
|
|
7880
7917
|
name: string;
|
|
7881
7918
|
namespace: string;
|
|
7882
7919
|
baseUrl: string;
|
|
7883
|
-
models?: Array<string> | null;
|
|
7884
7920
|
provider?: string | null;
|
|
7885
7921
|
type?: string | null;
|
|
7886
7922
|
status?: string | null;
|
|
7887
7923
|
message?: string | null;
|
|
7888
7924
|
displayName?: string | null;
|
|
7925
|
+
models?: Array<{
|
|
7926
|
+
__typename?: 'ModelMetadata';
|
|
7927
|
+
name: string;
|
|
7928
|
+
displayName?: string | null;
|
|
7929
|
+
icon?: string | null;
|
|
7930
|
+
contextLength?: number | null;
|
|
7931
|
+
}> | null;
|
|
7889
7932
|
};
|
|
7890
7933
|
} | {
|
|
7891
7934
|
__typename?: 'RayCluster';
|
|
@@ -8039,12 +8082,18 @@ export type GetRagQuery = {
|
|
|
8039
8082
|
displayName?: string | null;
|
|
8040
8083
|
description?: string | null;
|
|
8041
8084
|
baseUrl: string;
|
|
8042
|
-
models?: Array<string> | null;
|
|
8043
8085
|
provider?: string | null;
|
|
8044
8086
|
type?: string | null;
|
|
8045
8087
|
updateTimestamp?: any | null;
|
|
8046
8088
|
status?: string | null;
|
|
8047
8089
|
message?: string | null;
|
|
8090
|
+
models?: Array<{
|
|
8091
|
+
__typename?: 'ModelMetadata';
|
|
8092
|
+
name: string;
|
|
8093
|
+
displayName?: string | null;
|
|
8094
|
+
icon?: string | null;
|
|
8095
|
+
contextLength?: number | null;
|
|
8096
|
+
}> | null;
|
|
8048
8097
|
};
|
|
8049
8098
|
metrics: Array<{
|
|
8050
8099
|
__typename?: 'RAGMetric';
|
|
@@ -8335,12 +8384,18 @@ export type ListRerankersQuery = {
|
|
|
8335
8384
|
displayName?: string | null;
|
|
8336
8385
|
description?: string | null;
|
|
8337
8386
|
baseUrl: string;
|
|
8338
|
-
models?: Array<string> | null;
|
|
8339
8387
|
type?: string | null;
|
|
8340
8388
|
provider?: string | null;
|
|
8341
8389
|
updateTimestamp?: any | null;
|
|
8342
8390
|
status?: string | null;
|
|
8343
8391
|
message?: string | null;
|
|
8392
|
+
icon?: string | null;
|
|
8393
|
+
models?: Array<{
|
|
8394
|
+
__typename?: 'ModelMetadata';
|
|
8395
|
+
name: string;
|
|
8396
|
+
displayName?: string | null;
|
|
8397
|
+
icon?: string | null;
|
|
8398
|
+
}> | null;
|
|
8344
8399
|
} | {
|
|
8345
8400
|
__typename?: 'SFT';
|
|
8346
8401
|
} | {
|
|
@@ -8378,10 +8433,16 @@ export type GetRerankerQuery = {
|
|
|
8378
8433
|
displayName?: string | null;
|
|
8379
8434
|
description?: string | null;
|
|
8380
8435
|
baseUrl: string;
|
|
8381
|
-
models?: Array<string> | null;
|
|
8382
8436
|
type?: string | null;
|
|
8383
8437
|
provider?: string | null;
|
|
8384
8438
|
updateTimestamp?: any | null;
|
|
8439
|
+
icon?: string | null;
|
|
8440
|
+
models?: Array<{
|
|
8441
|
+
__typename?: 'ModelMetadata';
|
|
8442
|
+
name: string;
|
|
8443
|
+
displayName?: string | null;
|
|
8444
|
+
icon?: string | null;
|
|
8445
|
+
}> | null;
|
|
8385
8446
|
};
|
|
8386
8447
|
} | null;
|
|
8387
8448
|
};
|
package/dist/esm/sdk.js
CHANGED
|
@@ -221,8 +221,8 @@ export var DeleteDatasourcesDocument = gql(_templateObject46 || (_templateObject
|
|
|
221
221
|
export var ListDatasourcesDocument = gql(_templateObject47 || (_templateObject47 = _taggedTemplateLiteral(["\n query listDatasources($input: ListCommonInput!) {\n Datasource {\n listDatasources(input: $input) {\n totalCount\n hasNextPage\n nodes {\n __typename\n ... on Datasource {\n id\n name\n namespace\n creator\n displayName\n description\n endpoint {\n url\n authSecret {\n kind\n name\n }\n insecure\n }\n type\n oss {\n bucket\n object\n }\n pg {\n database\n }\n web {\n recommendIntervalTime\n }\n creationTimestamp\n updateTimestamp\n status\n message\n }\n }\n }\n }\n}\n "])));
|
|
222
222
|
export var GetDatasourceDocument = gql(_templateObject48 || (_templateObject48 = _taggedTemplateLiteral(["\n query getDatasource($name: String!, $namespace: String!) {\n Datasource {\n getDatasource(name: $name, namespace: $namespace) {\n id\n name\n namespace\n creator\n displayName\n description\n endpoint {\n url\n authSecret {\n kind\n name\n }\n insecure\n }\n type\n oss {\n bucket\n object\n }\n pg {\n database\n }\n web {\n recommendIntervalTime\n }\n creationTimestamp\n updateTimestamp\n status\n message\n }\n }\n}\n "])));
|
|
223
223
|
export var CheckDatasourceDocument = gql(_templateObject49 || (_templateObject49 = _taggedTemplateLiteral(["\n query checkDatasource($input: CreateDatasourceInput!) {\n Datasource {\n checkDatasource(input: $input) {\n name\n namespace\n status\n message\n }\n }\n}\n "])));
|
|
224
|
-
export var ListEmbeddersDocument = gql(_templateObject50 || (_templateObject50 = _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 "])));
|
|
225
|
-
export var GetEmbedderDocument = gql(_templateObject51 || (_templateObject51 = _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 "])));
|
|
224
|
+
export var ListEmbeddersDocument = gql(_templateObject50 || (_templateObject50 = _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 name\n displayName\n icon\n }\n provider\n type\n updateTimestamp\n status\n message\n icon\n }\n }\n }\n }\n}\n "])));
|
|
225
|
+
export var GetEmbedderDocument = gql(_templateObject51 || (_templateObject51 = _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 name\n displayName\n icon\n }\n provider\n type\n updateTimestamp\n icon\n }\n }\n}\n "])));
|
|
226
226
|
export var ListKnowledgeBasesDocument = gql(_templateObject52 || (_templateObject52 = _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 enableMultiModal\n batchSize\n indexHeader\n headers\n status\n reason\n message\n updateTimestamp\n embedder {\n kind\n name\n namespace\n displayName\n }\n embedderType\n model\n vectorStore {\n kind\n name\n }\n }\n }\n }\n }\n}\n "])));
|
|
227
227
|
export var GetKnowledgeBaseDocument = gql(_templateObject53 || (_templateObject53 = _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 enableMultiModal\n batchSize\n indexHeader\n headers\n status\n reason\n message\n updateTimestamp\n embedder {\n kind\n name\n namespace\n displayName\n }\n embedderType\n model\n vectorStore {\n kind\n name\n }\n }\n }\n}\n "])));
|
|
228
228
|
export var CreateKnowledgeBaseDocument = gql(_templateObject54 || (_templateObject54 = _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 enableMultiModal\n indexHeader\n headers\n chunkOverlap\n batchSize\n status\n reason\n message\n updateTimestamp\n embedder {\n kind\n name\n namespace\n displayName\n }\n model\n embedderType\n vectorStore {\n kind\n name\n }\n }\n }\n}\n "])));
|
|
@@ -245,8 +245,8 @@ export var CreateKnowledgeBasePrecisionTestingDocument = gql(_templateObject70 |
|
|
|
245
245
|
export var DeleteKnowledgeBasePrecisionTestingDocument = gql(_templateObject71 || (_templateObject71 = _taggedTemplateLiteral(["\n mutation deleteKnowledgeBasePrecisionTesting($input: DeleteKnowledgeBasePrecisionTestingInput!) {\n KnowledgeBase {\n deleteKnowledgeBasePrecisionTesting(input: $input)\n }\n}\n "])));
|
|
246
246
|
export var GetKnowledgeBasePrecisionTestingDocument = gql(_templateObject72 || (_templateObject72 = _taggedTemplateLiteral(["\n query getKnowledgeBasePrecisionTesting($id: String!) {\n KnowledgeBase {\n getKnowledgeBasePrecisionTesting(id: $id) {\n id\n createdAt\n retrieverConfig {\n searchMode\n scoreThreshold\n numDocuments\n }\n query\n documents {\n ... on Document {\n metadata\n content\n score\n rankScore\n rerankScore\n }\n }\n timeCost\n }\n }\n}\n "])));
|
|
247
247
|
export var ListKnowledgeBasePrecisionTestingDocument = gql(_templateObject73 || (_templateObject73 = _taggedTemplateLiteral(["\n query listKnowledgeBasePrecisionTesting($input: ListKnowledgeBasePrecisionTestingInput!) {\n KnowledgeBase {\n listKnowledgeBasePrecisionTesting(input: $input) {\n totalCount\n hasNextPage\n nodes {\n ... on PrecisionTestingRecord {\n id\n createdAt\n retrieverConfig {\n searchMode\n scoreThreshold\n numDocuments\n }\n query\n documents {\n ... on Document {\n metadata\n content\n score\n rankScore\n rerankScore\n }\n }\n timeCost\n }\n }\n }\n }\n}\n "])));
|
|
248
|
-
export var ListLlMsDocument = gql(_templateObject74 || (_templateObject74 = _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 "])));
|
|
249
|
-
export var GetLlmDocument = gql(_templateObject75 || (_templateObject75 = _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 "])));
|
|
248
|
+
export var ListLlMsDocument = gql(_templateObject74 || (_templateObject74 = _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 name\n displayName\n icon\n contextLength\n }\n provider\n type\n updateTimestamp\n status\n message\n icon\n }\n }\n }\n }\n}\n "])));
|
|
249
|
+
export var GetLlmDocument = gql(_templateObject75 || (_templateObject75 = _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 name\n displayName\n icon\n contextLength\n }\n provider\n type\n updateTimestamp\n status\n message\n icon\n }\n }\n}\n "])));
|
|
250
250
|
export var ListModelsDocument = gql(_templateObject76 || (_templateObject76 = _taggedTemplateLiteral(["\n query listModels($input: ListModelInput!, $filesInput: FileFilter) {\n Model {\n listModels(input: $input) {\n totalCount\n hasNextPage\n nodes {\n __typename\n ... on Model {\n id\n creationTimestamp\n name\n namespace\n systemModel\n labels\n annotations\n creator\n displayName\n description\n status\n message\n types\n updateTimestamp\n huggingFaceRepo\n modelScopeRepo\n revision\n modelSource\n files(input: $filesInput) {\n totalCount\n hasNextPage\n nodes {\n ... on F {\n path\n time\n fileType\n count\n size\n creationTimestamp\n }\n }\n }\n }\n }\n }\n }\n}\n "])));
|
|
251
251
|
export var GetModelDocument = gql(_templateObject77 || (_templateObject77 = _taggedTemplateLiteral(["\n query getModel($name: String!, $namespace: String!, $filesInput: FileFilter) {\n Model {\n getModel(name: $name, namespace: $namespace) {\n id\n creationTimestamp\n name\n namespace\n systemModel\n labels\n annotations\n creator\n displayName\n description\n status\n message\n types\n updateTimestamp\n huggingFaceRepo\n modelScopeRepo\n revision\n modelSource\n files(input: $filesInput) {\n totalCount\n hasNextPage\n nodes {\n ... on F {\n path\n time\n fileType\n count\n size\n creationTimestamp\n }\n }\n }\n }\n }\n}\n "])));
|
|
252
252
|
export var CreateModelDocument = gql(_templateObject78 || (_templateObject78 = _taggedTemplateLiteral(["\n mutation createModel($input: CreateModelInput!) {\n Model {\n createModel(input: $input) {\n id\n creationTimestamp\n name\n namespace\n systemModel\n labels\n annotations\n creator\n displayName\n description\n status\n message\n types\n updateTimestamp\n huggingFaceRepo\n modelScopeRepo\n revision\n modelSource\n }\n }\n}\n "])));
|
|
@@ -266,14 +266,14 @@ export var GetPluginDocument = gql(_templateObject91 || (_templateObject91 = _ta
|
|
|
266
266
|
export var CreatePluginDocument = gql(_templateObject92 || (_templateObject92 = _taggedTemplateLiteral(["\n mutation createPlugin($input: CreatePluginInput!) {\n Plugin {\n createPlugin(input: $input) {\n id\n creationTimestamp\n name\n namespace\n systemPlugin\n labels\n annotations\n creator\n displayName\n description\n type\n icon\n status\n updateTimestamp\n category\n apiDoc\n auth {\n in\n name\n token\n }\n enabled\n }\n }\n}\n "])));
|
|
267
267
|
export var UpdatePluginDocument = gql(_templateObject93 || (_templateObject93 = _taggedTemplateLiteral(["\n mutation updatePlugin($input: UpdatePluginInput!) {\n Plugin {\n updatePlugin(input: $input) {\n id\n creationTimestamp\n name\n namespace\n systemPlugin\n labels\n annotations\n creator\n displayName\n description\n type\n icon\n status\n updateTimestamp\n category\n apiDoc\n auth {\n in\n name\n token\n }\n enabled\n }\n }\n}\n "])));
|
|
268
268
|
export var DeletePluginDocument = gql(_templateObject94 || (_templateObject94 = _taggedTemplateLiteral(["\n mutation deletePlugin($input: DeleteCommonInput!) {\n Plugin {\n deletePlugin(input: $input)\n }\n}\n "])));
|
|
269
|
-
export var ListRagDocument = gql(_templateObject95 || (_templateObject95 = _taggedTemplateLiteral(["\n query listRAG($input: ListRAGInput!) {\n RAG {\n listRAG(input: $input) {\n totalCount\n hasNextPage\n nodes {\n ... on RAG {\n name\n namespace\n creator\n displayName\n description\n creationTimestamp\n completeTimestamp\n storage {\n accessModes\n selector {\n matchLabels\n matchExpressions {\n key\n values\n operator\n }\n }\n resources {\n limits\n requests\n }\n volumeName\n storageClassName\n volumeMode\n datasource {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n dataSourceRef {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n datasets {\n source {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n judgeLLM {\n name\n namespace\n baseUrl\n models\n provider\n type\n status\n message\n displayName\n }\n serviceAccountName\n suspend\n status\n phase\n phaseMessage\n }\n }\n }\n }\n}\n "])));
|
|
270
|
-
export var GetRagDocument = gql(_templateObject96 || (_templateObject96 = _taggedTemplateLiteral(["\n query getRAG($name: String!, $namespace: String!) {\n RAG {\n getRAG(name: $name, namespace: $namespace) {\n name\n namespace\n creator\n displayName\n description\n creationTimestamp\n completeTimestamp\n storage {\n accessModes\n selector {\n matchLabels\n matchExpressions {\n key\n values\n operator\n }\n }\n volumeName\n storageClassName\n volumeMode\n resources {\n limits\n requests\n }\n datasource {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n dataSourceRef {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n serviceAccountName\n suspend\n status\n phase\n phaseMessage\n application {\n metadata {\n name\n namespace\n id\n labels\n annotations\n displayName\n description\n icon\n creator\n creationTimestamp\n updateTimestamp\n isPublic\n status\n }\n prologue\n model\n llm {\n name\n namespace\n kind\n apiGroup\n }\n temperature\n maxLength\n maxTokens\n conversionWindowSize\n knowledgebases {\n name\n namespace\n }\n scoreThreshold\n numDocuments\n docNullReturn\n userPrompt\n showRetrievalInfo\n showNextGuide\n }\n datasets {\n source {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n files {\n path\n fileType\n }\n }\n judgeLLM {\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 metrics {\n metricKind\n parameters {\n key\n value\n }\n toleranceThreshbold\n }\n }\n }\n}\n "])));
|
|
269
|
+
export var ListRagDocument = gql(_templateObject95 || (_templateObject95 = _taggedTemplateLiteral(["\n query listRAG($input: ListRAGInput!) {\n RAG {\n listRAG(input: $input) {\n totalCount\n hasNextPage\n nodes {\n ... on RAG {\n name\n namespace\n creator\n displayName\n description\n creationTimestamp\n completeTimestamp\n storage {\n accessModes\n selector {\n matchLabels\n matchExpressions {\n key\n values\n operator\n }\n }\n resources {\n limits\n requests\n }\n volumeName\n storageClassName\n volumeMode\n datasource {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n dataSourceRef {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n datasets {\n source {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n judgeLLM {\n name\n namespace\n baseUrl\n models {\n name\n displayName\n icon\n contextLength\n }\n provider\n type\n status\n message\n displayName\n }\n serviceAccountName\n suspend\n status\n phase\n phaseMessage\n }\n }\n }\n }\n}\n "])));
|
|
270
|
+
export var GetRagDocument = gql(_templateObject96 || (_templateObject96 = _taggedTemplateLiteral(["\n query getRAG($name: String!, $namespace: String!) {\n RAG {\n getRAG(name: $name, namespace: $namespace) {\n name\n namespace\n creator\n displayName\n description\n creationTimestamp\n completeTimestamp\n storage {\n accessModes\n selector {\n matchLabels\n matchExpressions {\n key\n values\n operator\n }\n }\n volumeName\n storageClassName\n volumeMode\n resources {\n limits\n requests\n }\n datasource {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n dataSourceRef {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n serviceAccountName\n suspend\n status\n phase\n phaseMessage\n application {\n metadata {\n name\n namespace\n id\n labels\n annotations\n displayName\n description\n icon\n creator\n creationTimestamp\n updateTimestamp\n isPublic\n status\n }\n prologue\n model\n llm {\n name\n namespace\n kind\n apiGroup\n }\n temperature\n maxLength\n maxTokens\n conversionWindowSize\n knowledgebases {\n name\n namespace\n }\n scoreThreshold\n numDocuments\n docNullReturn\n userPrompt\n showRetrievalInfo\n showNextGuide\n }\n datasets {\n source {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n files {\n path\n fileType\n }\n }\n judgeLLM {\n name\n namespace\n labels\n annotations\n displayName\n description\n baseUrl\n models {\n name\n displayName\n icon\n contextLength\n }\n provider\n type\n updateTimestamp\n status\n message\n }\n metrics {\n metricKind\n parameters {\n key\n value\n }\n toleranceThreshbold\n }\n }\n }\n}\n "])));
|
|
271
271
|
export var CreateRagDocument = gql(_templateObject97 || (_templateObject97 = _taggedTemplateLiteral(["\n mutation createRAG($input: CreateRAGInput!) {\n RAG {\n createRAG(input: $input) {\n name\n namespace\n creator\n displayName\n description\n creationTimestamp\n completeTimestamp\n storage {\n accessModes\n selector {\n matchLabels\n matchExpressions {\n key\n values\n operator\n }\n }\n volumeName\n storageClassName\n volumeMode\n resources {\n limits\n requests\n }\n datasource {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n dataSourceRef {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n serviceAccountName\n suspend\n status\n phase\n phaseMessage\n }\n }\n}\n "])));
|
|
272
272
|
export var UpdateRagDocument = gql(_templateObject98 || (_templateObject98 = _taggedTemplateLiteral(["\n mutation updateRAG($input: UpdateRAGInput!) {\n RAG {\n updateRAG(input: $input) {\n name\n namespace\n creator\n displayName\n description\n creationTimestamp\n completeTimestamp\n storage {\n accessModes\n selector {\n matchLabels\n matchExpressions {\n key\n values\n operator\n }\n }\n volumeName\n storageClassName\n volumeMode\n resources {\n limits\n requests\n }\n datasource {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n dataSourceRef {\n apiGroup\n kind\n name\n namespace\n displayName\n }\n }\n serviceAccountName\n suspend\n status\n phase\n phaseMessage\n }\n }\n}\n "])));
|
|
273
273
|
export var DeleteRagDocument = gql(_templateObject99 || (_templateObject99 = _taggedTemplateLiteral(["\n mutation deleteRAG($input: DeleteRAGInput!) {\n RAG {\n deleteRAG(input: $input)\n }\n}\n "])));
|
|
274
274
|
export var ListRayClustersDocument = gql(_templateObject100 || (_templateObject100 = _taggedTemplateLiteral(["\n query listRayClusters($input: ListCommonInput!) {\n RayCluster {\n listRayClusters(input: $input) {\n totalCount\n hasNextPage\n nodes {\n __typename\n ... on RayCluster {\n index\n name\n headAddress\n dashboardHost\n pythonVersion\n }\n }\n }\n }\n}\n "])));
|
|
275
|
-
export var ListRerankersDocument = gql(_templateObject101 || (_templateObject101 = _taggedTemplateLiteral(["\n query listRerankers($input: ListCommonInput!) {\n Reranker {\n listRerankers(input: $input) {\n totalCount\n hasNextPage\n nodes {\n ... on Reranker {\n name\n namespace\n labels\n annotations\n displayName\n description\n baseUrl\n models\n type\n provider\n updateTimestamp\n status\n message\n }\n }\n }\n }\n}\n "])));
|
|
276
|
-
export var GetRerankerDocument = gql(_templateObject102 || (_templateObject102 = _taggedTemplateLiteral(["\n query getReranker($name: String!, $namespace: String!) {\n Reranker {\n getReranker(name: $name, namespace: $namespace) {\n name\n namespace\n labels\n annotations\n displayName\n description\n baseUrl\n models\n type\n provider\n updateTimestamp\n }\n }\n}\n "])));
|
|
275
|
+
export var ListRerankersDocument = gql(_templateObject101 || (_templateObject101 = _taggedTemplateLiteral(["\n query listRerankers($input: ListCommonInput!) {\n Reranker {\n listRerankers(input: $input) {\n totalCount\n hasNextPage\n nodes {\n ... on Reranker {\n name\n namespace\n labels\n annotations\n displayName\n description\n baseUrl\n models {\n name\n displayName\n icon\n }\n type\n provider\n updateTimestamp\n status\n message\n icon\n }\n }\n }\n }\n}\n "])));
|
|
276
|
+
export var GetRerankerDocument = gql(_templateObject102 || (_templateObject102 = _taggedTemplateLiteral(["\n query getReranker($name: String!, $namespace: String!) {\n Reranker {\n getReranker(name: $name, namespace: $namespace) {\n name\n namespace\n labels\n annotations\n displayName\n description\n baseUrl\n models {\n name\n displayName\n icon\n }\n type\n provider\n updateTimestamp\n icon\n }\n }\n}\n "])));
|
|
277
277
|
export var ListTuningDataSetDocument = gql(_templateObject103 || (_templateObject103 = _taggedTemplateLiteral(["\n query listTuningDataSet($namespace: String!, $options: ListOptionInput) {\n TuningDataSet {\n listTuningDataSet(namespace: $namespace, options: $options) {\n totalCount\n nodes {\n ... on TuningDataSet {\n ID\n name\n namespace\n creator\n type\n dataType\n createdAt\n updatedAt\n versions {\n totalCount\n nodes {\n ... on TuningVersionedDataset {\n ID\n description\n version\n creator\n createdAt\n updatedAt\n contentCount\n }\n }\n }\n }\n }\n }\n }\n}\n "])));
|
|
278
278
|
export var GetTuningDataSetDocument = gql(_templateObject104 || (_templateObject104 = _taggedTemplateLiteral(["\n query getTuningDataSet($id: String!) {\n TuningDataSet {\n getTuningDataSet(id: $id) {\n ID\n name\n namespace\n creator\n type\n dataType\n createdAt\n updatedAt\n versions {\n totalCount\n nodes {\n ... on TuningVersionedDataset {\n ID\n description\n version\n creator\n createdAt\n updatedAt\n contentCount\n }\n }\n }\n }\n }\n}\n "])));
|
|
279
279
|
export var GetVersionDocument = gql(_templateObject105 || (_templateObject105 = _taggedTemplateLiteral(["\n query getVersion($id: String!) {\n TuningDataSet {\n getVersion(id: $id) {\n ID\n description\n version\n creator\n createdAt\n updatedAt\n contentCount\n files {\n totalCount\n nodes {\n ... on TuningVersionedDatasetFiles {\n ID\n fileName\n size\n count\n status\n createdAt\n updatedAt\n msg\n }\n }\n }\n }\n }\n}\n "])));
|