@yuntijs/arcadia-bff-sdk 1.2.22 → 1.2.24
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 +127 -84
- package/dist/cjs/sdk.d.ts +421 -328
- package/dist/cjs/sdk.js +172 -105
- package/dist/cjs/taro.d.ts +92 -60
- package/dist/esm/index.d.ts +127 -84
- package/dist/esm/sdk.d.ts +421 -328
- package/dist/esm/sdk.js +130 -121
- package/dist/esm/taro.d.ts +92 -60
- 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
|
@@ -122,6 +122,8 @@ export type Application = {
|
|
|
122
122
|
model?: Maybe<Scalars['String']['output']>;
|
|
123
123
|
/** numDocuments 最终返回结果的引用上限 */
|
|
124
124
|
numDocuments?: Maybe<Scalars['Int']['output']>;
|
|
125
|
+
/** plugins 要使用的插件列表 */
|
|
126
|
+
plugins?: Maybe<Array<Maybe<Plugin>>>;
|
|
125
127
|
/** 对话开场白 */
|
|
126
128
|
prologue?: Maybe<Scalars['String']['output']>;
|
|
127
129
|
/** rerankModel rerank 模型,enableRerank 为 true 时起效,为空时使用默认 rerank 模型 */
|
|
@@ -138,8 +140,6 @@ export type Application = {
|
|
|
138
140
|
systemPrompt?: Maybe<Scalars['String']['output']>;
|
|
139
141
|
/** temperature 温度 */
|
|
140
142
|
temperature?: Maybe<Scalars['Float']['output']>;
|
|
141
|
-
/** tools 要使用的工具列表 */
|
|
142
|
-
tools?: Maybe<Array<Maybe<Tool>>>;
|
|
143
143
|
/** userPrompt 用户级别的 Prompt */
|
|
144
144
|
userPrompt?: Maybe<Scalars['String']['output']>;
|
|
145
145
|
};
|
|
@@ -151,6 +151,8 @@ export type ApplicationMetadata = {
|
|
|
151
151
|
__typename?: 'ApplicationMetadata';
|
|
152
152
|
/** 添加一些辅助性记录信息 */
|
|
153
153
|
annotations?: Maybe<Scalars['Map']['output']>;
|
|
154
|
+
/** Background, 智能体对话背景,base64 格式图片 */
|
|
155
|
+
background?: Maybe<Scalars['String']['output']>;
|
|
154
156
|
/** category:所属分类 */
|
|
155
157
|
category?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
156
158
|
/** 创建时间 */
|
|
@@ -252,8 +254,11 @@ export type ApplicationPromptInput = {
|
|
|
252
254
|
export type ApplicationQuery = {
|
|
253
255
|
__typename?: 'ApplicationQuery';
|
|
254
256
|
getApplication: Application;
|
|
257
|
+
getGPTStore: GptStore;
|
|
255
258
|
listApplicationMetadata: PaginatedResult;
|
|
256
259
|
listApplicationPrompt: PaginatedResult;
|
|
260
|
+
/** migrated from GPT */
|
|
261
|
+
listGPTCategory: Array<Maybe<GptCategory>>;
|
|
257
262
|
};
|
|
258
263
|
export type ApplicationQueryGetApplicationArgs = {
|
|
259
264
|
name: Scalars['String']['input'];
|
|
@@ -280,6 +285,8 @@ export type CountDataProcessItem = {
|
|
|
280
285
|
export type CreateApplicationMetadataInput = {
|
|
281
286
|
/** 添加一些辅助性记录信息 */
|
|
282
287
|
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
288
|
+
/** Background, 智能体对话背景,base64 格式图片 */
|
|
289
|
+
background?: InputMaybe<Scalars['String']['input']>;
|
|
283
290
|
/** category:所属分类 */
|
|
284
291
|
category?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
285
292
|
/** 描述信息 */
|
|
@@ -501,6 +508,28 @@ export type CreateModelServiceInput = {
|
|
|
501
508
|
*/
|
|
502
509
|
types?: InputMaybe<Scalars['String']['input']>;
|
|
503
510
|
};
|
|
511
|
+
export type CreatePluginInput = {
|
|
512
|
+
/** 添加一些辅助性记录信息 */
|
|
513
|
+
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
514
|
+
/** 描述信息 */
|
|
515
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
516
|
+
/** 展示名,别名 */
|
|
517
|
+
displayName: Scalars['String']['input'];
|
|
518
|
+
/** 一些用于标记,选择的的标签 */
|
|
519
|
+
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
520
|
+
/**
|
|
521
|
+
* 应用名称
|
|
522
|
+
* 规则: 遵循 k8s 命名
|
|
523
|
+
*/
|
|
524
|
+
name: Scalars['String']['input'];
|
|
525
|
+
/**
|
|
526
|
+
* 应用所在的namespace
|
|
527
|
+
* 规则: 非空
|
|
528
|
+
*/
|
|
529
|
+
namespace: Scalars['String']['input'];
|
|
530
|
+
/** 插件类型 */
|
|
531
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
532
|
+
};
|
|
504
533
|
export type CreateRagInput = {
|
|
505
534
|
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
506
535
|
application: TypedObjectReferenceInput;
|
|
@@ -1124,50 +1153,6 @@ export type FileWithVersionInput = {
|
|
|
1124
1153
|
path: Scalars['String']['input'];
|
|
1125
1154
|
version?: InputMaybe<Scalars['String']['input']>;
|
|
1126
1155
|
};
|
|
1127
|
-
/**
|
|
1128
|
-
* GPT
|
|
1129
|
-
* GPT应用需要的信息
|
|
1130
|
-
*/
|
|
1131
|
-
export type Gpt = {
|
|
1132
|
-
__typename?: 'GPT';
|
|
1133
|
-
/** category:gpt所属分类 */
|
|
1134
|
-
category?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1135
|
-
/** creator: 创造者 */
|
|
1136
|
-
creator?: Maybe<Scalars['String']['output']>;
|
|
1137
|
-
/** description: 描述信息 */
|
|
1138
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
1139
|
-
/** displayName: 展示名称 */
|
|
1140
|
-
displayName?: Maybe<Scalars['String']['output']>;
|
|
1141
|
-
/** enableUploadFile 是否开启对话上传文档功能 */
|
|
1142
|
-
enableUploadFile?: Maybe<Scalars['Boolean']['output']>;
|
|
1143
|
-
/** hot: 热度 */
|
|
1144
|
-
hot?: Maybe<Scalars['Int64']['output']>;
|
|
1145
|
-
/** icon: base64的图标 */
|
|
1146
|
-
icon?: Maybe<Scalars['String']['output']>;
|
|
1147
|
-
/** isRecommended, 是否推荐 */
|
|
1148
|
-
isRecommended?: Maybe<Scalars['Boolean']['output']>;
|
|
1149
|
-
/** name: 集群内唯一名称,实际是app的 namespace/name */
|
|
1150
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
1151
|
-
/**
|
|
1152
|
-
* notReadyReasonCode: 用于指明当前gpt状态不正常的原因。状态码要和应用中同字段保持一致。
|
|
1153
|
-
* 可选值:
|
|
1154
|
-
* - 空:就绪,gpt 可以使用
|
|
1155
|
-
* - VectorStoreIsNotReady: 向量数据库没有就绪
|
|
1156
|
-
* - EmbedderIsNotReady: embedder服务没有就绪
|
|
1157
|
-
* - KnowledgeBaseNotReady: 知识库未就绪,指向量数据库和embedder出错之外的其他情况
|
|
1158
|
-
* - LLMNotReady: 模型服务没有就绪
|
|
1159
|
-
* - ConfigError: 应用配置错误,比如写了多个Output节点,比如节点名称重复等其他错误
|
|
1160
|
-
*/
|
|
1161
|
-
notReadyReasonCode?: Maybe<Scalars['String']['output']>;
|
|
1162
|
-
/** 对话开场白 */
|
|
1163
|
-
prologue?: Maybe<Scalars['String']['output']>;
|
|
1164
|
-
/** showNextGuide 下一步引导,即是否在chat界面显示下一步引导 */
|
|
1165
|
-
showNextGuide?: Maybe<Scalars['Boolean']['output']>;
|
|
1166
|
-
/** showRespInfo 查看关联信息配置,即是否在chat界面显示关联信息 */
|
|
1167
|
-
showRespInfo?: Maybe<Scalars['Boolean']['output']>;
|
|
1168
|
-
/** showRetrievalInfo 查看引用配置,即是否在chat界面显示引用信息 */
|
|
1169
|
-
showRetrievalInfo?: Maybe<Scalars['Boolean']['output']>;
|
|
1170
|
-
};
|
|
1171
1156
|
/** GPTCategory in gpt store */
|
|
1172
1157
|
export type GptCategory = {
|
|
1173
1158
|
__typename?: 'GPTCategory';
|
|
@@ -1175,20 +1160,6 @@ export type GptCategory = {
|
|
|
1175
1160
|
name: Scalars['String']['output'];
|
|
1176
1161
|
nameEn: Scalars['String']['output'];
|
|
1177
1162
|
};
|
|
1178
|
-
export type GptQuery = {
|
|
1179
|
-
__typename?: 'GPTQuery';
|
|
1180
|
-
getGPT: Gpt;
|
|
1181
|
-
/** get the gpt store info */
|
|
1182
|
-
getGPTStore: GptStore;
|
|
1183
|
-
listGPT: PaginatedResult;
|
|
1184
|
-
listGPTCategory: Array<Maybe<GptCategory>>;
|
|
1185
|
-
};
|
|
1186
|
-
export type GptQueryGetGptArgs = {
|
|
1187
|
-
name: Scalars['String']['input'];
|
|
1188
|
-
};
|
|
1189
|
-
export type GptQueryListGptArgs = {
|
|
1190
|
-
input: ListGptInput;
|
|
1191
|
-
};
|
|
1192
1163
|
export type GptStore = {
|
|
1193
1164
|
__typename?: 'GPTStore';
|
|
1194
1165
|
public_namespace: Scalars['String']['output'];
|
|
@@ -1397,25 +1368,6 @@ export type ListDatasetInput = {
|
|
|
1397
1368
|
*/
|
|
1398
1369
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1399
1370
|
};
|
|
1400
|
-
export type ListGptInput = {
|
|
1401
|
-
/**
|
|
1402
|
-
* category: gpt所属分类
|
|
1403
|
-
* 规则:分类和关键词同时使用时是and的关系;不填时会默认返回推荐分类的结果
|
|
1404
|
-
*/
|
|
1405
|
-
category?: InputMaybe<Scalars['String']['input']>;
|
|
1406
|
-
/** 关键词: 模糊匹配 */
|
|
1407
|
-
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
1408
|
-
/**
|
|
1409
|
-
* 分页页码,
|
|
1410
|
-
* 规则: 从1开始,默认是1
|
|
1411
|
-
*/
|
|
1412
|
-
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1413
|
-
/**
|
|
1414
|
-
* 每页数量,
|
|
1415
|
-
* 规则: 默认10,值为-1返回全部
|
|
1416
|
-
*/
|
|
1417
|
-
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1418
|
-
};
|
|
1419
1371
|
/** 知识库分页列表查询的输入 */
|
|
1420
1372
|
export type ListKnowledgeBaseInput = {
|
|
1421
1373
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1512,6 +1464,33 @@ export type ListNodeInput = {
|
|
|
1512
1464
|
*/
|
|
1513
1465
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1514
1466
|
};
|
|
1467
|
+
export type ListPluginInput = {
|
|
1468
|
+
/** 基于应用过滤此引用使用的插件列表 */
|
|
1469
|
+
application?: InputMaybe<TypedObjectReferenceInput>;
|
|
1470
|
+
/** 字段选择器 */
|
|
1471
|
+
fieldSelector?: InputMaybe<Scalars['String']['input']>;
|
|
1472
|
+
/** 关键词: 模糊匹配 */
|
|
1473
|
+
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
1474
|
+
/** 标签选择器 */
|
|
1475
|
+
labelSelector?: InputMaybe<Scalars['String']['input']>;
|
|
1476
|
+
namespace: Scalars['String']['input'];
|
|
1477
|
+
/**
|
|
1478
|
+
* 分页页码,
|
|
1479
|
+
* 规则: 从1开始,默认是1
|
|
1480
|
+
*/
|
|
1481
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1482
|
+
/**
|
|
1483
|
+
* 每页数量,
|
|
1484
|
+
* 规则: 默认10
|
|
1485
|
+
*/
|
|
1486
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1487
|
+
/**
|
|
1488
|
+
* 是否包含系统提供的插件
|
|
1489
|
+
* 规则: 为true时,代表将同时获取系统提供的插件
|
|
1490
|
+
* 规则: 默认为false
|
|
1491
|
+
*/
|
|
1492
|
+
systemPlugin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1493
|
+
};
|
|
1515
1494
|
export type ListRagInput = {
|
|
1516
1495
|
appName: Scalars['String']['input'];
|
|
1517
1496
|
/** 根据名字,displayName字段获取 */
|
|
@@ -1665,7 +1644,7 @@ export type ModelService = {
|
|
|
1665
1644
|
annotations?: Maybe<Scalars['Map']['output']>;
|
|
1666
1645
|
/**
|
|
1667
1646
|
* 模型服务 API 类型
|
|
1668
|
-
* 规则:支持 openai, zhipuai
|
|
1647
|
+
* 规则:支持 openai, zhipuai,dashscope,gemini 四种类型
|
|
1669
1648
|
*/
|
|
1670
1649
|
apiType?: Maybe<Scalars['String']['output']>;
|
|
1671
1650
|
/** 服务地址: 仅针对第三方模型服务 */
|
|
@@ -1755,6 +1734,7 @@ export type Mutation = {
|
|
|
1755
1734
|
KnowledgeBase?: Maybe<KnowledgeBaseMutation>;
|
|
1756
1735
|
Model?: Maybe<ModelMutation>;
|
|
1757
1736
|
ModelService?: Maybe<ModelServiceMutation>;
|
|
1737
|
+
Plugin?: Maybe<PluginMutation>;
|
|
1758
1738
|
RAG?: Maybe<RagMutation>;
|
|
1759
1739
|
VersionedDataset?: Maybe<VersionedDatasetMutation>;
|
|
1760
1740
|
Worker?: Maybe<WorkerMutation>;
|
|
@@ -1800,7 +1780,7 @@ export type OssInput = {
|
|
|
1800
1780
|
bucket: Scalars['String']['input'];
|
|
1801
1781
|
object?: InputMaybe<Scalars['String']['input']>;
|
|
1802
1782
|
};
|
|
1803
|
-
export type PageNode = ApplicationMetadata | ApplicationPrompt | Dataset | Datasource | Embedder | F |
|
|
1783
|
+
export type PageNode = ApplicationMetadata | ApplicationPrompt | Dataset | Datasource | Embedder | F | KnowledgeBase | Llm | Model | ModelService | Node | Plugin | Rag | RayCluster | VersionedDataset | Worker;
|
|
1804
1784
|
export type PaginatedDataProcessItem = {
|
|
1805
1785
|
__typename?: 'PaginatedDataProcessItem';
|
|
1806
1786
|
data?: Maybe<Array<DataProcessItem>>;
|
|
@@ -1854,18 +1834,83 @@ export type Pg = {
|
|
|
1854
1834
|
export type PgInput = {
|
|
1855
1835
|
database: Scalars['String']['input'];
|
|
1856
1836
|
};
|
|
1837
|
+
export type Plugin = {
|
|
1838
|
+
__typename?: 'Plugin';
|
|
1839
|
+
/** 添加一些辅助性记录信息 */
|
|
1840
|
+
annotations?: Maybe<Scalars['Map']['output']>;
|
|
1841
|
+
/** 创建时间 */
|
|
1842
|
+
creationTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
1843
|
+
/**
|
|
1844
|
+
* 创建者,为当前用户的用户名
|
|
1845
|
+
* 规则: webhook启用后自动添加,默认为空
|
|
1846
|
+
*/
|
|
1847
|
+
creator?: Maybe<Scalars['String']['output']>;
|
|
1848
|
+
/** 描述信息 */
|
|
1849
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1850
|
+
/** 展示名,别名 */
|
|
1851
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
1852
|
+
/** 应用id,为CR资源中的metadata.uid */
|
|
1853
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1854
|
+
/** 一些用于标记,选择的的标签 */
|
|
1855
|
+
labels?: Maybe<Scalars['Map']['output']>;
|
|
1856
|
+
/**
|
|
1857
|
+
* 应用名称
|
|
1858
|
+
* 规则: 遵循 k8s 命名
|
|
1859
|
+
*/
|
|
1860
|
+
name: Scalars['String']['output'];
|
|
1861
|
+
/**
|
|
1862
|
+
* 应用所在的 namespace
|
|
1863
|
+
* 规则: 非空
|
|
1864
|
+
*/
|
|
1865
|
+
namespace: Scalars['String']['output'];
|
|
1866
|
+
/** 状态 */
|
|
1867
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
1868
|
+
/** 是否为平台内置插件 */
|
|
1869
|
+
systemPlugin?: Maybe<Scalars['Boolean']['output']>;
|
|
1870
|
+
/** 插件类型 */
|
|
1871
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
1872
|
+
/** 更新时间 */
|
|
1873
|
+
updateTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
1874
|
+
};
|
|
1875
|
+
export type PluginMutation = {
|
|
1876
|
+
__typename?: 'PluginMutation';
|
|
1877
|
+
createPlugin: Plugin;
|
|
1878
|
+
deletePlugin?: Maybe<Scalars['Void']['output']>;
|
|
1879
|
+
updatePlugin: Plugin;
|
|
1880
|
+
};
|
|
1881
|
+
export type PluginMutationCreatePluginArgs = {
|
|
1882
|
+
input: CreatePluginInput;
|
|
1883
|
+
};
|
|
1884
|
+
export type PluginMutationDeletePluginArgs = {
|
|
1885
|
+
input: DeleteCommonInput;
|
|
1886
|
+
};
|
|
1887
|
+
export type PluginMutationUpdatePluginArgs = {
|
|
1888
|
+
input: UpdatePluginInput;
|
|
1889
|
+
};
|
|
1890
|
+
export type PluginQuery = {
|
|
1891
|
+
__typename?: 'PluginQuery';
|
|
1892
|
+
getPlugin: Plugin;
|
|
1893
|
+
listPlugins: PaginatedResult;
|
|
1894
|
+
};
|
|
1895
|
+
export type PluginQueryGetPluginArgs = {
|
|
1896
|
+
name: Scalars['String']['input'];
|
|
1897
|
+
namespace: Scalars['String']['input'];
|
|
1898
|
+
};
|
|
1899
|
+
export type PluginQueryListPluginsArgs = {
|
|
1900
|
+
input: ListPluginInput;
|
|
1901
|
+
};
|
|
1857
1902
|
export type Query = {
|
|
1858
1903
|
__typename?: 'Query';
|
|
1859
1904
|
Application?: Maybe<ApplicationQuery>;
|
|
1860
1905
|
Dataset?: Maybe<DatasetQuery>;
|
|
1861
1906
|
Datasource?: Maybe<DatasourceQuery>;
|
|
1862
1907
|
Embedder?: Maybe<EmbedderQuery>;
|
|
1863
|
-
GPT?: Maybe<GptQuery>;
|
|
1864
1908
|
KnowledgeBase?: Maybe<KnowledgeBaseQuery>;
|
|
1865
1909
|
LLM?: Maybe<LlmQuery>;
|
|
1866
1910
|
Model?: Maybe<ModelQuery>;
|
|
1867
1911
|
ModelService?: Maybe<ModelServiceQuery>;
|
|
1868
1912
|
Node?: Maybe<NodeQuery>;
|
|
1913
|
+
Plugin?: Maybe<PluginQuery>;
|
|
1869
1914
|
RAG?: Maybe<RagQuery>;
|
|
1870
1915
|
RayCluster?: Maybe<RayClusterQuery>;
|
|
1871
1916
|
VersionedDataset?: Maybe<VersionedDatasetQuery>;
|
|
@@ -2075,61 +2120,6 @@ export type SelectorInput = {
|
|
|
2075
2120
|
matchExpressions?: InputMaybe<Array<InputMaybe<LabelSelectorRequirementInput>>>;
|
|
2076
2121
|
matchLabels?: InputMaybe<Scalars['Map']['input']>;
|
|
2077
2122
|
};
|
|
2078
|
-
/** Tool 应用和Agent中用到的工具 */
|
|
2079
|
-
export type Tool = {
|
|
2080
|
-
__typename?: 'Tool';
|
|
2081
|
-
/**
|
|
2082
|
-
* 名称,需要严格大小写一致,可选项为:"Bing Search API","calculator","Weather Query API","Web Scraper"
|
|
2083
|
-
* - "Bing Search API" bing搜索工具
|
|
2084
|
-
* - "calculator" 计算器
|
|
2085
|
-
* - "Weather Query API" 天气查询
|
|
2086
|
-
* - "Web Scraper" 网页爬取
|
|
2087
|
-
*/
|
|
2088
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
2089
|
-
/**
|
|
2090
|
-
* params 参数,需要严格大小写一致
|
|
2091
|
-
* "Bing Search API"
|
|
2092
|
-
* - apiKey:密钥,默认提供
|
|
2093
|
-
* - count:返回数目,默认为5
|
|
2094
|
-
* - scraperPage:是否抓取bing搜到的网页的内容,默认为true
|
|
2095
|
-
* "calculator" 没有参数
|
|
2096
|
-
* "Weather Query API"
|
|
2097
|
-
* - apiKey:密钥,默认提供;
|
|
2098
|
-
* "Web Scraper"
|
|
2099
|
-
* - delay:抓取时间间隔,秒,默认3
|
|
2100
|
-
* - async:是否异步抓取,是或者否,默认true
|
|
2101
|
-
* - handleLinks:是否从网页内的链接,继续抓取,是或者否,默认false
|
|
2102
|
-
* - blacklist:黑名单列表,用逗号隔开的字符串,默认是login,signup,signin,register,logout,download,redirect,表示这些页面都不抓取
|
|
2103
|
-
*/
|
|
2104
|
-
params?: Maybe<Scalars['Map']['output']>;
|
|
2105
|
-
};
|
|
2106
|
-
/** ToolInput 应用和Agent中用到的工具 */
|
|
2107
|
-
export type ToolInput = {
|
|
2108
|
-
/**
|
|
2109
|
-
* 名称,需要严格大小写一致,可选项为:"Bing Search API","calculator","Weather Query API","Web Scraper"
|
|
2110
|
-
* - "Bing Search API" bing搜索工具
|
|
2111
|
-
* - "calculator" 计算器
|
|
2112
|
-
* - "Weather Query API" 天气查询
|
|
2113
|
-
* - "Web Scraper" 网页爬取
|
|
2114
|
-
*/
|
|
2115
|
-
name: Scalars['String']['input'];
|
|
2116
|
-
/**
|
|
2117
|
-
* params 参数,可选,需要严格大小写一致
|
|
2118
|
-
* "Bing Search API"
|
|
2119
|
-
* - apiKey:密钥,默认提供
|
|
2120
|
-
* - count:返回数目,默认为5
|
|
2121
|
-
* - scraperPage:是否抓取bing搜到的网页的内容,默认为true
|
|
2122
|
-
* "calculator" 没有参数
|
|
2123
|
-
* "Weather Query API"
|
|
2124
|
-
* - apiKey:密钥,默认提供;
|
|
2125
|
-
* "Web Scraper"
|
|
2126
|
-
* - delay:抓取时间间隔,秒,默认3
|
|
2127
|
-
* - async:是否异步抓取,是或者否,默认true
|
|
2128
|
-
* - handleLinks:是否从网页内的链接,继续抓取,是或者否,默认false
|
|
2129
|
-
* - blacklist:黑名单列表,用逗号隔开的字符串,默认是login,signup,signin,register,logout,download,redirect,表示这些页面都不抓取
|
|
2130
|
-
*/
|
|
2131
|
-
params?: InputMaybe<Scalars['Map']['input']>;
|
|
2132
|
-
};
|
|
2133
2123
|
export type TypedObjectReference = {
|
|
2134
2124
|
__typename?: 'TypedObjectReference';
|
|
2135
2125
|
apiGroup?: Maybe<Scalars['String']['output']>;
|
|
@@ -2185,6 +2175,8 @@ export type UpdateApplicationConfigInput = {
|
|
|
2185
2175
|
namespace: Scalars['String']['input'];
|
|
2186
2176
|
/** numDocuments 最终返回结果的引用上限 */
|
|
2187
2177
|
numDocuments?: InputMaybe<Scalars['Int']['input']>;
|
|
2178
|
+
/** plugins 要使用的插件列表 */
|
|
2179
|
+
plugins?: InputMaybe<Array<InputMaybe<TypedObjectReferenceInput>>>;
|
|
2188
2180
|
/** 对话开场白 */
|
|
2189
2181
|
prologue?: InputMaybe<Scalars['String']['input']>;
|
|
2190
2182
|
/** rerankModel rerank 模型,enableRerank 为 true 时起效,为空时使用默认 rerank 模型 */
|
|
@@ -2201,14 +2193,14 @@ export type UpdateApplicationConfigInput = {
|
|
|
2201
2193
|
systemPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
2202
2194
|
/** temperature 温度 */
|
|
2203
2195
|
temperature?: InputMaybe<Scalars['Float']['input']>;
|
|
2204
|
-
/** tools 要使用的工具列表 */
|
|
2205
|
-
tools?: InputMaybe<Array<InputMaybe<ToolInput>>>;
|
|
2206
2196
|
/** userPrompt 用户级别的 Prompt */
|
|
2207
2197
|
userPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
2208
2198
|
};
|
|
2209
2199
|
export type UpdateApplicationMetadataInput = {
|
|
2210
2200
|
/** 添加一些辅助性记录信息,如果要更新,请传递完整内容 */
|
|
2211
2201
|
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
2202
|
+
/** Background, 智能体对话背景,base64 格式图片 */
|
|
2203
|
+
background?: InputMaybe<Scalars['String']['input']>;
|
|
2212
2204
|
/** category:所属分类 */
|
|
2213
2205
|
category?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2214
2206
|
/** 描述信息 */
|
|
@@ -2421,6 +2413,28 @@ export type UpdateModelServiceInput = {
|
|
|
2421
2413
|
*/
|
|
2422
2414
|
types?: InputMaybe<Scalars['String']['input']>;
|
|
2423
2415
|
};
|
|
2416
|
+
export type UpdatePluginInput = {
|
|
2417
|
+
/** 添加一些辅助性记录信息,如果要更新,请传递完整内容 */
|
|
2418
|
+
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
2419
|
+
/** 描述信息 */
|
|
2420
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
2421
|
+
/** 展示名,别名 */
|
|
2422
|
+
displayName: Scalars['String']['input'];
|
|
2423
|
+
/** 一些用于标记,选择的的标签,如果要更新,请传递完整内容 */
|
|
2424
|
+
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
2425
|
+
/**
|
|
2426
|
+
* 应用名称, 用于确定要更新哪个应用
|
|
2427
|
+
* 规则: 遵循 k8s 命名
|
|
2428
|
+
*/
|
|
2429
|
+
name: Scalars['String']['input'];
|
|
2430
|
+
/**
|
|
2431
|
+
* 应用所在的 namespace, 用于确定要更新哪个应用
|
|
2432
|
+
* 规则: 非空
|
|
2433
|
+
*/
|
|
2434
|
+
namespace: Scalars['String']['input'];
|
|
2435
|
+
/** 插件类型 */
|
|
2436
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
2437
|
+
};
|
|
2424
2438
|
export type UpdateRagInput = {
|
|
2425
2439
|
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
2426
2440
|
application?: InputMaybe<TypedObjectReferenceInput>;
|
|
@@ -2766,6 +2780,7 @@ export type CreateApplicationMutation = {
|
|
|
2766
2780
|
displayName?: string | null;
|
|
2767
2781
|
description?: string | null;
|
|
2768
2782
|
icon?: string | null;
|
|
2783
|
+
background?: string | null;
|
|
2769
2784
|
creator?: string | null;
|
|
2770
2785
|
creationTimestamp?: any | null;
|
|
2771
2786
|
updateTimestamp?: any | null;
|
|
@@ -2794,6 +2809,7 @@ export type UpdateApplicationMutation = {
|
|
|
2794
2809
|
displayName?: string | null;
|
|
2795
2810
|
description?: string | null;
|
|
2796
2811
|
icon?: string | null;
|
|
2812
|
+
background?: string | null;
|
|
2797
2813
|
creator?: string | null;
|
|
2798
2814
|
creationTimestamp?: any | null;
|
|
2799
2815
|
updateTimestamp?: any | null;
|
|
@@ -2858,6 +2874,7 @@ export type UpdateApplicationConfigMutation = {
|
|
|
2858
2874
|
displayName?: string | null;
|
|
2859
2875
|
description?: string | null;
|
|
2860
2876
|
icon?: string | null;
|
|
2877
|
+
background?: string | null;
|
|
2861
2878
|
creator?: string | null;
|
|
2862
2879
|
creationTimestamp?: any | null;
|
|
2863
2880
|
updateTimestamp?: any | null;
|
|
@@ -2867,10 +2884,10 @@ export type UpdateApplicationConfigMutation = {
|
|
|
2867
2884
|
category?: Array<string | null> | null;
|
|
2868
2885
|
notReadyReasonCode?: string | null;
|
|
2869
2886
|
} | null;
|
|
2870
|
-
|
|
2871
|
-
__typename?: '
|
|
2872
|
-
name
|
|
2873
|
-
|
|
2887
|
+
plugins?: Array<{
|
|
2888
|
+
__typename?: 'Plugin';
|
|
2889
|
+
name: string;
|
|
2890
|
+
namespace: string;
|
|
2874
2891
|
} | null> | null;
|
|
2875
2892
|
};
|
|
2876
2893
|
} | null;
|
|
@@ -2894,6 +2911,7 @@ export type ReleaseApplicationMutation = {
|
|
|
2894
2911
|
displayName?: string | null;
|
|
2895
2912
|
description?: string | null;
|
|
2896
2913
|
icon?: string | null;
|
|
2914
|
+
background?: string | null;
|
|
2897
2915
|
creator?: string | null;
|
|
2898
2916
|
creationTimestamp?: any | null;
|
|
2899
2917
|
updateTimestamp?: any | null;
|
|
@@ -2971,6 +2989,7 @@ export type GetApplicationQuery = {
|
|
|
2971
2989
|
displayName?: string | null;
|
|
2972
2990
|
description?: string | null;
|
|
2973
2991
|
icon?: string | null;
|
|
2992
|
+
background?: string | null;
|
|
2974
2993
|
creator?: string | null;
|
|
2975
2994
|
creationTimestamp?: any | null;
|
|
2976
2995
|
updateTimestamp?: any | null;
|
|
@@ -2980,10 +2999,10 @@ export type GetApplicationQuery = {
|
|
|
2980
2999
|
category?: Array<string | null> | null;
|
|
2981
3000
|
notReadyReasonCode?: string | null;
|
|
2982
3001
|
} | null;
|
|
2983
|
-
|
|
2984
|
-
__typename?: '
|
|
2985
|
-
name
|
|
2986
|
-
|
|
3002
|
+
plugins?: Array<{
|
|
3003
|
+
__typename?: 'Plugin';
|
|
3004
|
+
name: string;
|
|
3005
|
+
namespace: string;
|
|
2987
3006
|
} | null> | null;
|
|
2988
3007
|
};
|
|
2989
3008
|
} | null;
|
|
@@ -3011,6 +3030,7 @@ export type ListApplicationsQuery = {
|
|
|
3011
3030
|
displayName?: string | null;
|
|
3012
3031
|
description?: string | null;
|
|
3013
3032
|
icon?: string | null;
|
|
3033
|
+
background?: string | null;
|
|
3014
3034
|
creator?: string | null;
|
|
3015
3035
|
creationTimestamp?: any | null;
|
|
3016
3036
|
updateTimestamp?: any | null;
|
|
@@ -3029,8 +3049,6 @@ export type ListApplicationsQuery = {
|
|
|
3029
3049
|
__typename?: 'Embedder';
|
|
3030
3050
|
} | {
|
|
3031
3051
|
__typename?: 'F';
|
|
3032
|
-
} | {
|
|
3033
|
-
__typename?: 'GPT';
|
|
3034
3052
|
} | {
|
|
3035
3053
|
__typename?: 'KnowledgeBase';
|
|
3036
3054
|
} | {
|
|
@@ -3041,6 +3059,8 @@ export type ListApplicationsQuery = {
|
|
|
3041
3059
|
__typename?: 'ModelService';
|
|
3042
3060
|
} | {
|
|
3043
3061
|
__typename?: 'Node';
|
|
3062
|
+
} | {
|
|
3063
|
+
__typename?: 'Plugin';
|
|
3044
3064
|
} | {
|
|
3045
3065
|
__typename?: 'RAG';
|
|
3046
3066
|
} | {
|
|
@@ -3084,8 +3104,6 @@ export type ListApplicationPromptQuery = {
|
|
|
3084
3104
|
__typename?: 'Embedder';
|
|
3085
3105
|
} | {
|
|
3086
3106
|
__typename?: 'F';
|
|
3087
|
-
} | {
|
|
3088
|
-
__typename?: 'GPT';
|
|
3089
3107
|
} | {
|
|
3090
3108
|
__typename?: 'KnowledgeBase';
|
|
3091
3109
|
} | {
|
|
@@ -3096,6 +3114,8 @@ export type ListApplicationPromptQuery = {
|
|
|
3096
3114
|
__typename?: 'ModelService';
|
|
3097
3115
|
} | {
|
|
3098
3116
|
__typename?: 'Node';
|
|
3117
|
+
} | {
|
|
3118
|
+
__typename?: 'Plugin';
|
|
3099
3119
|
} | {
|
|
3100
3120
|
__typename?: 'RAG';
|
|
3101
3121
|
} | {
|
|
@@ -3108,6 +3128,35 @@ export type ListApplicationPromptQuery = {
|
|
|
3108
3128
|
};
|
|
3109
3129
|
} | null;
|
|
3110
3130
|
};
|
|
3131
|
+
export type ListGptCategoryQueryVariables = Exact<{
|
|
3132
|
+
[key: string]: never;
|
|
3133
|
+
}>;
|
|
3134
|
+
export type ListGptCategoryQuery = {
|
|
3135
|
+
__typename?: 'Query';
|
|
3136
|
+
Application?: {
|
|
3137
|
+
__typename?: 'ApplicationQuery';
|
|
3138
|
+
listGPTCategory: Array<{
|
|
3139
|
+
__typename?: 'GPTCategory';
|
|
3140
|
+
id: string;
|
|
3141
|
+
name: string;
|
|
3142
|
+
nameEn: string;
|
|
3143
|
+
} | null>;
|
|
3144
|
+
} | null;
|
|
3145
|
+
};
|
|
3146
|
+
export type GetGptStoreQueryVariables = Exact<{
|
|
3147
|
+
[key: string]: never;
|
|
3148
|
+
}>;
|
|
3149
|
+
export type GetGptStoreQuery = {
|
|
3150
|
+
__typename?: 'Query';
|
|
3151
|
+
Application?: {
|
|
3152
|
+
__typename?: 'ApplicationQuery';
|
|
3153
|
+
getGPTStore: {
|
|
3154
|
+
__typename?: 'GPTStore';
|
|
3155
|
+
url: string;
|
|
3156
|
+
public_namespace: string;
|
|
3157
|
+
};
|
|
3158
|
+
} | null;
|
|
3159
|
+
};
|
|
3111
3160
|
export type AllDataProcessListByPageQueryVariables = Exact<{
|
|
3112
3161
|
input: AllDataProcessListByPageInput;
|
|
3113
3162
|
}>;
|
|
@@ -3415,8 +3464,6 @@ export type ListDatasetsQuery = {
|
|
|
3415
3464
|
__typename?: 'Embedder';
|
|
3416
3465
|
} | {
|
|
3417
3466
|
__typename?: 'F';
|
|
3418
|
-
} | {
|
|
3419
|
-
__typename?: 'GPT';
|
|
3420
3467
|
} | {
|
|
3421
3468
|
__typename?: 'KnowledgeBase';
|
|
3422
3469
|
} | {
|
|
@@ -3427,6 +3474,8 @@ export type ListDatasetsQuery = {
|
|
|
3427
3474
|
__typename?: 'ModelService';
|
|
3428
3475
|
} | {
|
|
3429
3476
|
__typename?: 'Node';
|
|
3477
|
+
} | {
|
|
3478
|
+
__typename?: 'Plugin';
|
|
3430
3479
|
} | {
|
|
3431
3480
|
__typename?: 'RAG';
|
|
3432
3481
|
} | {
|
|
@@ -3456,8 +3505,6 @@ export type ListDatasetsQuery = {
|
|
|
3456
3505
|
__typename?: 'Embedder';
|
|
3457
3506
|
} | {
|
|
3458
3507
|
__typename?: 'F';
|
|
3459
|
-
} | {
|
|
3460
|
-
__typename?: 'GPT';
|
|
3461
3508
|
} | {
|
|
3462
3509
|
__typename?: 'KnowledgeBase';
|
|
3463
3510
|
} | {
|
|
@@ -3468,6 +3515,8 @@ export type ListDatasetsQuery = {
|
|
|
3468
3515
|
__typename?: 'ModelService';
|
|
3469
3516
|
} | {
|
|
3470
3517
|
__typename?: 'Node';
|
|
3518
|
+
} | {
|
|
3519
|
+
__typename?: 'Plugin';
|
|
3471
3520
|
} | {
|
|
3472
3521
|
__typename?: 'RAG';
|
|
3473
3522
|
} | {
|
|
@@ -3516,8 +3565,6 @@ export type GetDatasetQuery = {
|
|
|
3516
3565
|
__typename?: 'Embedder';
|
|
3517
3566
|
} | {
|
|
3518
3567
|
__typename?: 'F';
|
|
3519
|
-
} | {
|
|
3520
|
-
__typename?: 'GPT';
|
|
3521
3568
|
} | {
|
|
3522
3569
|
__typename?: 'KnowledgeBase';
|
|
3523
3570
|
} | {
|
|
@@ -3528,6 +3575,8 @@ export type GetDatasetQuery = {
|
|
|
3528
3575
|
__typename?: 'ModelService';
|
|
3529
3576
|
} | {
|
|
3530
3577
|
__typename?: 'Node';
|
|
3578
|
+
} | {
|
|
3579
|
+
__typename?: 'Plugin';
|
|
3531
3580
|
} | {
|
|
3532
3581
|
__typename?: 'RAG';
|
|
3533
3582
|
} | {
|
|
@@ -3753,8 +3802,6 @@ export type ListDatasourcesQuery = {
|
|
|
3753
3802
|
__typename: 'Embedder';
|
|
3754
3803
|
} | {
|
|
3755
3804
|
__typename: 'F';
|
|
3756
|
-
} | {
|
|
3757
|
-
__typename: 'GPT';
|
|
3758
3805
|
} | {
|
|
3759
3806
|
__typename: 'KnowledgeBase';
|
|
3760
3807
|
} | {
|
|
@@ -3765,6 +3812,8 @@ export type ListDatasourcesQuery = {
|
|
|
3765
3812
|
__typename: 'ModelService';
|
|
3766
3813
|
} | {
|
|
3767
3814
|
__typename: 'Node';
|
|
3815
|
+
} | {
|
|
3816
|
+
__typename: 'Plugin';
|
|
3768
3817
|
} | {
|
|
3769
3818
|
__typename: 'RAG';
|
|
3770
3819
|
} | {
|
|
@@ -3936,8 +3985,6 @@ export type ListEmbeddersQuery = {
|
|
|
3936
3985
|
message?: string | null;
|
|
3937
3986
|
} | {
|
|
3938
3987
|
__typename?: 'F';
|
|
3939
|
-
} | {
|
|
3940
|
-
__typename?: 'GPT';
|
|
3941
3988
|
} | {
|
|
3942
3989
|
__typename?: 'KnowledgeBase';
|
|
3943
3990
|
} | {
|
|
@@ -3948,6 +3995,8 @@ export type ListEmbeddersQuery = {
|
|
|
3948
3995
|
__typename?: 'ModelService';
|
|
3949
3996
|
} | {
|
|
3950
3997
|
__typename?: 'Node';
|
|
3998
|
+
} | {
|
|
3999
|
+
__typename?: 'Plugin';
|
|
3951
4000
|
} | {
|
|
3952
4001
|
__typename?: 'RAG';
|
|
3953
4002
|
} | {
|
|
@@ -3984,124 +4033,6 @@ export type GetEmbedderQuery = {
|
|
|
3984
4033
|
};
|
|
3985
4034
|
} | null;
|
|
3986
4035
|
};
|
|
3987
|
-
export type GetGptQueryVariables = Exact<{
|
|
3988
|
-
name: Scalars['String']['input'];
|
|
3989
|
-
}>;
|
|
3990
|
-
export type GetGptQuery = {
|
|
3991
|
-
__typename?: 'Query';
|
|
3992
|
-
GPT?: {
|
|
3993
|
-
__typename?: 'GPTQuery';
|
|
3994
|
-
getGPT: {
|
|
3995
|
-
__typename?: 'GPT';
|
|
3996
|
-
name?: string | null;
|
|
3997
|
-
displayName?: string | null;
|
|
3998
|
-
description?: string | null;
|
|
3999
|
-
hot?: any | null;
|
|
4000
|
-
creator?: string | null;
|
|
4001
|
-
isRecommended?: boolean | null;
|
|
4002
|
-
category?: Array<string | null> | null;
|
|
4003
|
-
icon?: string | null;
|
|
4004
|
-
prologue?: string | null;
|
|
4005
|
-
showRespInfo?: boolean | null;
|
|
4006
|
-
showRetrievalInfo?: boolean | null;
|
|
4007
|
-
showNextGuide?: boolean | null;
|
|
4008
|
-
enableUploadFile?: boolean | null;
|
|
4009
|
-
notReadyReasonCode?: string | null;
|
|
4010
|
-
};
|
|
4011
|
-
} | null;
|
|
4012
|
-
};
|
|
4013
|
-
export type ListGpTsQueryVariables = Exact<{
|
|
4014
|
-
input: ListGptInput;
|
|
4015
|
-
}>;
|
|
4016
|
-
export type ListGpTsQuery = {
|
|
4017
|
-
__typename?: 'Query';
|
|
4018
|
-
GPT?: {
|
|
4019
|
-
__typename?: 'GPTQuery';
|
|
4020
|
-
listGPT: {
|
|
4021
|
-
__typename?: 'PaginatedResult';
|
|
4022
|
-
page?: number | null;
|
|
4023
|
-
pageSize?: number | null;
|
|
4024
|
-
totalCount: number;
|
|
4025
|
-
hasNextPage: boolean;
|
|
4026
|
-
nodes?: Array<{
|
|
4027
|
-
__typename?: 'ApplicationMetadata';
|
|
4028
|
-
} | {
|
|
4029
|
-
__typename?: 'ApplicationPrompt';
|
|
4030
|
-
} | {
|
|
4031
|
-
__typename?: 'Dataset';
|
|
4032
|
-
} | {
|
|
4033
|
-
__typename?: 'Datasource';
|
|
4034
|
-
} | {
|
|
4035
|
-
__typename?: 'Embedder';
|
|
4036
|
-
} | {
|
|
4037
|
-
__typename?: 'F';
|
|
4038
|
-
} | {
|
|
4039
|
-
__typename?: 'GPT';
|
|
4040
|
-
name?: string | null;
|
|
4041
|
-
displayName?: string | null;
|
|
4042
|
-
description?: string | null;
|
|
4043
|
-
hot?: any | null;
|
|
4044
|
-
creator?: string | null;
|
|
4045
|
-
isRecommended?: boolean | null;
|
|
4046
|
-
category?: Array<string | null> | null;
|
|
4047
|
-
icon?: string | null;
|
|
4048
|
-
prologue?: string | null;
|
|
4049
|
-
showRespInfo?: boolean | null;
|
|
4050
|
-
showRetrievalInfo?: boolean | null;
|
|
4051
|
-
showNextGuide?: boolean | null;
|
|
4052
|
-
enableUploadFile?: boolean | null;
|
|
4053
|
-
notReadyReasonCode?: string | null;
|
|
4054
|
-
} | {
|
|
4055
|
-
__typename?: 'KnowledgeBase';
|
|
4056
|
-
} | {
|
|
4057
|
-
__typename?: 'LLM';
|
|
4058
|
-
} | {
|
|
4059
|
-
__typename?: 'Model';
|
|
4060
|
-
} | {
|
|
4061
|
-
__typename?: 'ModelService';
|
|
4062
|
-
} | {
|
|
4063
|
-
__typename?: 'Node';
|
|
4064
|
-
} | {
|
|
4065
|
-
__typename?: 'RAG';
|
|
4066
|
-
} | {
|
|
4067
|
-
__typename?: 'RayCluster';
|
|
4068
|
-
} | {
|
|
4069
|
-
__typename?: 'VersionedDataset';
|
|
4070
|
-
} | {
|
|
4071
|
-
__typename?: 'Worker';
|
|
4072
|
-
}> | null;
|
|
4073
|
-
};
|
|
4074
|
-
} | null;
|
|
4075
|
-
};
|
|
4076
|
-
export type ListGptCategoryQueryVariables = Exact<{
|
|
4077
|
-
[key: string]: never;
|
|
4078
|
-
}>;
|
|
4079
|
-
export type ListGptCategoryQuery = {
|
|
4080
|
-
__typename?: 'Query';
|
|
4081
|
-
GPT?: {
|
|
4082
|
-
__typename?: 'GPTQuery';
|
|
4083
|
-
listGPTCategory: Array<{
|
|
4084
|
-
__typename?: 'GPTCategory';
|
|
4085
|
-
id: string;
|
|
4086
|
-
name: string;
|
|
4087
|
-
nameEn: string;
|
|
4088
|
-
} | null>;
|
|
4089
|
-
} | null;
|
|
4090
|
-
};
|
|
4091
|
-
export type GetGptStoreQueryVariables = Exact<{
|
|
4092
|
-
[key: string]: never;
|
|
4093
|
-
}>;
|
|
4094
|
-
export type GetGptStoreQuery = {
|
|
4095
|
-
__typename?: 'Query';
|
|
4096
|
-
GPT?: {
|
|
4097
|
-
__typename?: 'GPTQuery';
|
|
4098
|
-
getGPTStore: {
|
|
4099
|
-
__typename?: 'GPTStore';
|
|
4100
|
-
url: string;
|
|
4101
|
-
public_namespace: string;
|
|
4102
|
-
};
|
|
4103
|
-
} | null;
|
|
4104
|
-
};
|
|
4105
4036
|
export type ListKnowledgeBasesQueryVariables = Exact<{
|
|
4106
4037
|
input: ListKnowledgeBaseInput;
|
|
4107
4038
|
}>;
|
|
@@ -4125,8 +4056,6 @@ export type ListKnowledgeBasesQuery = {
|
|
|
4125
4056
|
__typename?: 'Embedder';
|
|
4126
4057
|
} | {
|
|
4127
4058
|
__typename?: 'F';
|
|
4128
|
-
} | {
|
|
4129
|
-
__typename?: 'GPT';
|
|
4130
4059
|
} | {
|
|
4131
4060
|
__typename?: 'KnowledgeBase';
|
|
4132
4061
|
id?: string | null;
|
|
@@ -4186,6 +4115,8 @@ export type ListKnowledgeBasesQuery = {
|
|
|
4186
4115
|
__typename?: 'ModelService';
|
|
4187
4116
|
} | {
|
|
4188
4117
|
__typename?: 'Node';
|
|
4118
|
+
} | {
|
|
4119
|
+
__typename?: 'Plugin';
|
|
4189
4120
|
} | {
|
|
4190
4121
|
__typename?: 'RAG';
|
|
4191
4122
|
} | {
|
|
@@ -4415,8 +4346,6 @@ export type ListLlMsQuery = {
|
|
|
4415
4346
|
__typename?: 'Embedder';
|
|
4416
4347
|
} | {
|
|
4417
4348
|
__typename?: 'F';
|
|
4418
|
-
} | {
|
|
4419
|
-
__typename?: 'GPT';
|
|
4420
4349
|
} | {
|
|
4421
4350
|
__typename?: 'KnowledgeBase';
|
|
4422
4351
|
} | {
|
|
@@ -4440,6 +4369,8 @@ export type ListLlMsQuery = {
|
|
|
4440
4369
|
__typename?: 'ModelService';
|
|
4441
4370
|
} | {
|
|
4442
4371
|
__typename?: 'Node';
|
|
4372
|
+
} | {
|
|
4373
|
+
__typename?: 'Plugin';
|
|
4443
4374
|
} | {
|
|
4444
4375
|
__typename?: 'RAG';
|
|
4445
4376
|
} | {
|
|
@@ -4502,8 +4433,6 @@ export type ListModelsQuery = {
|
|
|
4502
4433
|
__typename: 'Embedder';
|
|
4503
4434
|
} | {
|
|
4504
4435
|
__typename: 'F';
|
|
4505
|
-
} | {
|
|
4506
|
-
__typename: 'GPT';
|
|
4507
4436
|
} | {
|
|
4508
4437
|
__typename: 'KnowledgeBase';
|
|
4509
4438
|
} | {
|
|
@@ -4550,8 +4479,6 @@ export type ListModelsQuery = {
|
|
|
4550
4479
|
count?: string | null;
|
|
4551
4480
|
size?: string | null;
|
|
4552
4481
|
creationTimestamp?: any | null;
|
|
4553
|
-
} | {
|
|
4554
|
-
__typename?: 'GPT';
|
|
4555
4482
|
} | {
|
|
4556
4483
|
__typename?: 'KnowledgeBase';
|
|
4557
4484
|
} | {
|
|
@@ -4562,6 +4489,8 @@ export type ListModelsQuery = {
|
|
|
4562
4489
|
__typename?: 'ModelService';
|
|
4563
4490
|
} | {
|
|
4564
4491
|
__typename?: 'Node';
|
|
4492
|
+
} | {
|
|
4493
|
+
__typename?: 'Plugin';
|
|
4565
4494
|
} | {
|
|
4566
4495
|
__typename?: 'RAG';
|
|
4567
4496
|
} | {
|
|
@@ -4576,6 +4505,8 @@ export type ListModelsQuery = {
|
|
|
4576
4505
|
__typename: 'ModelService';
|
|
4577
4506
|
} | {
|
|
4578
4507
|
__typename: 'Node';
|
|
4508
|
+
} | {
|
|
4509
|
+
__typename: 'Plugin';
|
|
4579
4510
|
} | {
|
|
4580
4511
|
__typename: 'RAG';
|
|
4581
4512
|
} | {
|
|
@@ -4639,8 +4570,6 @@ export type GetModelQuery = {
|
|
|
4639
4570
|
count?: string | null;
|
|
4640
4571
|
size?: string | null;
|
|
4641
4572
|
creationTimestamp?: any | null;
|
|
4642
|
-
} | {
|
|
4643
|
-
__typename?: 'GPT';
|
|
4644
4573
|
} | {
|
|
4645
4574
|
__typename?: 'KnowledgeBase';
|
|
4646
4575
|
} | {
|
|
@@ -4651,6 +4580,8 @@ export type GetModelQuery = {
|
|
|
4651
4580
|
__typename?: 'ModelService';
|
|
4652
4581
|
} | {
|
|
4653
4582
|
__typename?: 'Node';
|
|
4583
|
+
} | {
|
|
4584
|
+
__typename?: 'Plugin';
|
|
4654
4585
|
} | {
|
|
4655
4586
|
__typename?: 'RAG';
|
|
4656
4587
|
} | {
|
|
@@ -4858,8 +4789,6 @@ export type ListModelServicesQuery = {
|
|
|
4858
4789
|
__typename: 'Embedder';
|
|
4859
4790
|
} | {
|
|
4860
4791
|
__typename: 'F';
|
|
4861
|
-
} | {
|
|
4862
|
-
__typename: 'GPT';
|
|
4863
4792
|
} | {
|
|
4864
4793
|
__typename: 'KnowledgeBase';
|
|
4865
4794
|
} | {
|
|
@@ -4888,6 +4817,8 @@ export type ListModelServicesQuery = {
|
|
|
4888
4817
|
baseUrl: string;
|
|
4889
4818
|
} | {
|
|
4890
4819
|
__typename: 'Node';
|
|
4820
|
+
} | {
|
|
4821
|
+
__typename: 'Plugin';
|
|
4891
4822
|
} | {
|
|
4892
4823
|
__typename: 'RAG';
|
|
4893
4824
|
} | {
|
|
@@ -4940,7 +4871,54 @@ export type ListNodesQuery = {
|
|
|
4940
4871
|
} | {
|
|
4941
4872
|
__typename: 'F';
|
|
4942
4873
|
} | {
|
|
4943
|
-
__typename: '
|
|
4874
|
+
__typename: 'KnowledgeBase';
|
|
4875
|
+
} | {
|
|
4876
|
+
__typename: 'LLM';
|
|
4877
|
+
} | {
|
|
4878
|
+
__typename: 'Model';
|
|
4879
|
+
} | {
|
|
4880
|
+
__typename: 'ModelService';
|
|
4881
|
+
} | {
|
|
4882
|
+
__typename: 'Node';
|
|
4883
|
+
name: string;
|
|
4884
|
+
labels?: any | null;
|
|
4885
|
+
} | {
|
|
4886
|
+
__typename: 'Plugin';
|
|
4887
|
+
} | {
|
|
4888
|
+
__typename: 'RAG';
|
|
4889
|
+
} | {
|
|
4890
|
+
__typename: 'RayCluster';
|
|
4891
|
+
} | {
|
|
4892
|
+
__typename: 'VersionedDataset';
|
|
4893
|
+
} | {
|
|
4894
|
+
__typename: 'Worker';
|
|
4895
|
+
}> | null;
|
|
4896
|
+
};
|
|
4897
|
+
} | null;
|
|
4898
|
+
};
|
|
4899
|
+
export type ListPluginsQueryVariables = Exact<{
|
|
4900
|
+
input: ListPluginInput;
|
|
4901
|
+
}>;
|
|
4902
|
+
export type ListPluginsQuery = {
|
|
4903
|
+
__typename?: 'Query';
|
|
4904
|
+
Plugin?: {
|
|
4905
|
+
__typename?: 'PluginQuery';
|
|
4906
|
+
listPlugins: {
|
|
4907
|
+
__typename?: 'PaginatedResult';
|
|
4908
|
+
totalCount: number;
|
|
4909
|
+
hasNextPage: boolean;
|
|
4910
|
+
nodes?: Array<{
|
|
4911
|
+
__typename: 'ApplicationMetadata';
|
|
4912
|
+
} | {
|
|
4913
|
+
__typename: 'ApplicationPrompt';
|
|
4914
|
+
} | {
|
|
4915
|
+
__typename: 'Dataset';
|
|
4916
|
+
} | {
|
|
4917
|
+
__typename: 'Datasource';
|
|
4918
|
+
} | {
|
|
4919
|
+
__typename: 'Embedder';
|
|
4920
|
+
} | {
|
|
4921
|
+
__typename: 'F';
|
|
4944
4922
|
} | {
|
|
4945
4923
|
__typename: 'KnowledgeBase';
|
|
4946
4924
|
} | {
|
|
@@ -4951,8 +4929,21 @@ export type ListNodesQuery = {
|
|
|
4951
4929
|
__typename: 'ModelService';
|
|
4952
4930
|
} | {
|
|
4953
4931
|
__typename: 'Node';
|
|
4932
|
+
} | {
|
|
4933
|
+
__typename: 'Plugin';
|
|
4934
|
+
id?: string | null;
|
|
4935
|
+
creationTimestamp?: any | null;
|
|
4954
4936
|
name: string;
|
|
4937
|
+
namespace: string;
|
|
4938
|
+
systemPlugin?: boolean | null;
|
|
4955
4939
|
labels?: any | null;
|
|
4940
|
+
annotations?: any | null;
|
|
4941
|
+
creator?: string | null;
|
|
4942
|
+
displayName?: string | null;
|
|
4943
|
+
description?: string | null;
|
|
4944
|
+
type?: string | null;
|
|
4945
|
+
status?: string | null;
|
|
4946
|
+
updateTimestamp?: any | null;
|
|
4956
4947
|
} | {
|
|
4957
4948
|
__typename: 'RAG';
|
|
4958
4949
|
} | {
|
|
@@ -4965,6 +4956,92 @@ export type ListNodesQuery = {
|
|
|
4965
4956
|
};
|
|
4966
4957
|
} | null;
|
|
4967
4958
|
};
|
|
4959
|
+
export type GetPluginQueryVariables = Exact<{
|
|
4960
|
+
name: Scalars['String']['input'];
|
|
4961
|
+
namespace: Scalars['String']['input'];
|
|
4962
|
+
}>;
|
|
4963
|
+
export type GetPluginQuery = {
|
|
4964
|
+
__typename?: 'Query';
|
|
4965
|
+
Plugin?: {
|
|
4966
|
+
__typename?: 'PluginQuery';
|
|
4967
|
+
getPlugin: {
|
|
4968
|
+
__typename?: 'Plugin';
|
|
4969
|
+
id?: string | null;
|
|
4970
|
+
creationTimestamp?: any | null;
|
|
4971
|
+
name: string;
|
|
4972
|
+
namespace: string;
|
|
4973
|
+
systemPlugin?: boolean | null;
|
|
4974
|
+
labels?: any | null;
|
|
4975
|
+
annotations?: any | null;
|
|
4976
|
+
creator?: string | null;
|
|
4977
|
+
displayName?: string | null;
|
|
4978
|
+
description?: string | null;
|
|
4979
|
+
type?: string | null;
|
|
4980
|
+
status?: string | null;
|
|
4981
|
+
updateTimestamp?: any | null;
|
|
4982
|
+
};
|
|
4983
|
+
} | null;
|
|
4984
|
+
};
|
|
4985
|
+
export type CreatePluginMutationVariables = Exact<{
|
|
4986
|
+
input: CreatePluginInput;
|
|
4987
|
+
}>;
|
|
4988
|
+
export type CreatePluginMutation = {
|
|
4989
|
+
__typename?: 'Mutation';
|
|
4990
|
+
Plugin?: {
|
|
4991
|
+
__typename?: 'PluginMutation';
|
|
4992
|
+
createPlugin: {
|
|
4993
|
+
__typename?: 'Plugin';
|
|
4994
|
+
id?: string | null;
|
|
4995
|
+
creationTimestamp?: any | null;
|
|
4996
|
+
name: string;
|
|
4997
|
+
namespace: string;
|
|
4998
|
+
systemPlugin?: boolean | null;
|
|
4999
|
+
labels?: any | null;
|
|
5000
|
+
annotations?: any | null;
|
|
5001
|
+
creator?: string | null;
|
|
5002
|
+
displayName?: string | null;
|
|
5003
|
+
description?: string | null;
|
|
5004
|
+
type?: string | null;
|
|
5005
|
+
status?: string | null;
|
|
5006
|
+
updateTimestamp?: any | null;
|
|
5007
|
+
};
|
|
5008
|
+
} | null;
|
|
5009
|
+
};
|
|
5010
|
+
export type UpdatePluginMutationVariables = Exact<{
|
|
5011
|
+
input: UpdatePluginInput;
|
|
5012
|
+
}>;
|
|
5013
|
+
export type UpdatePluginMutation = {
|
|
5014
|
+
__typename?: 'Mutation';
|
|
5015
|
+
Plugin?: {
|
|
5016
|
+
__typename?: 'PluginMutation';
|
|
5017
|
+
updatePlugin: {
|
|
5018
|
+
__typename?: 'Plugin';
|
|
5019
|
+
id?: string | null;
|
|
5020
|
+
creationTimestamp?: any | null;
|
|
5021
|
+
name: string;
|
|
5022
|
+
namespace: string;
|
|
5023
|
+
systemPlugin?: boolean | null;
|
|
5024
|
+
labels?: any | null;
|
|
5025
|
+
annotations?: any | null;
|
|
5026
|
+
creator?: string | null;
|
|
5027
|
+
displayName?: string | null;
|
|
5028
|
+
description?: string | null;
|
|
5029
|
+
type?: string | null;
|
|
5030
|
+
status?: string | null;
|
|
5031
|
+
updateTimestamp?: any | null;
|
|
5032
|
+
};
|
|
5033
|
+
} | null;
|
|
5034
|
+
};
|
|
5035
|
+
export type DeletePluginMutationVariables = Exact<{
|
|
5036
|
+
input: DeleteCommonInput;
|
|
5037
|
+
}>;
|
|
5038
|
+
export type DeletePluginMutation = {
|
|
5039
|
+
__typename?: 'Mutation';
|
|
5040
|
+
Plugin?: {
|
|
5041
|
+
__typename?: 'PluginMutation';
|
|
5042
|
+
deletePlugin?: any | null;
|
|
5043
|
+
} | null;
|
|
5044
|
+
};
|
|
4968
5045
|
export type ListRagQueryVariables = Exact<{
|
|
4969
5046
|
input: ListRagInput;
|
|
4970
5047
|
}>;
|
|
@@ -4988,8 +5065,6 @@ export type ListRagQuery = {
|
|
|
4988
5065
|
__typename?: 'Embedder';
|
|
4989
5066
|
} | {
|
|
4990
5067
|
__typename?: 'F';
|
|
4991
|
-
} | {
|
|
4992
|
-
__typename?: 'GPT';
|
|
4993
5068
|
} | {
|
|
4994
5069
|
__typename?: 'KnowledgeBase';
|
|
4995
5070
|
} | {
|
|
@@ -5000,6 +5075,8 @@ export type ListRagQuery = {
|
|
|
5000
5075
|
__typename?: 'ModelService';
|
|
5001
5076
|
} | {
|
|
5002
5077
|
__typename?: 'Node';
|
|
5078
|
+
} | {
|
|
5079
|
+
__typename?: 'Plugin';
|
|
5003
5080
|
} | {
|
|
5004
5081
|
__typename?: 'RAG';
|
|
5005
5082
|
name: string;
|
|
@@ -5381,8 +5458,6 @@ export type ListRayClustersQuery = {
|
|
|
5381
5458
|
__typename: 'Embedder';
|
|
5382
5459
|
} | {
|
|
5383
5460
|
__typename: 'F';
|
|
5384
|
-
} | {
|
|
5385
|
-
__typename: 'GPT';
|
|
5386
5461
|
} | {
|
|
5387
5462
|
__typename: 'KnowledgeBase';
|
|
5388
5463
|
} | {
|
|
@@ -5393,6 +5468,8 @@ export type ListRayClustersQuery = {
|
|
|
5393
5468
|
__typename: 'ModelService';
|
|
5394
5469
|
} | {
|
|
5395
5470
|
__typename: 'Node';
|
|
5471
|
+
} | {
|
|
5472
|
+
__typename: 'Plugin';
|
|
5396
5473
|
} | {
|
|
5397
5474
|
__typename: 'RAG';
|
|
5398
5475
|
} | {
|
|
@@ -5505,8 +5582,6 @@ export type GetVersionedDatasetQuery = {
|
|
|
5505
5582
|
versions?: Array<string> | null;
|
|
5506
5583
|
latestVersion?: string | null;
|
|
5507
5584
|
creationTimestamp?: any | null;
|
|
5508
|
-
} | {
|
|
5509
|
-
__typename?: 'GPT';
|
|
5510
5585
|
} | {
|
|
5511
5586
|
__typename?: 'KnowledgeBase';
|
|
5512
5587
|
} | {
|
|
@@ -5517,6 +5592,8 @@ export type GetVersionedDatasetQuery = {
|
|
|
5517
5592
|
__typename?: 'ModelService';
|
|
5518
5593
|
} | {
|
|
5519
5594
|
__typename?: 'Node';
|
|
5595
|
+
} | {
|
|
5596
|
+
__typename?: 'Plugin';
|
|
5520
5597
|
} | {
|
|
5521
5598
|
__typename?: 'RAG';
|
|
5522
5599
|
} | {
|
|
@@ -5554,8 +5631,6 @@ export type ListVersionedDatasetsQuery = {
|
|
|
5554
5631
|
__typename?: 'Embedder';
|
|
5555
5632
|
} | {
|
|
5556
5633
|
__typename?: 'F';
|
|
5557
|
-
} | {
|
|
5558
|
-
__typename?: 'GPT';
|
|
5559
5634
|
} | {
|
|
5560
5635
|
__typename?: 'KnowledgeBase';
|
|
5561
5636
|
} | {
|
|
@@ -5566,6 +5641,8 @@ export type ListVersionedDatasetsQuery = {
|
|
|
5566
5641
|
__typename?: 'ModelService';
|
|
5567
5642
|
} | {
|
|
5568
5643
|
__typename?: 'Node';
|
|
5644
|
+
} | {
|
|
5645
|
+
__typename?: 'Plugin';
|
|
5569
5646
|
} | {
|
|
5570
5647
|
__typename?: 'RAG';
|
|
5571
5648
|
} | {
|
|
@@ -5610,8 +5687,6 @@ export type ListVersionedDatasetsQuery = {
|
|
|
5610
5687
|
versions?: Array<string> | null;
|
|
5611
5688
|
latestVersion?: string | null;
|
|
5612
5689
|
creationTimestamp?: any | null;
|
|
5613
|
-
} | {
|
|
5614
|
-
__typename?: 'GPT';
|
|
5615
5690
|
} | {
|
|
5616
5691
|
__typename?: 'KnowledgeBase';
|
|
5617
5692
|
} | {
|
|
@@ -5622,6 +5697,8 @@ export type ListVersionedDatasetsQuery = {
|
|
|
5622
5697
|
__typename?: 'ModelService';
|
|
5623
5698
|
} | {
|
|
5624
5699
|
__typename?: 'Node';
|
|
5700
|
+
} | {
|
|
5701
|
+
__typename?: 'Plugin';
|
|
5625
5702
|
} | {
|
|
5626
5703
|
__typename?: 'RAG';
|
|
5627
5704
|
} | {
|
|
@@ -5661,8 +5738,6 @@ export type ListWorkersQuery = {
|
|
|
5661
5738
|
__typename: 'Embedder';
|
|
5662
5739
|
} | {
|
|
5663
5740
|
__typename: 'F';
|
|
5664
|
-
} | {
|
|
5665
|
-
__typename: 'GPT';
|
|
5666
5741
|
} | {
|
|
5667
5742
|
__typename: 'KnowledgeBase';
|
|
5668
5743
|
} | {
|
|
@@ -5673,6 +5748,8 @@ export type ListWorkersQuery = {
|
|
|
5673
5748
|
__typename: 'ModelService';
|
|
5674
5749
|
} | {
|
|
5675
5750
|
__typename: 'Node';
|
|
5751
|
+
} | {
|
|
5752
|
+
__typename: 'Plugin';
|
|
5676
5753
|
} | {
|
|
5677
5754
|
__typename: 'RAG';
|
|
5678
5755
|
} | {
|
|
@@ -5906,6 +5983,8 @@ export declare const DeleteApplicationPromptDocument: import("../node_modules/.p
|
|
|
5906
5983
|
export declare const GetApplicationDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5907
5984
|
export declare const ListApplicationsDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5908
5985
|
export declare const ListApplicationPromptDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5986
|
+
export declare const ListGptCategoryDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5987
|
+
export declare const GetGptStoreDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5909
5988
|
export declare const AllDataProcessListByPageDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5910
5989
|
export declare const AllDataProcessListByCountDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5911
5990
|
export declare const DataProcessSupportTypeDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
@@ -5932,10 +6011,6 @@ export declare const UpdateEmbedderDocument: import("../node_modules/.pnpm/graph
|
|
|
5932
6011
|
export declare const DeleteEmbeddersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5933
6012
|
export declare const ListEmbeddersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5934
6013
|
export declare const GetEmbedderDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5935
|
-
export declare const GetGptDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5936
|
-
export declare const ListGpTsDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5937
|
-
export declare const ListGptCategoryDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5938
|
-
export declare const GetGptStoreDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5939
6014
|
export declare const ListKnowledgeBasesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5940
6015
|
export declare const GetKnowledgeBaseDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5941
6016
|
export declare const CreateKnowledgeBaseDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
@@ -5955,6 +6030,11 @@ export declare const GetModelServiceDocument: import("../node_modules/.pnpm/grap
|
|
|
5955
6030
|
export declare const ListModelServicesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5956
6031
|
export declare const CheckModelServiceDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5957
6032
|
export declare const ListNodesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
6033
|
+
export declare const ListPluginsDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
6034
|
+
export declare const GetPluginDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
6035
|
+
export declare const CreatePluginDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
6036
|
+
export declare const UpdatePluginDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
6037
|
+
export declare const DeletePluginDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5958
6038
|
export declare const ListRagDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5959
6039
|
export declare const GetRagDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5960
6040
|
export declare const CreateRagDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
@@ -5983,6 +6063,8 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
5983
6063
|
getApplication(variables: GetApplicationQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetApplicationQuery>;
|
|
5984
6064
|
listApplications(variables: ListApplicationsQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListApplicationsQuery>;
|
|
5985
6065
|
listApplicationPrompt(variables: ListApplicationPromptQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListApplicationPromptQuery>;
|
|
6066
|
+
listGPTCategory(variables?: ListGptCategoryQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListGptCategoryQuery>;
|
|
6067
|
+
getGPTStore(variables?: GetGptStoreQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetGptStoreQuery>;
|
|
5986
6068
|
allDataProcessListByPage(variables: AllDataProcessListByPageQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<AllDataProcessListByPageQuery>;
|
|
5987
6069
|
allDataProcessListByCount(variables: AllDataProcessListByCountQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<AllDataProcessListByCountQuery>;
|
|
5988
6070
|
dataProcessSupportType(variables?: DataProcessSupportTypeQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<DataProcessSupportTypeQuery>;
|
|
@@ -6009,10 +6091,6 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
6009
6091
|
deleteEmbedders(variables: DeleteEmbeddersMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<DeleteEmbeddersMutation>;
|
|
6010
6092
|
listEmbedders(variables: ListEmbeddersQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListEmbeddersQuery>;
|
|
6011
6093
|
getEmbedder(variables: GetEmbedderQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetEmbedderQuery>;
|
|
6012
|
-
getGPT(variables: GetGptQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetGptQuery>;
|
|
6013
|
-
listGPTs(variables: ListGpTsQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListGpTsQuery>;
|
|
6014
|
-
listGPTCategory(variables?: ListGptCategoryQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListGptCategoryQuery>;
|
|
6015
|
-
getGPTStore(variables?: GetGptStoreQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetGptStoreQuery>;
|
|
6016
6094
|
listKnowledgeBases(variables: ListKnowledgeBasesQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListKnowledgeBasesQuery>;
|
|
6017
6095
|
getKnowledgeBase(variables: GetKnowledgeBaseQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetKnowledgeBaseQuery>;
|
|
6018
6096
|
createKnowledgeBase(variables: CreateKnowledgeBaseMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<CreateKnowledgeBaseMutation>;
|
|
@@ -6032,6 +6110,11 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
6032
6110
|
listModelServices(variables?: ListModelServicesQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListModelServicesQuery>;
|
|
6033
6111
|
checkModelService(variables: CheckModelServiceQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<CheckModelServiceQuery>;
|
|
6034
6112
|
listNodes(variables?: ListNodesQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListNodesQuery>;
|
|
6113
|
+
listPlugins(variables: ListPluginsQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListPluginsQuery>;
|
|
6114
|
+
getPlugin(variables: GetPluginQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetPluginQuery>;
|
|
6115
|
+
createPlugin(variables: CreatePluginMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<CreatePluginMutation>;
|
|
6116
|
+
updatePlugin(variables: UpdatePluginMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<UpdatePluginMutation>;
|
|
6117
|
+
deletePlugin(variables: DeletePluginMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<DeletePluginMutation>;
|
|
6035
6118
|
listRAG(variables: ListRagQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListRagQuery>;
|
|
6036
6119
|
getRAG(variables: GetRagQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetRagQuery>;
|
|
6037
6120
|
createRAG(variables: CreateRagMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<CreateRagMutation>;
|
|
@@ -6054,6 +6137,8 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
6054
6137
|
useGetApplication(variables: GetApplicationQueryVariables, config?: SWRConfigInterface<GetApplicationQuery, ClientError>): import("./useSWR").SWRResponsePro<GetApplicationQuery, ClientError>;
|
|
6055
6138
|
useListApplications(variables: ListApplicationsQueryVariables, config?: SWRConfigInterface<ListApplicationsQuery, ClientError>): import("./useSWR").SWRResponsePro<ListApplicationsQuery, ClientError>;
|
|
6056
6139
|
useListApplicationPrompt(variables: ListApplicationPromptQueryVariables, config?: SWRConfigInterface<ListApplicationPromptQuery, ClientError>): import("./useSWR").SWRResponsePro<ListApplicationPromptQuery, ClientError>;
|
|
6140
|
+
useListGptCategory(variables?: ListGptCategoryQueryVariables, config?: SWRConfigInterface<ListGptCategoryQuery, ClientError>): import("./useSWR").SWRResponsePro<ListGptCategoryQuery, ClientError>;
|
|
6141
|
+
useGetGptStore(variables?: GetGptStoreQueryVariables, config?: SWRConfigInterface<GetGptStoreQuery, ClientError>): import("./useSWR").SWRResponsePro<GetGptStoreQuery, ClientError>;
|
|
6057
6142
|
useAllDataProcessListByPage(variables: AllDataProcessListByPageQueryVariables, config?: SWRConfigInterface<AllDataProcessListByPageQuery, ClientError>): import("./useSWR").SWRResponsePro<AllDataProcessListByPageQuery, ClientError>;
|
|
6058
6143
|
useAllDataProcessListByCount(variables: AllDataProcessListByCountQueryVariables, config?: SWRConfigInterface<AllDataProcessListByCountQuery, ClientError>): import("./useSWR").SWRResponsePro<AllDataProcessListByCountQuery, ClientError>;
|
|
6059
6144
|
useDataProcessSupportType(variables?: DataProcessSupportTypeQueryVariables, config?: SWRConfigInterface<DataProcessSupportTypeQuery, ClientError>): import("./useSWR").SWRResponsePro<DataProcessSupportTypeQuery, ClientError>;
|
|
@@ -6069,10 +6154,6 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
6069
6154
|
useCheckDatasource(variables: CheckDatasourceQueryVariables, config?: SWRConfigInterface<CheckDatasourceQuery, ClientError>): import("./useSWR").SWRResponsePro<CheckDatasourceQuery, ClientError>;
|
|
6070
6155
|
useListEmbedders(variables: ListEmbeddersQueryVariables, config?: SWRConfigInterface<ListEmbeddersQuery, ClientError>): import("./useSWR").SWRResponsePro<ListEmbeddersQuery, ClientError>;
|
|
6071
6156
|
useGetEmbedder(variables: GetEmbedderQueryVariables, config?: SWRConfigInterface<GetEmbedderQuery, ClientError>): import("./useSWR").SWRResponsePro<GetEmbedderQuery, ClientError>;
|
|
6072
|
-
useGetGpt(variables: GetGptQueryVariables, config?: SWRConfigInterface<GetGptQuery, ClientError>): import("./useSWR").SWRResponsePro<GetGptQuery, ClientError>;
|
|
6073
|
-
useListGpTs(variables: ListGpTsQueryVariables, config?: SWRConfigInterface<ListGpTsQuery, ClientError>): import("./useSWR").SWRResponsePro<ListGpTsQuery, ClientError>;
|
|
6074
|
-
useListGptCategory(variables?: ListGptCategoryQueryVariables, config?: SWRConfigInterface<ListGptCategoryQuery, ClientError>): import("./useSWR").SWRResponsePro<ListGptCategoryQuery, ClientError>;
|
|
6075
|
-
useGetGptStore(variables?: GetGptStoreQueryVariables, config?: SWRConfigInterface<GetGptStoreQuery, ClientError>): import("./useSWR").SWRResponsePro<GetGptStoreQuery, ClientError>;
|
|
6076
6157
|
useListKnowledgeBases(variables: ListKnowledgeBasesQueryVariables, config?: SWRConfigInterface<ListKnowledgeBasesQuery, ClientError>): import("./useSWR").SWRResponsePro<ListKnowledgeBasesQuery, ClientError>;
|
|
6077
6158
|
useGetKnowledgeBase(variables: GetKnowledgeBaseQueryVariables, config?: SWRConfigInterface<GetKnowledgeBaseQuery, ClientError>): import("./useSWR").SWRResponsePro<GetKnowledgeBaseQuery, ClientError>;
|
|
6078
6159
|
useListLlMs(variables: ListLlMsQueryVariables, config?: SWRConfigInterface<ListLlMsQuery, ClientError>): import("./useSWR").SWRResponsePro<ListLlMsQuery, ClientError>;
|
|
@@ -6083,6 +6164,8 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
6083
6164
|
useListModelServices(variables?: ListModelServicesQueryVariables, config?: SWRConfigInterface<ListModelServicesQuery, ClientError>): import("./useSWR").SWRResponsePro<ListModelServicesQuery, ClientError>;
|
|
6084
6165
|
useCheckModelService(variables: CheckModelServiceQueryVariables, config?: SWRConfigInterface<CheckModelServiceQuery, ClientError>): import("./useSWR").SWRResponsePro<CheckModelServiceQuery, ClientError>;
|
|
6085
6166
|
useListNodes(variables?: ListNodesQueryVariables, config?: SWRConfigInterface<ListNodesQuery, ClientError>): import("./useSWR").SWRResponsePro<ListNodesQuery, ClientError>;
|
|
6167
|
+
useListPlugins(variables: ListPluginsQueryVariables, config?: SWRConfigInterface<ListPluginsQuery, ClientError>): import("./useSWR").SWRResponsePro<ListPluginsQuery, ClientError>;
|
|
6168
|
+
useGetPlugin(variables: GetPluginQueryVariables, config?: SWRConfigInterface<GetPluginQuery, ClientError>): import("./useSWR").SWRResponsePro<GetPluginQuery, ClientError>;
|
|
6086
6169
|
useListRag(variables: ListRagQueryVariables, config?: SWRConfigInterface<ListRagQuery, ClientError>): import("./useSWR").SWRResponsePro<ListRagQuery, ClientError>;
|
|
6087
6170
|
useGetRag(variables: GetRagQueryVariables, config?: SWRConfigInterface<GetRagQuery, ClientError>): import("./useSWR").SWRResponsePro<GetRagQuery, ClientError>;
|
|
6088
6171
|
useListRayClusters(variables: ListRayClustersQueryVariables, config?: SWRConfigInterface<ListRayClustersQuery, ClientError>): import("./useSWR").SWRResponsePro<ListRayClustersQuery, ClientError>;
|
|
@@ -6127,6 +6210,12 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
6127
6210
|
page?: InputMaybe<number> | undefined;
|
|
6128
6211
|
size?: InputMaybe<number> | undefined;
|
|
6129
6212
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListApplicationPromptQuery>;
|
|
6213
|
+
listGPTCategory(variables?: Exact<{
|
|
6214
|
+
[key: string]: never;
|
|
6215
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListGptCategoryQuery>;
|
|
6216
|
+
getGPTStore(variables?: Exact<{
|
|
6217
|
+
[key: string]: never;
|
|
6218
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<GetGptStoreQuery>;
|
|
6130
6219
|
allDataProcessListByPage(variables: Exact<{
|
|
6131
6220
|
input: AllDataProcessListByPageInput;
|
|
6132
6221
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<AllDataProcessListByPageQuery>;
|
|
@@ -6212,18 +6301,6 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
6212
6301
|
name: string;
|
|
6213
6302
|
namespace: string;
|
|
6214
6303
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<GetEmbedderQuery>;
|
|
6215
|
-
getGPT(variables: Exact<{
|
|
6216
|
-
name: string;
|
|
6217
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<GetGptQuery>;
|
|
6218
|
-
listGPTs(variables: Exact<{
|
|
6219
|
-
input: ListGptInput;
|
|
6220
|
-
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListGpTsQuery>;
|
|
6221
|
-
listGPTCategory(variables?: Exact<{
|
|
6222
|
-
[key: string]: never;
|
|
6223
|
-
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListGptCategoryQuery>;
|
|
6224
|
-
getGPTStore(variables?: Exact<{
|
|
6225
|
-
[key: string]: never;
|
|
6226
|
-
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<GetGptStoreQuery>;
|
|
6227
6304
|
listKnowledgeBases(variables: Exact<{
|
|
6228
6305
|
input: ListKnowledgeBaseInput;
|
|
6229
6306
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListKnowledgeBasesQuery>;
|
|
@@ -6287,6 +6364,22 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
6287
6364
|
listNodes(variables?: Exact<{
|
|
6288
6365
|
input?: InputMaybe<ListNodeInput> | undefined;
|
|
6289
6366
|
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListNodesQuery>;
|
|
6367
|
+
listPlugins(variables: Exact<{
|
|
6368
|
+
input: ListPluginInput;
|
|
6369
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListPluginsQuery>;
|
|
6370
|
+
getPlugin(variables: Exact<{
|
|
6371
|
+
name: string;
|
|
6372
|
+
namespace: string;
|
|
6373
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<GetPluginQuery>;
|
|
6374
|
+
createPlugin(variables: Exact<{
|
|
6375
|
+
input: CreatePluginInput;
|
|
6376
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<CreatePluginMutation>;
|
|
6377
|
+
updatePlugin(variables: Exact<{
|
|
6378
|
+
input: UpdatePluginInput;
|
|
6379
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<UpdatePluginMutation>;
|
|
6380
|
+
deletePlugin(variables: Exact<{
|
|
6381
|
+
input: DeleteCommonInput;
|
|
6382
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<DeletePluginMutation>;
|
|
6290
6383
|
listRAG(variables: Exact<{
|
|
6291
6384
|
input: ListRagInput;
|
|
6292
6385
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListRagQuery>;
|