@yuntijs/arcadia-bff-sdk 1.2.41 → 1.2.43
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 +75 -413
- package/dist/cjs/sdk.js +33 -133
- package/dist/cjs/taro.d.ts +15 -54
- package/dist/esm/index.d.ts +21 -72
- package/dist/esm/sdk.d.ts +75 -413
- package/dist/esm/sdk.js +63 -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 */
|
|
@@ -1538,19 +1428,17 @@ export type ListModelInput = {
|
|
|
1538
1428
|
systemModel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1539
1429
|
};
|
|
1540
1430
|
export type ListModelServiceInput = {
|
|
1541
|
-
/**
|
|
1542
|
-
|
|
1543
|
-
* 规则:
|
|
1544
|
-
* - 为空默认不过滤
|
|
1545
|
-
* - openai 则仅返回接口类型类型为openai的模型服务
|
|
1546
|
-
* - zhipuai 则仅返回接口类型类型为zhipuai的模型服务
|
|
1547
|
-
*/
|
|
1548
|
-
apiType?: InputMaybe<Scalars['String']['input']>;
|
|
1431
|
+
/** 字段选择器 */
|
|
1432
|
+
fieldSelector?: InputMaybe<Scalars['String']['input']>;
|
|
1549
1433
|
/** 关键词搜索 */
|
|
1550
1434
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
1435
|
+
/** 标签选择器 */
|
|
1436
|
+
labelSelector?: InputMaybe<Scalars['String']['input']>;
|
|
1551
1437
|
namespace: Scalars['String']['input'];
|
|
1552
1438
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1553
1439
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1440
|
+
/** 模型服务供应商 */
|
|
1441
|
+
provider?: InputMaybe<Scalars['String']['input']>;
|
|
1554
1442
|
/**
|
|
1555
1443
|
* 模型服务供应商类型
|
|
1556
1444
|
* 规则:
|
|
@@ -1763,11 +1651,6 @@ export type ModelQueryListModelsArgs = {
|
|
|
1763
1651
|
export type ModelService = {
|
|
1764
1652
|
__typename?: 'ModelService';
|
|
1765
1653
|
annotations?: Maybe<Scalars['Map']['output']>;
|
|
1766
|
-
/**
|
|
1767
|
-
* 模型服务 API 类型
|
|
1768
|
-
* 规则:支持 openai, zhipuai,dashscope,gemini 四种类型
|
|
1769
|
-
*/
|
|
1770
|
-
apiType?: Maybe<Scalars['String']['output']>;
|
|
1771
1654
|
/** 服务地址: 仅针对第三方模型服务 */
|
|
1772
1655
|
baseUrl: Scalars['String']['output'];
|
|
1773
1656
|
/** 模型服务的创建和更新时间 */
|
|
@@ -1791,10 +1674,12 @@ export type ModelService = {
|
|
|
1791
1674
|
message?: Maybe<Scalars['String']['output']>;
|
|
1792
1675
|
name: Scalars['String']['output'];
|
|
1793
1676
|
namespace: Scalars['String']['output'];
|
|
1677
|
+
/** 模型服务供应商(第三方) */
|
|
1678
|
+
provider?: Maybe<Scalars['String']['output']>;
|
|
1794
1679
|
/**
|
|
1795
1680
|
* 模型服务供应商的类型
|
|
1796
|
-
* 规则: 3rd_party 第三方
|
|
1797
1681
|
* 规则: worker 本地
|
|
1682
|
+
* 规则: 3rd_party 第三方
|
|
1798
1683
|
*/
|
|
1799
1684
|
providerType?: Maybe<Scalars['String']['output']>;
|
|
1800
1685
|
/**
|
|
@@ -1813,10 +1698,7 @@ export type ModelService = {
|
|
|
1813
1698
|
* - Error: 异常 (本地模型服务)
|
|
1814
1699
|
*/
|
|
1815
1700
|
status?: Maybe<Scalars['String']['output']>;
|
|
1816
|
-
/**
|
|
1817
|
-
* 模型服务能力类型,支持 llm 和 embedding 两种模型类型
|
|
1818
|
-
* 规则: 如果该模型支持多种模型类型,则可多选。多选后组成的字段通过逗号隔开。如 "llm,embedding"
|
|
1819
|
-
*/
|
|
1701
|
+
/** 模型服务能力类型: llm,embedding,reranking */
|
|
1820
1702
|
types?: Maybe<Scalars['String']['output']>;
|
|
1821
1703
|
updateTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
1822
1704
|
};
|
|
@@ -1835,10 +1717,23 @@ export type ModelServiceMutationDeleteModelServiceArgs = {
|
|
|
1835
1717
|
export type ModelServiceMutationUpdateModelServiceArgs = {
|
|
1836
1718
|
input?: InputMaybe<UpdateModelServiceInput>;
|
|
1837
1719
|
};
|
|
1720
|
+
export type ModelServiceProvider = {
|
|
1721
|
+
__typename?: 'ModelServiceProvider';
|
|
1722
|
+
apiType: Scalars['String']['output'];
|
|
1723
|
+
baseUrl: Scalars['String']['output'];
|
|
1724
|
+
description: Scalars['String']['output'];
|
|
1725
|
+
displayName: Scalars['String']['output'];
|
|
1726
|
+
embeddingModels: Array<Scalars['String']['output']>;
|
|
1727
|
+
llmModels: Array<Scalars['String']['output']>;
|
|
1728
|
+
modelTypes: Scalars['String']['output'];
|
|
1729
|
+
name: Scalars['String']['output'];
|
|
1730
|
+
rerankingModels: Array<Scalars['String']['output']>;
|
|
1731
|
+
};
|
|
1838
1732
|
export type ModelServiceQuery = {
|
|
1839
1733
|
__typename?: 'ModelServiceQuery';
|
|
1840
1734
|
checkModelService: ModelService;
|
|
1841
1735
|
getModelService: ModelService;
|
|
1736
|
+
listModelServiceProviders: Array<Maybe<ModelServiceProvider>>;
|
|
1842
1737
|
listModelServices: PaginatedResult;
|
|
1843
1738
|
};
|
|
1844
1739
|
export type ModelServiceQueryCheckModelServiceArgs = {
|
|
@@ -1856,13 +1751,11 @@ export type Mutation = {
|
|
|
1856
1751
|
Agent?: Maybe<AgentMutation>;
|
|
1857
1752
|
Dataset?: Maybe<DatasetMutation>;
|
|
1858
1753
|
Datasource?: Maybe<DatasourceMutation>;
|
|
1859
|
-
Embedder?: Maybe<EmbedderMutation>;
|
|
1860
1754
|
KnowledgeBase?: Maybe<KnowledgeBaseMutation>;
|
|
1861
1755
|
Model?: Maybe<ModelMutation>;
|
|
1862
1756
|
ModelService?: Maybe<ModelServiceMutation>;
|
|
1863
1757
|
Plugin?: Maybe<PluginMutation>;
|
|
1864
1758
|
RAG?: Maybe<RagMutation>;
|
|
1865
|
-
Reranker?: Maybe<RerankerMutation>;
|
|
1866
1759
|
VersionedDataset?: Maybe<VersionedDatasetMutation>;
|
|
1867
1760
|
Worker?: Maybe<WorkerMutation>;
|
|
1868
1761
|
Workflow?: Maybe<WorkflowMutation>;
|
|
@@ -2323,21 +2216,6 @@ export type Reranker = {
|
|
|
2323
2216
|
type?: Maybe<Scalars['String']['output']>;
|
|
2324
2217
|
updateTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
2325
2218
|
};
|
|
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
2219
|
export type RerankerQuery = {
|
|
2342
2220
|
__typename?: 'RerankerQuery';
|
|
2343
2221
|
getReranker: Reranker;
|
|
@@ -2574,29 +2452,6 @@ export type UpdateDatasourceInput = {
|
|
|
2574
2452
|
/** 数据源为Web数据时的输入 */
|
|
2575
2453
|
webinput?: InputMaybe<WebInput>;
|
|
2576
2454
|
};
|
|
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
2455
|
/** 知识库更新的输入 */
|
|
2601
2456
|
export type UpdateKnowledgeBaseInput = {
|
|
2602
2457
|
/** 知识库资源注释 */
|
|
@@ -2611,7 +2466,7 @@ export type UpdateKnowledgeBaseInput = {
|
|
|
2611
2466
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
2612
2467
|
/** 如不更新,则为空 */
|
|
2613
2468
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
2614
|
-
/**
|
|
2469
|
+
/** 更新选择的文件列表 */
|
|
2615
2470
|
fileGroups?: InputMaybe<Array<Filegroupinput>>;
|
|
2616
2471
|
/** 知识库资源标签 */
|
|
2617
2472
|
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
@@ -2620,29 +2475,6 @@ export type UpdateKnowledgeBaseInput = {
|
|
|
2620
2475
|
/** 知识库创建命名空间 */
|
|
2621
2476
|
namespace: Scalars['String']['input'];
|
|
2622
2477
|
};
|
|
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
2478
|
/** 模型更新的输入 */
|
|
2647
2479
|
export type UpdateModelInput = {
|
|
2648
2480
|
/** 模型资源注释 */
|
|
@@ -2676,46 +2508,16 @@ export type UpdateModelInput = {
|
|
|
2676
2508
|
types?: InputMaybe<Scalars['String']['input']>;
|
|
2677
2509
|
};
|
|
2678
2510
|
export type UpdateModelServiceInput = {
|
|
2679
|
-
/**
|
|
2680
|
-
|
|
2681
|
-
/**
|
|
2682
|
-
* 模型服务 API 类型
|
|
2683
|
-
* 规则:支持 openai, zhipuai 两种类型
|
|
2684
|
-
*/
|
|
2685
|
-
apiType?: InputMaybe<Scalars['String']['input']>;
|
|
2511
|
+
/** 访问模型服务的apikey */
|
|
2512
|
+
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
2686
2513
|
/** 模型资源描述 */
|
|
2687
2514
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
2688
2515
|
/** 模型资源展示名称作为显示,并提供编辑 */
|
|
2689
2516
|
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
2517
|
/** 模型资源名称(不可同名) */
|
|
2705
2518
|
name: Scalars['String']['input'];
|
|
2706
2519
|
/** 模型创建命名空间 */
|
|
2707
2520
|
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
2521
|
};
|
|
2720
2522
|
export type UpdatePluginInput = {
|
|
2721
2523
|
/** 添加一些辅助性记录信息,如果要更新,请传递完整内容 */
|
|
@@ -2764,29 +2566,6 @@ export type UpdateRagInput = {
|
|
|
2764
2566
|
storage?: InputMaybe<PersistentVolumeClaimSpecInput>;
|
|
2765
2567
|
suspend?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2766
2568
|
};
|
|
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
2569
|
export type UpdateVersionedDatasetInput = {
|
|
2791
2570
|
/** 传递方式同label */
|
|
2792
2571
|
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
@@ -3074,6 +2853,8 @@ export type Workflow = {
|
|
|
3074
2853
|
description?: Maybe<Scalars['String']['output']>;
|
|
3075
2854
|
/** 展示名,别名 */
|
|
3076
2855
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
2856
|
+
/** 草稿更新时间 */
|
|
2857
|
+
draftUpdateTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
3077
2858
|
/** 流水线编排的react-flow画布 */
|
|
3078
2859
|
graph?: Maybe<Scalars['Map']['output']>;
|
|
3079
2860
|
/** Icon,图片ID */
|
|
@@ -3082,6 +2863,8 @@ export type Workflow = {
|
|
|
3082
2863
|
id?: Maybe<Scalars['String']['output']>;
|
|
3083
2864
|
/** 一些用于标记,选择的的标签 */
|
|
3084
2865
|
labels?: Maybe<Scalars['Map']['output']>;
|
|
2866
|
+
/** 状态的详细信息 */
|
|
2867
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3085
2868
|
/**
|
|
3086
2869
|
* 应用名称
|
|
3087
2870
|
* 规则: 遵循 k8s 命名
|
|
@@ -3190,11 +2973,10 @@ export type Filegroupdetail = {
|
|
|
3190
2973
|
};
|
|
3191
2974
|
/** 源文件输入 */
|
|
3192
2975
|
export type Filegroupinput = {
|
|
2976
|
+
/** 文件列表 */
|
|
3193
2977
|
files?: InputMaybe<Array<FileWithVersionInput>>;
|
|
3194
|
-
/** 路径 */
|
|
3195
|
-
path?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3196
2978
|
/** 数据源字段 */
|
|
3197
|
-
source
|
|
2979
|
+
source?: InputMaybe<TypedObjectReferenceInput>;
|
|
3198
2980
|
};
|
|
3199
2981
|
export type CreateAgentMutationVariables = Exact<{
|
|
3200
2982
|
input: CreateAgentMetadataInput;
|
|
@@ -4541,66 +4323,6 @@ export type CheckDatasourceQuery = {
|
|
|
4541
4323
|
};
|
|
4542
4324
|
} | null;
|
|
4543
4325
|
};
|
|
4544
|
-
export type CreateEmbedderMutationVariables = Exact<{
|
|
4545
|
-
input: CreateEmbedderInput;
|
|
4546
|
-
}>;
|
|
4547
|
-
export type CreateEmbedderMutation = {
|
|
4548
|
-
__typename?: 'Mutation';
|
|
4549
|
-
Embedder?: {
|
|
4550
|
-
__typename?: 'EmbedderMutation';
|
|
4551
|
-
createEmbedder: {
|
|
4552
|
-
__typename?: 'Embedder';
|
|
4553
|
-
name: string;
|
|
4554
|
-
namespace: string;
|
|
4555
|
-
labels?: any | null;
|
|
4556
|
-
annotations?: any | null;
|
|
4557
|
-
displayName?: string | null;
|
|
4558
|
-
description?: string | null;
|
|
4559
|
-
type?: string | null;
|
|
4560
|
-
baseUrl: string;
|
|
4561
|
-
models?: Array<string> | null;
|
|
4562
|
-
provider?: string | null;
|
|
4563
|
-
updateTimestamp?: any | null;
|
|
4564
|
-
status?: string | null;
|
|
4565
|
-
message?: string | null;
|
|
4566
|
-
};
|
|
4567
|
-
} | null;
|
|
4568
|
-
};
|
|
4569
|
-
export type UpdateEmbedderMutationVariables = Exact<{
|
|
4570
|
-
input?: InputMaybe<UpdateEmbedderInput>;
|
|
4571
|
-
}>;
|
|
4572
|
-
export type UpdateEmbedderMutation = {
|
|
4573
|
-
__typename?: 'Mutation';
|
|
4574
|
-
Embedder?: {
|
|
4575
|
-
__typename?: 'EmbedderMutation';
|
|
4576
|
-
updateEmbedder: {
|
|
4577
|
-
__typename?: 'Embedder';
|
|
4578
|
-
name: string;
|
|
4579
|
-
namespace: string;
|
|
4580
|
-
labels?: any | null;
|
|
4581
|
-
annotations?: any | null;
|
|
4582
|
-
displayName?: string | null;
|
|
4583
|
-
description?: string | null;
|
|
4584
|
-
baseUrl: string;
|
|
4585
|
-
models?: Array<string> | null;
|
|
4586
|
-
provider?: string | null;
|
|
4587
|
-
type?: string | null;
|
|
4588
|
-
updateTimestamp?: any | null;
|
|
4589
|
-
status?: string | null;
|
|
4590
|
-
message?: string | null;
|
|
4591
|
-
};
|
|
4592
|
-
} | null;
|
|
4593
|
-
};
|
|
4594
|
-
export type DeleteEmbeddersMutationVariables = Exact<{
|
|
4595
|
-
input: DeleteCommonInput;
|
|
4596
|
-
}>;
|
|
4597
|
-
export type DeleteEmbeddersMutation = {
|
|
4598
|
-
__typename?: 'Mutation';
|
|
4599
|
-
Embedder?: {
|
|
4600
|
-
__typename?: 'EmbedderMutation';
|
|
4601
|
-
deleteEmbedders?: any | null;
|
|
4602
|
-
} | null;
|
|
4603
|
-
};
|
|
4604
4326
|
export type ListEmbeddersQueryVariables = Exact<{
|
|
4605
4327
|
input: ListCommonInput;
|
|
4606
4328
|
}>;
|
|
@@ -5388,7 +5110,6 @@ export type CreateModelServiceMutation = {
|
|
|
5388
5110
|
description?: string | null;
|
|
5389
5111
|
providerType?: string | null;
|
|
5390
5112
|
types?: string | null;
|
|
5391
|
-
apiType?: string | null;
|
|
5392
5113
|
llmModels?: Array<string> | null;
|
|
5393
5114
|
embeddingModels?: Array<string> | null;
|
|
5394
5115
|
rerankingModels?: Array<string> | null;
|
|
@@ -5419,7 +5140,6 @@ export type UpdateModelServiceMutation = {
|
|
|
5419
5140
|
description?: string | null;
|
|
5420
5141
|
providerType?: string | null;
|
|
5421
5142
|
types?: string | null;
|
|
5422
|
-
apiType?: string | null;
|
|
5423
5143
|
llmModels?: Array<string> | null;
|
|
5424
5144
|
embeddingModels?: Array<string> | null;
|
|
5425
5145
|
rerankingModels?: Array<string> | null;
|
|
@@ -5461,7 +5181,6 @@ export type GetModelServiceQuery = {
|
|
|
5461
5181
|
description?: string | null;
|
|
5462
5182
|
providerType?: string | null;
|
|
5463
5183
|
types?: string | null;
|
|
5464
|
-
apiType?: string | null;
|
|
5465
5184
|
llmModels?: Array<string> | null;
|
|
5466
5185
|
embeddingModels?: Array<string> | null;
|
|
5467
5186
|
rerankingModels?: Array<string> | null;
|
|
@@ -5518,7 +5237,6 @@ export type ListModelServicesQuery = {
|
|
|
5518
5237
|
description?: string | null;
|
|
5519
5238
|
providerType?: string | null;
|
|
5520
5239
|
types?: string | null;
|
|
5521
|
-
apiType?: string | null;
|
|
5522
5240
|
llmModels?: Array<string> | null;
|
|
5523
5241
|
embeddingModels?: Array<string> | null;
|
|
5524
5242
|
rerankingModels?: Array<string> | null;
|
|
@@ -5547,6 +5265,27 @@ export type ListModelServicesQuery = {
|
|
|
5547
5265
|
};
|
|
5548
5266
|
} | null;
|
|
5549
5267
|
};
|
|
5268
|
+
export type ListModelServiceProvidersQueryVariables = Exact<{
|
|
5269
|
+
[key: string]: never;
|
|
5270
|
+
}>;
|
|
5271
|
+
export type ListModelServiceProvidersQuery = {
|
|
5272
|
+
__typename?: 'Query';
|
|
5273
|
+
ModelService?: {
|
|
5274
|
+
__typename?: 'ModelServiceQuery';
|
|
5275
|
+
listModelServiceProviders: Array<{
|
|
5276
|
+
__typename?: 'ModelServiceProvider';
|
|
5277
|
+
name: string;
|
|
5278
|
+
displayName: string;
|
|
5279
|
+
description: string;
|
|
5280
|
+
baseUrl: string;
|
|
5281
|
+
apiType: string;
|
|
5282
|
+
modelTypes: string;
|
|
5283
|
+
llmModels: Array<string>;
|
|
5284
|
+
embeddingModels: Array<string>;
|
|
5285
|
+
rerankingModels: Array<string>;
|
|
5286
|
+
} | null>;
|
|
5287
|
+
} | null;
|
|
5288
|
+
};
|
|
5550
5289
|
export type CheckModelServiceQueryVariables = Exact<{
|
|
5551
5290
|
input: CreateModelServiceInput;
|
|
5552
5291
|
}>;
|
|
@@ -5558,7 +5297,6 @@ export type CheckModelServiceQuery = {
|
|
|
5558
5297
|
__typename?: 'ModelService';
|
|
5559
5298
|
name: string;
|
|
5560
5299
|
namespace: string;
|
|
5561
|
-
apiType?: string | null;
|
|
5562
5300
|
description?: string | null;
|
|
5563
5301
|
};
|
|
5564
5302
|
} | null;
|
|
@@ -6293,66 +6031,6 @@ export type ListRayClustersQuery = {
|
|
|
6293
6031
|
};
|
|
6294
6032
|
} | null;
|
|
6295
6033
|
};
|
|
6296
|
-
export type CreateRerankerMutationVariables = Exact<{
|
|
6297
|
-
input: CreateRerankerInput;
|
|
6298
|
-
}>;
|
|
6299
|
-
export type CreateRerankerMutation = {
|
|
6300
|
-
__typename?: 'Mutation';
|
|
6301
|
-
Reranker?: {
|
|
6302
|
-
__typename?: 'RerankerMutation';
|
|
6303
|
-
createReranker: {
|
|
6304
|
-
__typename?: 'Reranker';
|
|
6305
|
-
name: string;
|
|
6306
|
-
namespace: string;
|
|
6307
|
-
labels?: any | null;
|
|
6308
|
-
annotations?: any | null;
|
|
6309
|
-
displayName?: string | null;
|
|
6310
|
-
description?: string | null;
|
|
6311
|
-
baseUrl: string;
|
|
6312
|
-
models?: Array<string> | null;
|
|
6313
|
-
type?: string | null;
|
|
6314
|
-
provider?: string | null;
|
|
6315
|
-
updateTimestamp?: any | null;
|
|
6316
|
-
status?: string | null;
|
|
6317
|
-
message?: string | null;
|
|
6318
|
-
};
|
|
6319
|
-
} | null;
|
|
6320
|
-
};
|
|
6321
|
-
export type UpdateRerankerMutationVariables = Exact<{
|
|
6322
|
-
input?: InputMaybe<UpdateRerankerInput>;
|
|
6323
|
-
}>;
|
|
6324
|
-
export type UpdateRerankerMutation = {
|
|
6325
|
-
__typename?: 'Mutation';
|
|
6326
|
-
Reranker?: {
|
|
6327
|
-
__typename?: 'RerankerMutation';
|
|
6328
|
-
updateReranker: {
|
|
6329
|
-
__typename?: 'Reranker';
|
|
6330
|
-
name: string;
|
|
6331
|
-
namespace: string;
|
|
6332
|
-
labels?: any | null;
|
|
6333
|
-
annotations?: any | null;
|
|
6334
|
-
displayName?: string | null;
|
|
6335
|
-
description?: string | null;
|
|
6336
|
-
baseUrl: string;
|
|
6337
|
-
models?: Array<string> | null;
|
|
6338
|
-
type?: string | null;
|
|
6339
|
-
provider?: string | null;
|
|
6340
|
-
updateTimestamp?: any | null;
|
|
6341
|
-
status?: string | null;
|
|
6342
|
-
message?: string | null;
|
|
6343
|
-
};
|
|
6344
|
-
} | null;
|
|
6345
|
-
};
|
|
6346
|
-
export type DeleteRerankersMutationVariables = Exact<{
|
|
6347
|
-
input: DeleteCommonInput;
|
|
6348
|
-
}>;
|
|
6349
|
-
export type DeleteRerankersMutation = {
|
|
6350
|
-
__typename?: 'Mutation';
|
|
6351
|
-
Reranker?: {
|
|
6352
|
-
__typename?: 'RerankerMutation';
|
|
6353
|
-
deleteRerankers?: any | null;
|
|
6354
|
-
} | null;
|
|
6355
|
-
};
|
|
6356
6034
|
export type ListRerankersQueryVariables = Exact<{
|
|
6357
6035
|
input: ListCommonInput;
|
|
6358
6036
|
}>;
|
|
@@ -7025,7 +6703,9 @@ export type ListWorkflowsQuery = {
|
|
|
7025
6703
|
description?: string | null;
|
|
7026
6704
|
icon?: string | null;
|
|
7027
6705
|
status?: string | null;
|
|
6706
|
+
message?: string | null;
|
|
7028
6707
|
updateTimestamp?: any | null;
|
|
6708
|
+
draftUpdateTimestamp?: any | null;
|
|
7029
6709
|
graph?: any | null;
|
|
7030
6710
|
release?: boolean | null;
|
|
7031
6711
|
}> | null;
|
|
@@ -7053,7 +6733,9 @@ export type GetWorkflowQuery = {
|
|
|
7053
6733
|
description?: string | null;
|
|
7054
6734
|
icon?: string | null;
|
|
7055
6735
|
status?: string | null;
|
|
6736
|
+
message?: string | null;
|
|
7056
6737
|
updateTimestamp?: any | null;
|
|
6738
|
+
draftUpdateTimestamp?: any | null;
|
|
7057
6739
|
graph?: any | null;
|
|
7058
6740
|
release?: boolean | null;
|
|
7059
6741
|
};
|
|
@@ -7079,7 +6761,9 @@ export type CreateWorkflowMutation = {
|
|
|
7079
6761
|
description?: string | null;
|
|
7080
6762
|
icon?: string | null;
|
|
7081
6763
|
status?: string | null;
|
|
6764
|
+
message?: string | null;
|
|
7082
6765
|
updateTimestamp?: any | null;
|
|
6766
|
+
draftUpdateTimestamp?: any | null;
|
|
7083
6767
|
graph?: any | null;
|
|
7084
6768
|
};
|
|
7085
6769
|
} | null;
|
|
@@ -7104,7 +6788,9 @@ export type UpdateWorkflowMutation = {
|
|
|
7104
6788
|
description?: string | null;
|
|
7105
6789
|
icon?: string | null;
|
|
7106
6790
|
status?: string | null;
|
|
6791
|
+
message?: string | null;
|
|
7107
6792
|
updateTimestamp?: any | null;
|
|
6793
|
+
draftUpdateTimestamp?: any | null;
|
|
7108
6794
|
graph?: any | null;
|
|
7109
6795
|
};
|
|
7110
6796
|
} | null;
|
|
@@ -7169,9 +6855,6 @@ export declare const DeleteDatasourcesDocument: import("../node_modules/.pnpm/gr
|
|
|
7169
6855
|
export declare const ListDatasourcesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7170
6856
|
export declare const GetDatasourceDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7171
6857
|
export declare const CheckDatasourceDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7172
|
-
export declare const CreateEmbedderDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7173
|
-
export declare const UpdateEmbedderDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7174
|
-
export declare const DeleteEmbeddersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7175
6858
|
export declare const ListEmbeddersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7176
6859
|
export declare const GetEmbedderDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7177
6860
|
export declare const ListKnowledgeBasesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
@@ -7191,6 +6874,7 @@ export declare const UpdateModelServiceDocument: import("../node_modules/.pnpm/g
|
|
|
7191
6874
|
export declare const DeleteModelServicesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7192
6875
|
export declare const GetModelServiceDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7193
6876
|
export declare const ListModelServicesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
6877
|
+
export declare const ListModelServiceProvidersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7194
6878
|
export declare const CheckModelServiceDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7195
6879
|
export declare const ListNodesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7196
6880
|
export declare const ListPluginsDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
@@ -7205,9 +6889,6 @@ export declare const CreateRagDocument: import("../node_modules/.pnpm/graphql@16
|
|
|
7205
6889
|
export declare const UpdateRagDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7206
6890
|
export declare const DeleteRagDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7207
6891
|
export declare const ListRayClustersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7208
|
-
export declare const CreateRerankerDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7209
|
-
export declare const UpdateRerankerDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7210
|
-
export declare const DeleteRerankersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7211
6892
|
export declare const ListRerankersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7212
6893
|
export declare const GetRerankerDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
7213
6894
|
export declare const CreateVersionedDatasetDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
@@ -7268,9 +6949,6 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
7268
6949
|
listDatasources(variables: ListDatasourcesQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListDatasourcesQuery>;
|
|
7269
6950
|
getDatasource(variables: GetDatasourceQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetDatasourceQuery>;
|
|
7270
6951
|
checkDatasource(variables: CheckDatasourceQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<CheckDatasourceQuery>;
|
|
7271
|
-
createEmbedder(variables: CreateEmbedderMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<CreateEmbedderMutation>;
|
|
7272
|
-
updateEmbedder(variables?: UpdateEmbedderMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<UpdateEmbedderMutation>;
|
|
7273
|
-
deleteEmbedders(variables: DeleteEmbeddersMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<DeleteEmbeddersMutation>;
|
|
7274
6952
|
listEmbedders(variables: ListEmbeddersQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListEmbeddersQuery>;
|
|
7275
6953
|
getEmbedder(variables: GetEmbedderQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetEmbedderQuery>;
|
|
7276
6954
|
listKnowledgeBases(variables: ListKnowledgeBasesQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListKnowledgeBasesQuery>;
|
|
@@ -7290,6 +6968,7 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
7290
6968
|
deleteModelServices(variables?: DeleteModelServicesMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<DeleteModelServicesMutation>;
|
|
7291
6969
|
getModelService(variables: GetModelServiceQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetModelServiceQuery>;
|
|
7292
6970
|
listModelServices(variables?: ListModelServicesQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListModelServicesQuery>;
|
|
6971
|
+
listModelServiceProviders(variables?: ListModelServiceProvidersQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListModelServiceProvidersQuery>;
|
|
7293
6972
|
checkModelService(variables: CheckModelServiceQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<CheckModelServiceQuery>;
|
|
7294
6973
|
listNodes(variables?: ListNodesQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListNodesQuery>;
|
|
7295
6974
|
listPlugins(variables: ListPluginsQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListPluginsQuery>;
|
|
@@ -7304,9 +6983,6 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
7304
6983
|
updateRAG(variables: UpdateRagMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<UpdateRagMutation>;
|
|
7305
6984
|
deleteRAG(variables: DeleteRagMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<DeleteRagMutation>;
|
|
7306
6985
|
listRayClusters(variables: ListRayClustersQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListRayClustersQuery>;
|
|
7307
|
-
createReranker(variables: CreateRerankerMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<CreateRerankerMutation>;
|
|
7308
|
-
updateReranker(variables?: UpdateRerankerMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<UpdateRerankerMutation>;
|
|
7309
|
-
deleteRerankers(variables: DeleteRerankersMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<DeleteRerankersMutation>;
|
|
7310
6986
|
listRerankers(variables: ListRerankersQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListRerankersQuery>;
|
|
7311
6987
|
getReranker(variables: GetRerankerQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetRerankerQuery>;
|
|
7312
6988
|
createVersionedDataset(variables: CreateVersionedDatasetMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<CreateVersionedDatasetMutation>;
|
|
@@ -7359,6 +7035,7 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
7359
7035
|
useGetModel(variables: GetModelQueryVariables, config?: SWRConfigInterface<GetModelQuery, ClientError>): import("./useSWR").SWRResponsePro<GetModelQuery, ClientError>;
|
|
7360
7036
|
useGetModelService(variables: GetModelServiceQueryVariables, config?: SWRConfigInterface<GetModelServiceQuery, ClientError>): import("./useSWR").SWRResponsePro<GetModelServiceQuery, ClientError>;
|
|
7361
7037
|
useListModelServices(variables?: ListModelServicesQueryVariables, config?: SWRConfigInterface<ListModelServicesQuery, ClientError>): import("./useSWR").SWRResponsePro<ListModelServicesQuery, ClientError>;
|
|
7038
|
+
useListModelServiceProviders(variables?: ListModelServiceProvidersQueryVariables, config?: SWRConfigInterface<ListModelServiceProvidersQuery, ClientError>): import("./useSWR").SWRResponsePro<ListModelServiceProvidersQuery, ClientError>;
|
|
7362
7039
|
useCheckModelService(variables: CheckModelServiceQueryVariables, config?: SWRConfigInterface<CheckModelServiceQuery, ClientError>): import("./useSWR").SWRResponsePro<CheckModelServiceQuery, ClientError>;
|
|
7363
7040
|
useListNodes(variables?: ListNodesQueryVariables, config?: SWRConfigInterface<ListNodesQuery, ClientError>): import("./useSWR").SWRResponsePro<ListNodesQuery, ClientError>;
|
|
7364
7041
|
useListPlugins(variables: ListPluginsQueryVariables, config?: SWRConfigInterface<ListPluginsQuery, ClientError>): import("./useSWR").SWRResponsePro<ListPluginsQuery, ClientError>;
|
|
@@ -7513,15 +7190,6 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
7513
7190
|
checkDatasource(variables: Exact<{
|
|
7514
7191
|
input: CreateDatasourceInput;
|
|
7515
7192
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<CheckDatasourceQuery>;
|
|
7516
|
-
createEmbedder(variables: Exact<{
|
|
7517
|
-
input: CreateEmbedderInput;
|
|
7518
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<CreateEmbedderMutation>;
|
|
7519
|
-
updateEmbedder(variables?: Exact<{
|
|
7520
|
-
input?: InputMaybe<UpdateEmbedderInput> | undefined;
|
|
7521
|
-
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<UpdateEmbedderMutation>;
|
|
7522
|
-
deleteEmbedders(variables: Exact<{
|
|
7523
|
-
input: DeleteCommonInput;
|
|
7524
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<DeleteEmbeddersMutation>;
|
|
7525
7193
|
listEmbedders(variables: Exact<{
|
|
7526
7194
|
input: ListCommonInput;
|
|
7527
7195
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListEmbeddersQuery>;
|
|
@@ -7586,6 +7254,9 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
7586
7254
|
listModelServices(variables?: Exact<{
|
|
7587
7255
|
input?: InputMaybe<ListModelServiceInput> | undefined;
|
|
7588
7256
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListModelServicesQuery>;
|
|
7257
|
+
listModelServiceProviders(variables?: Exact<{
|
|
7258
|
+
[key: string]: never;
|
|
7259
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListModelServiceProvidersQuery>;
|
|
7589
7260
|
checkModelService(variables: Exact<{
|
|
7590
7261
|
input: CreateModelServiceInput;
|
|
7591
7262
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<CheckModelServiceQuery>;
|
|
@@ -7630,15 +7301,6 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
7630
7301
|
listRayClusters(variables: Exact<{
|
|
7631
7302
|
input: ListCommonInput;
|
|
7632
7303
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListRayClustersQuery>;
|
|
7633
|
-
createReranker(variables: Exact<{
|
|
7634
|
-
input: CreateRerankerInput;
|
|
7635
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<CreateRerankerMutation>;
|
|
7636
|
-
updateReranker(variables?: Exact<{
|
|
7637
|
-
input?: InputMaybe<UpdateRerankerInput> | undefined;
|
|
7638
|
-
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<UpdateRerankerMutation>;
|
|
7639
|
-
deleteRerankers(variables: Exact<{
|
|
7640
|
-
input: DeleteCommonInput;
|
|
7641
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<DeleteRerankersMutation>;
|
|
7642
7304
|
listRerankers(variables: Exact<{
|
|
7643
7305
|
input: ListCommonInput;
|
|
7644
7306
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListRerankersQuery>;
|