@yuntijs/arcadia-bff-sdk 1.2.42 → 1.2.44
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/index.d.ts +21 -72
- package/dist/cjs/sdk.d.ts +81 -420
- package/dist/cjs/sdk.js +37 -133
- package/dist/cjs/taro.d.ts +15 -54
- package/dist/esm/index.d.ts +21 -72
- package/dist/esm/sdk.d.ts +81 -420
- package/dist/esm/sdk.js +70 -88
- package/dist/esm/taro.d.ts +15 -54
- 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
|
@@ -421,29 +421,6 @@ export type CreateDatasourceInput = {
|
|
|
421
421
|
/** 数据源为Web数据时的输入 */
|
|
422
422
|
webinput?: InputMaybe<WebInput>;
|
|
423
423
|
};
|
|
424
|
-
export type CreateEmbedderInput = {
|
|
425
|
-
/** 模型服务资源注释 */
|
|
426
|
-
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
427
|
-
/** 模型服务资源描述 */
|
|
428
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
429
|
-
/** 模型服务资源展示名称作为显示,并提供编辑 */
|
|
430
|
-
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
431
|
-
/** 模型服务访问信息(必填) */
|
|
432
|
-
endpointinput: EndpointInput;
|
|
433
|
-
/** 模型服务资源标签 */
|
|
434
|
-
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
435
|
-
/** 此Embedder支持调用的模型列表 */
|
|
436
|
-
models?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
437
|
-
/** 模型服务资源名称(不可同名) */
|
|
438
|
-
name: Scalars['String']['input'];
|
|
439
|
-
/** 模型服务创建命名空间 */
|
|
440
|
-
namespace: Scalars['String']['input'];
|
|
441
|
-
/**
|
|
442
|
-
* 向量化模型服务接口类型
|
|
443
|
-
* 规则: 目前支持 zhipuai,openai两种接口类型
|
|
444
|
-
*/
|
|
445
|
-
type?: InputMaybe<Scalars['String']['input']>;
|
|
446
|
-
};
|
|
447
424
|
/** 创建知识库的输入 */
|
|
448
425
|
export type CreateKnowledgeBaseInput = {
|
|
449
426
|
/** 知识库资源注释 */
|
|
@@ -461,8 +438,8 @@ export type CreateKnowledgeBaseInput = {
|
|
|
461
438
|
/** 知识库资源展示名称作为显示,并提供编辑 */
|
|
462
439
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
463
440
|
/** embedder指当前知识库使用的embedding向量化模型 */
|
|
464
|
-
embedder:
|
|
465
|
-
/**
|
|
441
|
+
embedder: TypedObjectReferenceInput;
|
|
442
|
+
/** 选择的文件列表 */
|
|
466
443
|
fileGroups?: InputMaybe<Array<Filegroupinput>>;
|
|
467
444
|
/** 知识库资源标签 */
|
|
468
445
|
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
@@ -473,29 +450,6 @@ export type CreateKnowledgeBaseInput = {
|
|
|
473
450
|
/** "向量数据库(目前不需要填写,直接使用系统默认的向量数据库) */
|
|
474
451
|
vectorStore?: InputMaybe<TypedObjectReferenceInput>;
|
|
475
452
|
};
|
|
476
|
-
export type CreateLlmInput = {
|
|
477
|
-
/** 模型服务资源注释 */
|
|
478
|
-
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
479
|
-
/** 模型服务资源描述 */
|
|
480
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
481
|
-
/** 模型服务资源展示名称作为显示,并提供编辑 */
|
|
482
|
-
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
483
|
-
/** 模型服务访问信息(必填) */
|
|
484
|
-
endpointinput: EndpointInput;
|
|
485
|
-
/** 模型服务资源标签 */
|
|
486
|
-
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
487
|
-
/** 此LLM支持调用的模型列表 */
|
|
488
|
-
models?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
489
|
-
/** 模型服务资源名称(不可同名) */
|
|
490
|
-
name: Scalars['String']['input'];
|
|
491
|
-
/** 模型服务创建命名空间 */
|
|
492
|
-
namespace: Scalars['String']['input'];
|
|
493
|
-
/**
|
|
494
|
-
* 模型服务接口类型
|
|
495
|
-
* 规则: 目前支持 zhipuai,openai两种接口类型
|
|
496
|
-
*/
|
|
497
|
-
type?: InputMaybe<Scalars['String']['input']>;
|
|
498
|
-
};
|
|
499
453
|
/** 创建模型的输入 */
|
|
500
454
|
export type CreateModelInput = {
|
|
501
455
|
/** 模型资源描述 */
|
|
@@ -525,46 +479,18 @@ export type CreateModelInput = {
|
|
|
525
479
|
types: Scalars['String']['input'];
|
|
526
480
|
};
|
|
527
481
|
export type CreateModelServiceInput = {
|
|
528
|
-
/**
|
|
529
|
-
|
|
530
|
-
/**
|
|
531
|
-
* 模型服务 API 类型
|
|
532
|
-
* 规则:支持 openai, zhipuai 两种类型
|
|
533
|
-
*/
|
|
534
|
-
apiType?: InputMaybe<Scalars['String']['input']>;
|
|
482
|
+
/** 访问模型服务的apikey */
|
|
483
|
+
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
535
484
|
/** 模型资源描述 */
|
|
536
485
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
537
486
|
/** 模型资源展示名称作为显示,并提供编辑 */
|
|
538
487
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
539
|
-
/**
|
|
540
|
-
* 模型服务的Embedding模型列表
|
|
541
|
-
* 规则;如果不填或者为空,则按照模型的API类型获取默认的模型列表
|
|
542
|
-
*/
|
|
543
|
-
embeddingModels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
544
|
-
/** 模型服务终端输入 */
|
|
545
|
-
endpoint: EndpointInput;
|
|
546
|
-
/** 模型资源标签 */
|
|
547
|
-
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
548
|
-
/**
|
|
549
|
-
* 模型服务的大语言模型列表
|
|
550
|
-
* 规则;如果不填或者为空,则按照模型的API类型获取默认的模型列表
|
|
551
|
-
*/
|
|
552
|
-
llmModels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
553
488
|
/** 模型服务资源名称(不可同名) */
|
|
554
489
|
name: Scalars['String']['input'];
|
|
555
490
|
/** 模型服务创建命名空间 */
|
|
556
491
|
namespace: Scalars['String']['input'];
|
|
557
|
-
/**
|
|
558
|
-
|
|
559
|
-
* 规则;如果不填或者为空,则按照模型的API类型获取默认的模型列表
|
|
560
|
-
*/
|
|
561
|
-
rerankingModels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
562
|
-
/**
|
|
563
|
-
* 模型服务能力类型,支持 llm, embedding, reranking 三种模型类型
|
|
564
|
-
* 规则: 如果该模型支持多种模型类型,则可多选。多选后组成的字段通过逗号隔开。如 "llm,embedding"
|
|
565
|
-
* 规则:尚未支持 reranking 与其他类型并行
|
|
566
|
-
*/
|
|
567
|
-
types?: InputMaybe<Scalars['String']['input']>;
|
|
492
|
+
/** 模型服务供应商 */
|
|
493
|
+
provider: Scalars['String']['input'];
|
|
568
494
|
};
|
|
569
495
|
export type CreatePluginInput = {
|
|
570
496
|
/** 添加一些辅助性记录信息 */
|
|
@@ -618,29 +544,6 @@ export type CreateRagInput = {
|
|
|
618
544
|
storage?: InputMaybe<PersistentVolumeClaimSpecInput>;
|
|
619
545
|
suspend?: InputMaybe<Scalars['Boolean']['input']>;
|
|
620
546
|
};
|
|
621
|
-
export type CreateRerankerInput = {
|
|
622
|
-
/** 模型服务资源注释 */
|
|
623
|
-
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
624
|
-
/** 模型服务资源描述 */
|
|
625
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
626
|
-
/** 模型服务资源展示名称作为显示,并提供编辑 */
|
|
627
|
-
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
628
|
-
/** 模型服务访问信息(必填) */
|
|
629
|
-
endpointinput: EndpointInput;
|
|
630
|
-
/** 模型服务资源标签 */
|
|
631
|
-
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
632
|
-
/** 此Reranker支持调用的模型列表 */
|
|
633
|
-
models?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
634
|
-
/** 模型服务资源名称(不可同名) */
|
|
635
|
-
name: Scalars['String']['input'];
|
|
636
|
-
/** 模型服务创建命名空间 */
|
|
637
|
-
namespace: Scalars['String']['input'];
|
|
638
|
-
/**
|
|
639
|
-
* Reranker 类型
|
|
640
|
-
* 规则: 目前仅支持 bge 一种
|
|
641
|
-
*/
|
|
642
|
-
type?: InputMaybe<Scalars['String']['input']>;
|
|
643
|
-
};
|
|
644
547
|
export type CreateVersionedDatasetInput = {
|
|
645
548
|
/** 一些备注用的注视信息,或者记录一个简单的配置 */
|
|
646
549
|
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
@@ -1160,21 +1063,6 @@ export type Embedder = {
|
|
|
1160
1063
|
type?: Maybe<Scalars['String']['output']>;
|
|
1161
1064
|
updateTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
1162
1065
|
};
|
|
1163
|
-
export type EmbedderMutation = {
|
|
1164
|
-
__typename?: 'EmbedderMutation';
|
|
1165
|
-
createEmbedder: Embedder;
|
|
1166
|
-
deleteEmbedders?: Maybe<Scalars['Void']['output']>;
|
|
1167
|
-
updateEmbedder: Embedder;
|
|
1168
|
-
};
|
|
1169
|
-
export type EmbedderMutationCreateEmbedderArgs = {
|
|
1170
|
-
input: CreateEmbedderInput;
|
|
1171
|
-
};
|
|
1172
|
-
export type EmbedderMutationDeleteEmbeddersArgs = {
|
|
1173
|
-
input?: InputMaybe<DeleteCommonInput>;
|
|
1174
|
-
};
|
|
1175
|
-
export type EmbedderMutationUpdateEmbedderArgs = {
|
|
1176
|
-
input?: InputMaybe<UpdateEmbedderInput>;
|
|
1177
|
-
};
|
|
1178
1066
|
export type EmbedderQuery = {
|
|
1179
1067
|
__typename?: 'EmbedderQuery';
|
|
1180
1068
|
getEmbedder: Embedder;
|
|
@@ -1267,7 +1155,9 @@ export type FileWithVersion = {
|
|
|
1267
1155
|
version?: Maybe<Scalars['String']['output']>;
|
|
1268
1156
|
};
|
|
1269
1157
|
export type FileWithVersionInput = {
|
|
1158
|
+
/** 文件路径 */
|
|
1270
1159
|
path: Scalars['String']['input'];
|
|
1160
|
+
/** 文件版本 */
|
|
1271
1161
|
version?: InputMaybe<Scalars['String']['input']>;
|
|
1272
1162
|
};
|
|
1273
1163
|
/** GPTCategory in gpt store */
|
|
@@ -1444,6 +1334,7 @@ export type ListCommonInput = {
|
|
|
1444
1334
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
1445
1335
|
/** 标签选择器 */
|
|
1446
1336
|
labelSelector?: InputMaybe<Scalars['String']['input']>;
|
|
1337
|
+
/** 资源所在的命名空间 */
|
|
1447
1338
|
namespace: Scalars['String']['input'];
|
|
1448
1339
|
/**
|
|
1449
1340
|
* 分页页码,
|
|
@@ -1455,6 +1346,7 @@ export type ListCommonInput = {
|
|
|
1455
1346
|
* 规则: -1,返回全部
|
|
1456
1347
|
*/
|
|
1457
1348
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1349
|
+
selectCond?: InputMaybe<SelectCond>;
|
|
1458
1350
|
};
|
|
1459
1351
|
/** 数据集分页列表查询的输入 */
|
|
1460
1352
|
export type ListDatasetInput = {
|
|
@@ -1538,19 +1430,17 @@ export type ListModelInput = {
|
|
|
1538
1430
|
systemModel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1539
1431
|
};
|
|
1540
1432
|
export type ListModelServiceInput = {
|
|
1541
|
-
/**
|
|
1542
|
-
|
|
1543
|
-
* 规则:
|
|
1544
|
-
* - 为空默认不过滤
|
|
1545
|
-
* - openai 则仅返回接口类型类型为openai的模型服务
|
|
1546
|
-
* - zhipuai 则仅返回接口类型类型为zhipuai的模型服务
|
|
1547
|
-
*/
|
|
1548
|
-
apiType?: InputMaybe<Scalars['String']['input']>;
|
|
1433
|
+
/** 字段选择器 */
|
|
1434
|
+
fieldSelector?: InputMaybe<Scalars['String']['input']>;
|
|
1549
1435
|
/** 关键词搜索 */
|
|
1550
1436
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
1437
|
+
/** 标签选择器 */
|
|
1438
|
+
labelSelector?: InputMaybe<Scalars['String']['input']>;
|
|
1551
1439
|
namespace: Scalars['String']['input'];
|
|
1552
1440
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1553
1441
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1442
|
+
/** 模型服务供应商 */
|
|
1443
|
+
provider?: InputMaybe<Scalars['String']['input']>;
|
|
1554
1444
|
/**
|
|
1555
1445
|
* 模型服务供应商类型
|
|
1556
1446
|
* 规则:
|
|
@@ -1559,6 +1449,7 @@ export type ListModelServiceInput = {
|
|
|
1559
1449
|
* - 3rd_party 则仅返回第三方模型服务
|
|
1560
1450
|
*/
|
|
1561
1451
|
providerType?: InputMaybe<Scalars['String']['input']>;
|
|
1452
|
+
selectCond?: InputMaybe<SelectCond>;
|
|
1562
1453
|
/**
|
|
1563
1454
|
* 模型服务的类型
|
|
1564
1455
|
* 规则:
|
|
@@ -1604,13 +1495,7 @@ export type ListPluginInput = {
|
|
|
1604
1495
|
* 规则: 默认10
|
|
1605
1496
|
*/
|
|
1606
1497
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1607
|
-
|
|
1608
|
-
* 是否包含系统提供的插件
|
|
1609
|
-
* 规则: 为 "all" 时,提供包括该 ns 及系统插件在内的全部插件
|
|
1610
|
-
* 规则: 为 "system_only" 时,只展示系统插件。不展示 ns 内对应的插件
|
|
1611
|
-
* 规则: 默认为 "namespace_only",不展示系统插件
|
|
1612
|
-
*/
|
|
1613
|
-
selectCondition?: InputMaybe<Scalars['String']['input']>;
|
|
1498
|
+
selectCond?: InputMaybe<SelectCond>;
|
|
1614
1499
|
};
|
|
1615
1500
|
export type ListRagInput = {
|
|
1616
1501
|
appName: Scalars['String']['input'];
|
|
@@ -1763,11 +1648,6 @@ export type ModelQueryListModelsArgs = {
|
|
|
1763
1648
|
export type ModelService = {
|
|
1764
1649
|
__typename?: 'ModelService';
|
|
1765
1650
|
annotations?: Maybe<Scalars['Map']['output']>;
|
|
1766
|
-
/**
|
|
1767
|
-
* 模型服务 API 类型
|
|
1768
|
-
* 规则:支持 openai, zhipuai,dashscope,gemini 四种类型
|
|
1769
|
-
*/
|
|
1770
|
-
apiType?: Maybe<Scalars['String']['output']>;
|
|
1771
1651
|
/** 服务地址: 仅针对第三方模型服务 */
|
|
1772
1652
|
baseUrl: Scalars['String']['output'];
|
|
1773
1653
|
/** 模型服务的创建和更新时间 */
|
|
@@ -1791,10 +1671,12 @@ export type ModelService = {
|
|
|
1791
1671
|
message?: Maybe<Scalars['String']['output']>;
|
|
1792
1672
|
name: Scalars['String']['output'];
|
|
1793
1673
|
namespace: Scalars['String']['output'];
|
|
1674
|
+
/** 模型服务供应商(第三方) */
|
|
1675
|
+
provider?: Maybe<Scalars['String']['output']>;
|
|
1794
1676
|
/**
|
|
1795
1677
|
* 模型服务供应商的类型
|
|
1796
|
-
* 规则: 3rd_party 第三方
|
|
1797
1678
|
* 规则: worker 本地
|
|
1679
|
+
* 规则: 3rd_party 第三方
|
|
1798
1680
|
*/
|
|
1799
1681
|
providerType?: Maybe<Scalars['String']['output']>;
|
|
1800
1682
|
/**
|
|
@@ -1813,10 +1695,7 @@ export type ModelService = {
|
|
|
1813
1695
|
* - Error: 异常 (本地模型服务)
|
|
1814
1696
|
*/
|
|
1815
1697
|
status?: Maybe<Scalars['String']['output']>;
|
|
1816
|
-
/**
|
|
1817
|
-
* 模型服务能力类型,支持 llm 和 embedding 两种模型类型
|
|
1818
|
-
* 规则: 如果该模型支持多种模型类型,则可多选。多选后组成的字段通过逗号隔开。如 "llm,embedding"
|
|
1819
|
-
*/
|
|
1698
|
+
/** 模型服务能力类型: llm,embedding,reranking */
|
|
1820
1699
|
types?: Maybe<Scalars['String']['output']>;
|
|
1821
1700
|
updateTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
1822
1701
|
};
|
|
@@ -1835,10 +1714,23 @@ export type ModelServiceMutationDeleteModelServiceArgs = {
|
|
|
1835
1714
|
export type ModelServiceMutationUpdateModelServiceArgs = {
|
|
1836
1715
|
input?: InputMaybe<UpdateModelServiceInput>;
|
|
1837
1716
|
};
|
|
1717
|
+
export type ModelServiceProvider = {
|
|
1718
|
+
__typename?: 'ModelServiceProvider';
|
|
1719
|
+
apiType: Scalars['String']['output'];
|
|
1720
|
+
baseUrl: Scalars['String']['output'];
|
|
1721
|
+
description: Scalars['String']['output'];
|
|
1722
|
+
displayName: Scalars['String']['output'];
|
|
1723
|
+
embeddingModels: Array<Scalars['String']['output']>;
|
|
1724
|
+
llmModels: Array<Scalars['String']['output']>;
|
|
1725
|
+
modelTypes: Scalars['String']['output'];
|
|
1726
|
+
name: Scalars['String']['output'];
|
|
1727
|
+
rerankingModels: Array<Scalars['String']['output']>;
|
|
1728
|
+
};
|
|
1838
1729
|
export type ModelServiceQuery = {
|
|
1839
1730
|
__typename?: 'ModelServiceQuery';
|
|
1840
1731
|
checkModelService: ModelService;
|
|
1841
1732
|
getModelService: ModelService;
|
|
1733
|
+
listModelServiceProviders: Array<Maybe<ModelServiceProvider>>;
|
|
1842
1734
|
listModelServices: PaginatedResult;
|
|
1843
1735
|
};
|
|
1844
1736
|
export type ModelServiceQueryCheckModelServiceArgs = {
|
|
@@ -1856,13 +1748,11 @@ export type Mutation = {
|
|
|
1856
1748
|
Agent?: Maybe<AgentMutation>;
|
|
1857
1749
|
Dataset?: Maybe<DatasetMutation>;
|
|
1858
1750
|
Datasource?: Maybe<DatasourceMutation>;
|
|
1859
|
-
Embedder?: Maybe<EmbedderMutation>;
|
|
1860
1751
|
KnowledgeBase?: Maybe<KnowledgeBaseMutation>;
|
|
1861
1752
|
Model?: Maybe<ModelMutation>;
|
|
1862
1753
|
ModelService?: Maybe<ModelServiceMutation>;
|
|
1863
1754
|
Plugin?: Maybe<PluginMutation>;
|
|
1864
1755
|
RAG?: Maybe<RagMutation>;
|
|
1865
|
-
Reranker?: Maybe<RerankerMutation>;
|
|
1866
1756
|
VersionedDataset?: Maybe<VersionedDatasetMutation>;
|
|
1867
1757
|
Worker?: Maybe<WorkerMutation>;
|
|
1868
1758
|
Workflow?: Maybe<WorkflowMutation>;
|
|
@@ -2323,21 +2213,6 @@ export type Reranker = {
|
|
|
2323
2213
|
type?: Maybe<Scalars['String']['output']>;
|
|
2324
2214
|
updateTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
2325
2215
|
};
|
|
2326
|
-
export type RerankerMutation = {
|
|
2327
|
-
__typename?: 'RerankerMutation';
|
|
2328
|
-
createReranker: Reranker;
|
|
2329
|
-
deleteRerankers?: Maybe<Scalars['Void']['output']>;
|
|
2330
|
-
updateReranker: Reranker;
|
|
2331
|
-
};
|
|
2332
|
-
export type RerankerMutationCreateRerankerArgs = {
|
|
2333
|
-
input: CreateRerankerInput;
|
|
2334
|
-
};
|
|
2335
|
-
export type RerankerMutationDeleteRerankersArgs = {
|
|
2336
|
-
input?: InputMaybe<DeleteCommonInput>;
|
|
2337
|
-
};
|
|
2338
|
-
export type RerankerMutationUpdateRerankerArgs = {
|
|
2339
|
-
input?: InputMaybe<UpdateRerankerInput>;
|
|
2340
|
-
};
|
|
2341
2216
|
export type RerankerQuery = {
|
|
2342
2217
|
__typename?: 'RerankerQuery';
|
|
2343
2218
|
getReranker: Reranker;
|
|
@@ -2381,6 +2256,14 @@ export type ResourcesInput = {
|
|
|
2381
2256
|
/** gpu配置 */
|
|
2382
2257
|
nvidiaGPU?: InputMaybe<Scalars['String']['input']>;
|
|
2383
2258
|
};
|
|
2259
|
+
export declare enum SelectCond {
|
|
2260
|
+
/** 提供包括该 ns 及官方资源在内的所有资源 */
|
|
2261
|
+
All = "ALL",
|
|
2262
|
+
/** 仅展示ns内资源(Default) */
|
|
2263
|
+
NamespaceOnly = "NAMESPACE_ONLY",
|
|
2264
|
+
/** 仅提供官方资源。不展示 ns 内对应的资源 */
|
|
2265
|
+
SystemOnly = "SYSTEM_ONLY"
|
|
2266
|
+
}
|
|
2384
2267
|
export type Selector = {
|
|
2385
2268
|
__typename?: 'Selector';
|
|
2386
2269
|
matchExpressions?: Maybe<Array<Maybe<LabelSelectorRequirement>>>;
|
|
@@ -2574,29 +2457,6 @@ export type UpdateDatasourceInput = {
|
|
|
2574
2457
|
/** 数据源为Web数据时的输入 */
|
|
2575
2458
|
webinput?: InputMaybe<WebInput>;
|
|
2576
2459
|
};
|
|
2577
|
-
export type UpdateEmbedderInput = {
|
|
2578
|
-
/** 模型服务资源注释 */
|
|
2579
|
-
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
2580
|
-
/** 模型服务资源描述 */
|
|
2581
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
2582
|
-
/** 模型服务资源展示名称作为显示,并提供编辑 */
|
|
2583
|
-
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
2584
|
-
/** 模型服务访问信息 */
|
|
2585
|
-
endpointinput?: InputMaybe<EndpointInput>;
|
|
2586
|
-
/** 模型服务资源标签 */
|
|
2587
|
-
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
2588
|
-
/** 此Embedder支持调用的模型列表 */
|
|
2589
|
-
models?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2590
|
-
/** 待修改模型服务资源名称(必填) */
|
|
2591
|
-
name: Scalars['String']['input'];
|
|
2592
|
-
/** 待修改模型服务创建命名空间(必填) */
|
|
2593
|
-
namespace: Scalars['String']['input'];
|
|
2594
|
-
/**
|
|
2595
|
-
* 向量化模型服务接口类型
|
|
2596
|
-
* 规则: 目前支持 zhipuai,openai两种接口类型
|
|
2597
|
-
*/
|
|
2598
|
-
type?: InputMaybe<Scalars['String']['input']>;
|
|
2599
|
-
};
|
|
2600
2460
|
/** 知识库更新的输入 */
|
|
2601
2461
|
export type UpdateKnowledgeBaseInput = {
|
|
2602
2462
|
/** 知识库资源注释 */
|
|
@@ -2611,7 +2471,7 @@ export type UpdateKnowledgeBaseInput = {
|
|
|
2611
2471
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
2612
2472
|
/** 如不更新,则为空 */
|
|
2613
2473
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
2614
|
-
/**
|
|
2474
|
+
/** 更新选择的文件列表 */
|
|
2615
2475
|
fileGroups?: InputMaybe<Array<Filegroupinput>>;
|
|
2616
2476
|
/** 知识库资源标签 */
|
|
2617
2477
|
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
@@ -2620,29 +2480,6 @@ export type UpdateKnowledgeBaseInput = {
|
|
|
2620
2480
|
/** 知识库创建命名空间 */
|
|
2621
2481
|
namespace: Scalars['String']['input'];
|
|
2622
2482
|
};
|
|
2623
|
-
export type UpdateLlmInput = {
|
|
2624
|
-
/** 模型服务资源注释 */
|
|
2625
|
-
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
2626
|
-
/** 模型服务资源描述 */
|
|
2627
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
2628
|
-
/** 模型服务资源展示名称作为显示,并提供编辑 */
|
|
2629
|
-
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
2630
|
-
/** 模型服务访问信息 */
|
|
2631
|
-
endpointinput?: InputMaybe<EndpointInput>;
|
|
2632
|
-
/** 模型服务资源标签 */
|
|
2633
|
-
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
2634
|
-
/** 此LLM支持调用的模型列表 */
|
|
2635
|
-
models?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2636
|
-
/** 待修改模型服务资源名称(必填) */
|
|
2637
|
-
name: Scalars['String']['input'];
|
|
2638
|
-
/** 待修改模型服务创建命名空间(必填) */
|
|
2639
|
-
namespace: Scalars['String']['input'];
|
|
2640
|
-
/**
|
|
2641
|
-
* 模型服务接口类型
|
|
2642
|
-
* 规则: 目前支持 zhipuai,openai两种接口类型
|
|
2643
|
-
*/
|
|
2644
|
-
type?: InputMaybe<Scalars['String']['input']>;
|
|
2645
|
-
};
|
|
2646
2483
|
/** 模型更新的输入 */
|
|
2647
2484
|
export type UpdateModelInput = {
|
|
2648
2485
|
/** 模型资源注释 */
|
|
@@ -2676,46 +2513,16 @@ export type UpdateModelInput = {
|
|
|
2676
2513
|
types?: InputMaybe<Scalars['String']['input']>;
|
|
2677
2514
|
};
|
|
2678
2515
|
export type UpdateModelServiceInput = {
|
|
2679
|
-
/**
|
|
2680
|
-
|
|
2681
|
-
/**
|
|
2682
|
-
* 模型服务 API 类型
|
|
2683
|
-
* 规则:支持 openai, zhipuai 两种类型
|
|
2684
|
-
*/
|
|
2685
|
-
apiType?: InputMaybe<Scalars['String']['input']>;
|
|
2516
|
+
/** 访问模型服务的apikey */
|
|
2517
|
+
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
2686
2518
|
/** 模型资源描述 */
|
|
2687
2519
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
2688
2520
|
/** 模型资源展示名称作为显示,并提供编辑 */
|
|
2689
2521
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
2690
|
-
/**
|
|
2691
|
-
* 模型服务的Embedding模型列表
|
|
2692
|
-
* 规则;如果不填或者为空,则按照模型的API类型获取默认的模型列表
|
|
2693
|
-
*/
|
|
2694
|
-
embeddingModels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2695
|
-
/** 模型服务终端输入 */
|
|
2696
|
-
endpoint: EndpointInput;
|
|
2697
|
-
/** 模型资标签 */
|
|
2698
|
-
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
2699
|
-
/**
|
|
2700
|
-
* 模型服务的大语言模型列表
|
|
2701
|
-
* 规则;如果不填或者为空,则按照模型的API类型获取默认的模型列表
|
|
2702
|
-
*/
|
|
2703
|
-
llmModels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2704
2522
|
/** 模型资源名称(不可同名) */
|
|
2705
2523
|
name: Scalars['String']['input'];
|
|
2706
2524
|
/** 模型创建命名空间 */
|
|
2707
2525
|
namespace: Scalars['String']['input'];
|
|
2708
|
-
/**
|
|
2709
|
-
* 模型服务的Reranking模型列表
|
|
2710
|
-
* 规则;如果不填或者为空,则按照模型的API类型获取默认的模型列表
|
|
2711
|
-
*/
|
|
2712
|
-
rerankingModels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2713
|
-
/**
|
|
2714
|
-
* 模型服务能力类型,支持 llm, embedding, reranking 三种模型类型
|
|
2715
|
-
* 规则: 如果该模型支持多种模型类型,则可多选。多选后组成的字段通过逗号隔开。如 "llm,embedding"
|
|
2716
|
-
* 规则:尚未支持 reranking 与其他类型并行
|
|
2717
|
-
*/
|
|
2718
|
-
types?: InputMaybe<Scalars['String']['input']>;
|
|
2719
2526
|
};
|
|
2720
2527
|
export type UpdatePluginInput = {
|
|
2721
2528
|
/** 添加一些辅助性记录信息,如果要更新,请传递完整内容 */
|
|
@@ -2764,29 +2571,6 @@ export type UpdateRagInput = {
|
|
|
2764
2571
|
storage?: InputMaybe<PersistentVolumeClaimSpecInput>;
|
|
2765
2572
|
suspend?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2766
2573
|
};
|
|
2767
|
-
export type UpdateRerankerInput = {
|
|
2768
|
-
/** 模型服务资源注释 */
|
|
2769
|
-
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
2770
|
-
/** 模型服务资源描述 */
|
|
2771
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
2772
|
-
/** 模型服务资源展示名称作为显示,并提供编辑 */
|
|
2773
|
-
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
2774
|
-
/** 模型服务访问信息 */
|
|
2775
|
-
endpointinput?: InputMaybe<EndpointInput>;
|
|
2776
|
-
/** 模型服务资源标签 */
|
|
2777
|
-
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
2778
|
-
/** 此Reranker支持调用的模型列表 */
|
|
2779
|
-
models?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2780
|
-
/** 待修改模型服务资源名称(必填) */
|
|
2781
|
-
name: Scalars['String']['input'];
|
|
2782
|
-
/** 待修改模型服务创建命名空间(必填) */
|
|
2783
|
-
namespace: Scalars['String']['input'];
|
|
2784
|
-
/**
|
|
2785
|
-
* Reranker 类型
|
|
2786
|
-
* 规则: 目前仅支持 bge 一种
|
|
2787
|
-
*/
|
|
2788
|
-
type?: InputMaybe<Scalars['String']['input']>;
|
|
2789
|
-
};
|
|
2790
2574
|
export type UpdateVersionedDatasetInput = {
|
|
2791
2575
|
/** 传递方式同label */
|
|
2792
2576
|
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
@@ -3084,6 +2868,8 @@ export type Workflow = {
|
|
|
3084
2868
|
id?: Maybe<Scalars['String']['output']>;
|
|
3085
2869
|
/** 一些用于标记,选择的的标签 */
|
|
3086
2870
|
labels?: Maybe<Scalars['Map']['output']>;
|
|
2871
|
+
/** 状态的详细信息 */
|
|
2872
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3087
2873
|
/**
|
|
3088
2874
|
* 应用名称
|
|
3089
2875
|
* 规则: 遵循 k8s 命名
|
|
@@ -3192,11 +2978,10 @@ export type Filegroupdetail = {
|
|
|
3192
2978
|
};
|
|
3193
2979
|
/** 源文件输入 */
|
|
3194
2980
|
export type Filegroupinput = {
|
|
2981
|
+
/** 文件列表 */
|
|
3195
2982
|
files?: InputMaybe<Array<FileWithVersionInput>>;
|
|
3196
|
-
/** 路径 */
|
|
3197
|
-
path?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3198
2983
|
/** 数据源字段 */
|
|
3199
|
-
source
|
|
2984
|
+
source?: InputMaybe<TypedObjectReferenceInput>;
|
|
3200
2985
|
};
|
|
3201
2986
|
export type CreateAgentMutationVariables = Exact<{
|
|
3202
2987
|
input: CreateAgentMetadataInput;
|
|
@@ -4543,66 +4328,6 @@ export type CheckDatasourceQuery = {
|
|
|
4543
4328
|
};
|
|
4544
4329
|
} | null;
|
|
4545
4330
|
};
|
|
4546
|
-
export type CreateEmbedderMutationVariables = Exact<{
|
|
4547
|
-
input: CreateEmbedderInput;
|
|
4548
|
-
}>;
|
|
4549
|
-
export type CreateEmbedderMutation = {
|
|
4550
|
-
__typename?: 'Mutation';
|
|
4551
|
-
Embedder?: {
|
|
4552
|
-
__typename?: 'EmbedderMutation';
|
|
4553
|
-
createEmbedder: {
|
|
4554
|
-
__typename?: 'Embedder';
|
|
4555
|
-
name: string;
|
|
4556
|
-
namespace: string;
|
|
4557
|
-
labels?: any | null;
|
|
4558
|
-
annotations?: any | null;
|
|
4559
|
-
displayName?: string | null;
|
|
4560
|
-
description?: string | null;
|
|
4561
|
-
type?: string | null;
|
|
4562
|
-
baseUrl: string;
|
|
4563
|
-
models?: Array<string> | null;
|
|
4564
|
-
provider?: string | null;
|
|
4565
|
-
updateTimestamp?: any | null;
|
|
4566
|
-
status?: string | null;
|
|
4567
|
-
message?: string | null;
|
|
4568
|
-
};
|
|
4569
|
-
} | null;
|
|
4570
|
-
};
|
|
4571
|
-
export type UpdateEmbedderMutationVariables = Exact<{
|
|
4572
|
-
input?: InputMaybe<UpdateEmbedderInput>;
|
|
4573
|
-
}>;
|
|
4574
|
-
export type UpdateEmbedderMutation = {
|
|
4575
|
-
__typename?: 'Mutation';
|
|
4576
|
-
Embedder?: {
|
|
4577
|
-
__typename?: 'EmbedderMutation';
|
|
4578
|
-
updateEmbedder: {
|
|
4579
|
-
__typename?: 'Embedder';
|
|
4580
|
-
name: string;
|
|
4581
|
-
namespace: string;
|
|
4582
|
-
labels?: any | null;
|
|
4583
|
-
annotations?: any | null;
|
|
4584
|
-
displayName?: string | null;
|
|
4585
|
-
description?: string | null;
|
|
4586
|
-
baseUrl: string;
|
|
4587
|
-
models?: Array<string> | null;
|
|
4588
|
-
provider?: string | null;
|
|
4589
|
-
type?: string | null;
|
|
4590
|
-
updateTimestamp?: any | null;
|
|
4591
|
-
status?: string | null;
|
|
4592
|
-
message?: string | null;
|
|
4593
|
-
};
|
|
4594
|
-
} | null;
|
|
4595
|
-
};
|
|
4596
|
-
export type DeleteEmbeddersMutationVariables = Exact<{
|
|
4597
|
-
input: DeleteCommonInput;
|
|
4598
|
-
}>;
|
|
4599
|
-
export type DeleteEmbeddersMutation = {
|
|
4600
|
-
__typename?: 'Mutation';
|
|
4601
|
-
Embedder?: {
|
|
4602
|
-
__typename?: 'EmbedderMutation';
|
|
4603
|
-
deleteEmbedders?: any | null;
|
|
4604
|
-
} | null;
|
|
4605
|
-
};
|
|
4606
4331
|
export type ListEmbeddersQueryVariables = Exact<{
|
|
4607
4332
|
input: ListCommonInput;
|
|
4608
4333
|
}>;
|
|
@@ -5390,7 +5115,6 @@ export type CreateModelServiceMutation = {
|
|
|
5390
5115
|
description?: string | null;
|
|
5391
5116
|
providerType?: string | null;
|
|
5392
5117
|
types?: string | null;
|
|
5393
|
-
apiType?: string | null;
|
|
5394
5118
|
llmModels?: Array<string> | null;
|
|
5395
5119
|
embeddingModels?: Array<string> | null;
|
|
5396
5120
|
rerankingModels?: Array<string> | null;
|
|
@@ -5421,7 +5145,6 @@ export type UpdateModelServiceMutation = {
|
|
|
5421
5145
|
description?: string | null;
|
|
5422
5146
|
providerType?: string | null;
|
|
5423
5147
|
types?: string | null;
|
|
5424
|
-
apiType?: string | null;
|
|
5425
5148
|
llmModels?: Array<string> | null;
|
|
5426
5149
|
embeddingModels?: Array<string> | null;
|
|
5427
5150
|
rerankingModels?: Array<string> | null;
|
|
@@ -5463,7 +5186,6 @@ export type GetModelServiceQuery = {
|
|
|
5463
5186
|
description?: string | null;
|
|
5464
5187
|
providerType?: string | null;
|
|
5465
5188
|
types?: string | null;
|
|
5466
|
-
apiType?: string | null;
|
|
5467
5189
|
llmModels?: Array<string> | null;
|
|
5468
5190
|
embeddingModels?: Array<string> | null;
|
|
5469
5191
|
rerankingModels?: Array<string> | null;
|
|
@@ -5520,7 +5242,6 @@ export type ListModelServicesQuery = {
|
|
|
5520
5242
|
description?: string | null;
|
|
5521
5243
|
providerType?: string | null;
|
|
5522
5244
|
types?: string | null;
|
|
5523
|
-
apiType?: string | null;
|
|
5524
5245
|
llmModels?: Array<string> | null;
|
|
5525
5246
|
embeddingModels?: Array<string> | null;
|
|
5526
5247
|
rerankingModels?: Array<string> | null;
|
|
@@ -5549,6 +5270,27 @@ export type ListModelServicesQuery = {
|
|
|
5549
5270
|
};
|
|
5550
5271
|
} | null;
|
|
5551
5272
|
};
|
|
5273
|
+
export type ListModelServiceProvidersQueryVariables = Exact<{
|
|
5274
|
+
[key: string]: never;
|
|
5275
|
+
}>;
|
|
5276
|
+
export type ListModelServiceProvidersQuery = {
|
|
5277
|
+
__typename?: 'Query';
|
|
5278
|
+
ModelService?: {
|
|
5279
|
+
__typename?: 'ModelServiceQuery';
|
|
5280
|
+
listModelServiceProviders: Array<{
|
|
5281
|
+
__typename?: 'ModelServiceProvider';
|
|
5282
|
+
name: string;
|
|
5283
|
+
displayName: string;
|
|
5284
|
+
description: string;
|
|
5285
|
+
baseUrl: string;
|
|
5286
|
+
apiType: string;
|
|
5287
|
+
modelTypes: string;
|
|
5288
|
+
llmModels: Array<string>;
|
|
5289
|
+
embeddingModels: Array<string>;
|
|
5290
|
+
rerankingModels: Array<string>;
|
|
5291
|
+
} | null>;
|
|
5292
|
+
} | null;
|
|
5293
|
+
};
|
|
5552
5294
|
export type CheckModelServiceQueryVariables = Exact<{
|
|
5553
5295
|
input: CreateModelServiceInput;
|
|
5554
5296
|
}>;
|
|
@@ -5560,7 +5302,6 @@ export type CheckModelServiceQuery = {
|
|
|
5560
5302
|
__typename?: 'ModelService';
|
|
5561
5303
|
name: string;
|
|
5562
5304
|
namespace: string;
|
|
5563
|
-
apiType?: string | null;
|
|
5564
5305
|
description?: string | null;
|
|
5565
5306
|
};
|
|
5566
5307
|
} | null;
|
|
@@ -6295,66 +6036,6 @@ export type ListRayClustersQuery = {
|
|
|
6295
6036
|
};
|
|
6296
6037
|
} | null;
|
|
6297
6038
|
};
|
|
6298
|
-
export type CreateRerankerMutationVariables = Exact<{
|
|
6299
|
-
input: CreateRerankerInput;
|
|
6300
|
-
}>;
|
|
6301
|
-
export type CreateRerankerMutation = {
|
|
6302
|
-
__typename?: 'Mutation';
|
|
6303
|
-
Reranker?: {
|
|
6304
|
-
__typename?: 'RerankerMutation';
|
|
6305
|
-
createReranker: {
|
|
6306
|
-
__typename?: 'Reranker';
|
|
6307
|
-
name: string;
|
|
6308
|
-
namespace: string;
|
|
6309
|
-
labels?: any | null;
|
|
6310
|
-
annotations?: any | null;
|
|
6311
|
-
displayName?: string | null;
|
|
6312
|
-
description?: string | null;
|
|
6313
|
-
baseUrl: string;
|
|
6314
|
-
models?: Array<string> | null;
|
|
6315
|
-
type?: string | null;
|
|
6316
|
-
provider?: string | null;
|
|
6317
|
-
updateTimestamp?: any | null;
|
|
6318
|
-
status?: string | null;
|
|
6319
|
-
message?: string | null;
|
|
6320
|
-
};
|
|
6321
|
-
} | null;
|
|
6322
|
-
};
|
|
6323
|
-
export type UpdateRerankerMutationVariables = Exact<{
|
|
6324
|
-
input?: InputMaybe<UpdateRerankerInput>;
|
|
6325
|
-
}>;
|
|
6326
|
-
export type UpdateRerankerMutation = {
|
|
6327
|
-
__typename?: 'Mutation';
|
|
6328
|
-
Reranker?: {
|
|
6329
|
-
__typename?: 'RerankerMutation';
|
|
6330
|
-
updateReranker: {
|
|
6331
|
-
__typename?: 'Reranker';
|
|
6332
|
-
name: string;
|
|
6333
|
-
namespace: string;
|
|
6334
|
-
labels?: any | null;
|
|
6335
|
-
annotations?: any | null;
|
|
6336
|
-
displayName?: string | null;
|
|
6337
|
-
description?: string | null;
|
|
6338
|
-
baseUrl: string;
|
|
6339
|
-
models?: Array<string> | null;
|
|
6340
|
-
type?: string | null;
|
|
6341
|
-
provider?: string | null;
|
|
6342
|
-
updateTimestamp?: any | null;
|
|
6343
|
-
status?: string | null;
|
|
6344
|
-
message?: string | null;
|
|
6345
|
-
};
|
|
6346
|
-
} | null;
|
|
6347
|
-
};
|
|
6348
|
-
export type DeleteRerankersMutationVariables = Exact<{
|
|
6349
|
-
input: DeleteCommonInput;
|
|
6350
|
-
}>;
|
|
6351
|
-
export type DeleteRerankersMutation = {
|
|
6352
|
-
__typename?: 'Mutation';
|
|
6353
|
-
Reranker?: {
|
|
6354
|
-
__typename?: 'RerankerMutation';
|
|
6355
|
-
deleteRerankers?: any | null;
|
|
6356
|
-
} | null;
|
|
6357
|
-
};
|
|
6358
6039
|
export type ListRerankersQueryVariables = Exact<{
|
|
6359
6040
|
input: ListCommonInput;
|
|
6360
6041
|
}>;
|
|
@@ -7027,6 +6708,7 @@ export type ListWorkflowsQuery = {
|
|
|
7027
6708
|
description?: string | null;
|
|
7028
6709
|
icon?: string | null;
|
|
7029
6710
|
status?: string | null;
|
|
6711
|
+
message?: string | null;
|
|
7030
6712
|
updateTimestamp?: any | null;
|
|
7031
6713
|
draftUpdateTimestamp?: any | null;
|
|
7032
6714
|
graph?: any | null;
|
|
@@ -7056,6 +6738,7 @@ export type GetWorkflowQuery = {
|
|
|
7056
6738
|
description?: string | null;
|
|
7057
6739
|
icon?: string | null;
|
|
7058
6740
|
status?: string | null;
|
|
6741
|
+
message?: string | null;
|
|
7059
6742
|
updateTimestamp?: any | null;
|
|
7060
6743
|
draftUpdateTimestamp?: any | null;
|
|
7061
6744
|
graph?: any | null;
|
|
@@ -7083,6 +6766,7 @@ export type CreateWorkflowMutation = {
|
|
|
7083
6766
|
description?: string | null;
|
|
7084
6767
|
icon?: string | null;
|
|
7085
6768
|
status?: string | null;
|
|
6769
|
+
message?: string | null;
|
|
7086
6770
|
updateTimestamp?: any | null;
|
|
7087
6771
|
draftUpdateTimestamp?: any | null;
|
|
7088
6772
|
graph?: any | null;
|
|
@@ -7109,6 +6793,7 @@ export type UpdateWorkflowMutation = {
|
|
|
7109
6793
|
description?: string | null;
|
|
7110
6794
|
icon?: string | null;
|
|
7111
6795
|
status?: string | null;
|
|
6796
|
+
message?: string | null;
|
|
7112
6797
|
updateTimestamp?: any | null;
|
|
7113
6798
|
draftUpdateTimestamp?: any | null;
|
|
7114
6799
|
graph?: any | null;
|
|
@@ -7175,9 +6860,6 @@ export declare const DeleteDatasourcesDocument: import("../node_modules/.pnpm/gr
|
|
|
7175
6860
|
export declare const ListDatasourcesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7176
6861
|
export declare const GetDatasourceDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7177
6862
|
export declare const CheckDatasourceDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7178
|
-
export declare const CreateEmbedderDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7179
|
-
export declare const UpdateEmbedderDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7180
|
-
export declare const DeleteEmbeddersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7181
6863
|
export declare const ListEmbeddersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7182
6864
|
export declare const GetEmbedderDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7183
6865
|
export declare const ListKnowledgeBasesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
@@ -7197,6 +6879,7 @@ export declare const UpdateModelServiceDocument: import("../node_modules/.pnpm/g
|
|
|
7197
6879
|
export declare const DeleteModelServicesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7198
6880
|
export declare const GetModelServiceDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7199
6881
|
export declare const ListModelServicesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
6882
|
+
export declare const ListModelServiceProvidersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7200
6883
|
export declare const CheckModelServiceDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7201
6884
|
export declare const ListNodesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7202
6885
|
export declare const ListPluginsDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
@@ -7211,9 +6894,6 @@ export declare const CreateRagDocument: import("../node_modules/.pnpm/graphql@16
|
|
|
7211
6894
|
export declare const UpdateRagDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7212
6895
|
export declare const DeleteRagDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7213
6896
|
export declare const ListRayClustersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7214
|
-
export declare const CreateRerankerDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7215
|
-
export declare const UpdateRerankerDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7216
|
-
export declare const DeleteRerankersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7217
6897
|
export declare const ListRerankersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7218
6898
|
export declare const GetRerankerDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7219
6899
|
export declare const CreateVersionedDatasetDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
@@ -7274,9 +6954,6 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
7274
6954
|
listDatasources(variables: ListDatasourcesQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListDatasourcesQuery>;
|
|
7275
6955
|
getDatasource(variables: GetDatasourceQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetDatasourceQuery>;
|
|
7276
6956
|
checkDatasource(variables: CheckDatasourceQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<CheckDatasourceQuery>;
|
|
7277
|
-
createEmbedder(variables: CreateEmbedderMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<CreateEmbedderMutation>;
|
|
7278
|
-
updateEmbedder(variables?: UpdateEmbedderMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<UpdateEmbedderMutation>;
|
|
7279
|
-
deleteEmbedders(variables: DeleteEmbeddersMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<DeleteEmbeddersMutation>;
|
|
7280
6957
|
listEmbedders(variables: ListEmbeddersQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListEmbeddersQuery>;
|
|
7281
6958
|
getEmbedder(variables: GetEmbedderQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetEmbedderQuery>;
|
|
7282
6959
|
listKnowledgeBases(variables: ListKnowledgeBasesQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListKnowledgeBasesQuery>;
|
|
@@ -7296,6 +6973,7 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
7296
6973
|
deleteModelServices(variables?: DeleteModelServicesMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<DeleteModelServicesMutation>;
|
|
7297
6974
|
getModelService(variables: GetModelServiceQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetModelServiceQuery>;
|
|
7298
6975
|
listModelServices(variables?: ListModelServicesQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListModelServicesQuery>;
|
|
6976
|
+
listModelServiceProviders(variables?: ListModelServiceProvidersQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListModelServiceProvidersQuery>;
|
|
7299
6977
|
checkModelService(variables: CheckModelServiceQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<CheckModelServiceQuery>;
|
|
7300
6978
|
listNodes(variables?: ListNodesQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListNodesQuery>;
|
|
7301
6979
|
listPlugins(variables: ListPluginsQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListPluginsQuery>;
|
|
@@ -7310,9 +6988,6 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
7310
6988
|
updateRAG(variables: UpdateRagMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<UpdateRagMutation>;
|
|
7311
6989
|
deleteRAG(variables: DeleteRagMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<DeleteRagMutation>;
|
|
7312
6990
|
listRayClusters(variables: ListRayClustersQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListRayClustersQuery>;
|
|
7313
|
-
createReranker(variables: CreateRerankerMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<CreateRerankerMutation>;
|
|
7314
|
-
updateReranker(variables?: UpdateRerankerMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<UpdateRerankerMutation>;
|
|
7315
|
-
deleteRerankers(variables: DeleteRerankersMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<DeleteRerankersMutation>;
|
|
7316
6991
|
listRerankers(variables: ListRerankersQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListRerankersQuery>;
|
|
7317
6992
|
getReranker(variables: GetRerankerQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetRerankerQuery>;
|
|
7318
6993
|
createVersionedDataset(variables: CreateVersionedDatasetMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<CreateVersionedDatasetMutation>;
|
|
@@ -7365,6 +7040,7 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
7365
7040
|
useGetModel(variables: GetModelQueryVariables, config?: SWRConfigInterface<GetModelQuery, ClientError>): import("./useSWR").SWRResponsePro<GetModelQuery, ClientError>;
|
|
7366
7041
|
useGetModelService(variables: GetModelServiceQueryVariables, config?: SWRConfigInterface<GetModelServiceQuery, ClientError>): import("./useSWR").SWRResponsePro<GetModelServiceQuery, ClientError>;
|
|
7367
7042
|
useListModelServices(variables?: ListModelServicesQueryVariables, config?: SWRConfigInterface<ListModelServicesQuery, ClientError>): import("./useSWR").SWRResponsePro<ListModelServicesQuery, ClientError>;
|
|
7043
|
+
useListModelServiceProviders(variables?: ListModelServiceProvidersQueryVariables, config?: SWRConfigInterface<ListModelServiceProvidersQuery, ClientError>): import("./useSWR").SWRResponsePro<ListModelServiceProvidersQuery, ClientError>;
|
|
7368
7044
|
useCheckModelService(variables: CheckModelServiceQueryVariables, config?: SWRConfigInterface<CheckModelServiceQuery, ClientError>): import("./useSWR").SWRResponsePro<CheckModelServiceQuery, ClientError>;
|
|
7369
7045
|
useListNodes(variables?: ListNodesQueryVariables, config?: SWRConfigInterface<ListNodesQuery, ClientError>): import("./useSWR").SWRResponsePro<ListNodesQuery, ClientError>;
|
|
7370
7046
|
useListPlugins(variables: ListPluginsQueryVariables, config?: SWRConfigInterface<ListPluginsQuery, ClientError>): import("./useSWR").SWRResponsePro<ListPluginsQuery, ClientError>;
|
|
@@ -7519,15 +7195,6 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
7519
7195
|
checkDatasource(variables: Exact<{
|
|
7520
7196
|
input: CreateDatasourceInput;
|
|
7521
7197
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<CheckDatasourceQuery>;
|
|
7522
|
-
createEmbedder(variables: Exact<{
|
|
7523
|
-
input: CreateEmbedderInput;
|
|
7524
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<CreateEmbedderMutation>;
|
|
7525
|
-
updateEmbedder(variables?: Exact<{
|
|
7526
|
-
input?: InputMaybe<UpdateEmbedderInput> | undefined;
|
|
7527
|
-
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<UpdateEmbedderMutation>;
|
|
7528
|
-
deleteEmbedders(variables: Exact<{
|
|
7529
|
-
input: DeleteCommonInput;
|
|
7530
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<DeleteEmbeddersMutation>;
|
|
7531
7198
|
listEmbedders(variables: Exact<{
|
|
7532
7199
|
input: ListCommonInput;
|
|
7533
7200
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListEmbeddersQuery>;
|
|
@@ -7592,6 +7259,9 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
7592
7259
|
listModelServices(variables?: Exact<{
|
|
7593
7260
|
input?: InputMaybe<ListModelServiceInput> | undefined;
|
|
7594
7261
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListModelServicesQuery>;
|
|
7262
|
+
listModelServiceProviders(variables?: Exact<{
|
|
7263
|
+
[key: string]: never;
|
|
7264
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListModelServiceProvidersQuery>;
|
|
7595
7265
|
checkModelService(variables: Exact<{
|
|
7596
7266
|
input: CreateModelServiceInput;
|
|
7597
7267
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<CheckModelServiceQuery>;
|
|
@@ -7636,15 +7306,6 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
7636
7306
|
listRayClusters(variables: Exact<{
|
|
7637
7307
|
input: ListCommonInput;
|
|
7638
7308
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListRayClustersQuery>;
|
|
7639
|
-
createReranker(variables: Exact<{
|
|
7640
|
-
input: CreateRerankerInput;
|
|
7641
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<CreateRerankerMutation>;
|
|
7642
|
-
updateReranker(variables?: Exact<{
|
|
7643
|
-
input?: InputMaybe<UpdateRerankerInput> | undefined;
|
|
7644
|
-
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<UpdateRerankerMutation>;
|
|
7645
|
-
deleteRerankers(variables: Exact<{
|
|
7646
|
-
input: DeleteCommonInput;
|
|
7647
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<DeleteRerankersMutation>;
|
|
7648
7309
|
listRerankers(variables: Exact<{
|
|
7649
7310
|
input: ListCommonInput;
|
|
7650
7311
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListRerankersQuery>;
|