@yuntijs/arcadia-bff-sdk 1.2.23 → 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 +85 -0
- package/dist/cjs/sdk.d.ts +378 -69
- package/dist/cjs/sdk.js +139 -4
- package/dist/cjs/taro.d.ts +62 -0
- package/dist/esm/index.d.ts +85 -0
- package/dist/esm/sdk.d.ts +378 -69
- package/dist/esm/sdk.js +63 -27
- package/dist/esm/taro.d.ts +62 -0
- 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
|
/** 创建时间 */
|
|
@@ -283,6 +285,8 @@ export type CountDataProcessItem = {
|
|
|
283
285
|
export type CreateApplicationMetadataInput = {
|
|
284
286
|
/** 添加一些辅助性记录信息 */
|
|
285
287
|
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
288
|
+
/** Background, 智能体对话背景,base64 格式图片 */
|
|
289
|
+
background?: InputMaybe<Scalars['String']['input']>;
|
|
286
290
|
/** category:所属分类 */
|
|
287
291
|
category?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
288
292
|
/** 描述信息 */
|
|
@@ -504,6 +508,28 @@ export type CreateModelServiceInput = {
|
|
|
504
508
|
*/
|
|
505
509
|
types?: InputMaybe<Scalars['String']['input']>;
|
|
506
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
|
+
};
|
|
507
533
|
export type CreateRagInput = {
|
|
508
534
|
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
509
535
|
application: TypedObjectReferenceInput;
|
|
@@ -1438,6 +1464,33 @@ export type ListNodeInput = {
|
|
|
1438
1464
|
*/
|
|
1439
1465
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1440
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
|
+
};
|
|
1441
1494
|
export type ListRagInput = {
|
|
1442
1495
|
appName: Scalars['String']['input'];
|
|
1443
1496
|
/** 根据名字,displayName字段获取 */
|
|
@@ -1591,7 +1644,7 @@ export type ModelService = {
|
|
|
1591
1644
|
annotations?: Maybe<Scalars['Map']['output']>;
|
|
1592
1645
|
/**
|
|
1593
1646
|
* 模型服务 API 类型
|
|
1594
|
-
* 规则:支持 openai, zhipuai
|
|
1647
|
+
* 规则:支持 openai, zhipuai,dashscope,gemini 四种类型
|
|
1595
1648
|
*/
|
|
1596
1649
|
apiType?: Maybe<Scalars['String']['output']>;
|
|
1597
1650
|
/** 服务地址: 仅针对第三方模型服务 */
|
|
@@ -1681,6 +1734,7 @@ export type Mutation = {
|
|
|
1681
1734
|
KnowledgeBase?: Maybe<KnowledgeBaseMutation>;
|
|
1682
1735
|
Model?: Maybe<ModelMutation>;
|
|
1683
1736
|
ModelService?: Maybe<ModelServiceMutation>;
|
|
1737
|
+
Plugin?: Maybe<PluginMutation>;
|
|
1684
1738
|
RAG?: Maybe<RagMutation>;
|
|
1685
1739
|
VersionedDataset?: Maybe<VersionedDatasetMutation>;
|
|
1686
1740
|
Worker?: Maybe<WorkerMutation>;
|
|
@@ -1726,7 +1780,7 @@ export type OssInput = {
|
|
|
1726
1780
|
bucket: Scalars['String']['input'];
|
|
1727
1781
|
object?: InputMaybe<Scalars['String']['input']>;
|
|
1728
1782
|
};
|
|
1729
|
-
export type PageNode = ApplicationMetadata | ApplicationPrompt | Dataset | Datasource | Embedder | F | KnowledgeBase | Llm | Model | ModelService | Node | Rag | RayCluster | VersionedDataset | Worker;
|
|
1783
|
+
export type PageNode = ApplicationMetadata | ApplicationPrompt | Dataset | Datasource | Embedder | F | KnowledgeBase | Llm | Model | ModelService | Node | Plugin | Rag | RayCluster | VersionedDataset | Worker;
|
|
1730
1784
|
export type PaginatedDataProcessItem = {
|
|
1731
1785
|
__typename?: 'PaginatedDataProcessItem';
|
|
1732
1786
|
data?: Maybe<Array<DataProcessItem>>;
|
|
@@ -1780,6 +1834,71 @@ export type Pg = {
|
|
|
1780
1834
|
export type PgInput = {
|
|
1781
1835
|
database: Scalars['String']['input'];
|
|
1782
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
|
+
};
|
|
1783
1902
|
export type Query = {
|
|
1784
1903
|
__typename?: 'Query';
|
|
1785
1904
|
Application?: Maybe<ApplicationQuery>;
|
|
@@ -1791,6 +1910,7 @@ export type Query = {
|
|
|
1791
1910
|
Model?: Maybe<ModelQuery>;
|
|
1792
1911
|
ModelService?: Maybe<ModelServiceQuery>;
|
|
1793
1912
|
Node?: Maybe<NodeQuery>;
|
|
1913
|
+
Plugin?: Maybe<PluginQuery>;
|
|
1794
1914
|
RAG?: Maybe<RagQuery>;
|
|
1795
1915
|
RayCluster?: Maybe<RayClusterQuery>;
|
|
1796
1916
|
VersionedDataset?: Maybe<VersionedDatasetQuery>;
|
|
@@ -2000,61 +2120,6 @@ export type SelectorInput = {
|
|
|
2000
2120
|
matchExpressions?: InputMaybe<Array<InputMaybe<LabelSelectorRequirementInput>>>;
|
|
2001
2121
|
matchLabels?: InputMaybe<Scalars['Map']['input']>;
|
|
2002
2122
|
};
|
|
2003
|
-
/** Tool 应用和Agent中用到的工具 */
|
|
2004
|
-
export type Tool = {
|
|
2005
|
-
__typename?: 'Tool';
|
|
2006
|
-
/**
|
|
2007
|
-
* 名称,需要严格大小写一致,可选项为:"Bing Search API","calculator","Weather Query API","Web Scraper"
|
|
2008
|
-
* - "Bing Search API" bing搜索工具
|
|
2009
|
-
* - "calculator" 计算器
|
|
2010
|
-
* - "Weather Query API" 天气查询
|
|
2011
|
-
* - "Web Scraper" 网页爬取
|
|
2012
|
-
*/
|
|
2013
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
2014
|
-
/**
|
|
2015
|
-
* params 参数,需要严格大小写一致
|
|
2016
|
-
* "Bing Search API"
|
|
2017
|
-
* - apiKey:密钥,默认提供
|
|
2018
|
-
* - count:返回数目,默认为5
|
|
2019
|
-
* - scraperPage:是否抓取bing搜到的网页的内容,默认为true
|
|
2020
|
-
* "calculator" 没有参数
|
|
2021
|
-
* "Weather Query API"
|
|
2022
|
-
* - apiKey:密钥,默认提供;
|
|
2023
|
-
* "Web Scraper"
|
|
2024
|
-
* - delay:抓取时间间隔,秒,默认3
|
|
2025
|
-
* - async:是否异步抓取,是或者否,默认true
|
|
2026
|
-
* - handleLinks:是否从网页内的链接,继续抓取,是或者否,默认false
|
|
2027
|
-
* - blacklist:黑名单列表,用逗号隔开的字符串,默认是login,signup,signin,register,logout,download,redirect,表示这些页面都不抓取
|
|
2028
|
-
*/
|
|
2029
|
-
params?: Maybe<Scalars['Map']['output']>;
|
|
2030
|
-
};
|
|
2031
|
-
/** ToolInput 应用和Agent中用到的工具 */
|
|
2032
|
-
export type ToolInput = {
|
|
2033
|
-
/**
|
|
2034
|
-
* 名称,需要严格大小写一致,可选项为:"Bing Search API","calculator","Weather Query API","Web Scraper"
|
|
2035
|
-
* - "Bing Search API" bing搜索工具
|
|
2036
|
-
* - "calculator" 计算器
|
|
2037
|
-
* - "Weather Query API" 天气查询
|
|
2038
|
-
* - "Web Scraper" 网页爬取
|
|
2039
|
-
*/
|
|
2040
|
-
name: Scalars['String']['input'];
|
|
2041
|
-
/**
|
|
2042
|
-
* params 参数,可选,需要严格大小写一致
|
|
2043
|
-
* "Bing Search API"
|
|
2044
|
-
* - apiKey:密钥,默认提供
|
|
2045
|
-
* - count:返回数目,默认为5
|
|
2046
|
-
* - scraperPage:是否抓取bing搜到的网页的内容,默认为true
|
|
2047
|
-
* "calculator" 没有参数
|
|
2048
|
-
* "Weather Query API"
|
|
2049
|
-
* - apiKey:密钥,默认提供;
|
|
2050
|
-
* "Web Scraper"
|
|
2051
|
-
* - delay:抓取时间间隔,秒,默认3
|
|
2052
|
-
* - async:是否异步抓取,是或者否,默认true
|
|
2053
|
-
* - handleLinks:是否从网页内的链接,继续抓取,是或者否,默认false
|
|
2054
|
-
* - blacklist:黑名单列表,用逗号隔开的字符串,默认是login,signup,signin,register,logout,download,redirect,表示这些页面都不抓取
|
|
2055
|
-
*/
|
|
2056
|
-
params?: InputMaybe<Scalars['Map']['input']>;
|
|
2057
|
-
};
|
|
2058
2123
|
export type TypedObjectReference = {
|
|
2059
2124
|
__typename?: 'TypedObjectReference';
|
|
2060
2125
|
apiGroup?: Maybe<Scalars['String']['output']>;
|
|
@@ -2110,6 +2175,8 @@ export type UpdateApplicationConfigInput = {
|
|
|
2110
2175
|
namespace: Scalars['String']['input'];
|
|
2111
2176
|
/** numDocuments 最终返回结果的引用上限 */
|
|
2112
2177
|
numDocuments?: InputMaybe<Scalars['Int']['input']>;
|
|
2178
|
+
/** plugins 要使用的插件列表 */
|
|
2179
|
+
plugins?: InputMaybe<Array<InputMaybe<TypedObjectReferenceInput>>>;
|
|
2113
2180
|
/** 对话开场白 */
|
|
2114
2181
|
prologue?: InputMaybe<Scalars['String']['input']>;
|
|
2115
2182
|
/** rerankModel rerank 模型,enableRerank 为 true 时起效,为空时使用默认 rerank 模型 */
|
|
@@ -2126,14 +2193,14 @@ export type UpdateApplicationConfigInput = {
|
|
|
2126
2193
|
systemPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
2127
2194
|
/** temperature 温度 */
|
|
2128
2195
|
temperature?: InputMaybe<Scalars['Float']['input']>;
|
|
2129
|
-
/** tools 要使用的工具列表 */
|
|
2130
|
-
tools?: InputMaybe<Array<InputMaybe<ToolInput>>>;
|
|
2131
2196
|
/** userPrompt 用户级别的 Prompt */
|
|
2132
2197
|
userPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
2133
2198
|
};
|
|
2134
2199
|
export type UpdateApplicationMetadataInput = {
|
|
2135
2200
|
/** 添加一些辅助性记录信息,如果要更新,请传递完整内容 */
|
|
2136
2201
|
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
2202
|
+
/** Background, 智能体对话背景,base64 格式图片 */
|
|
2203
|
+
background?: InputMaybe<Scalars['String']['input']>;
|
|
2137
2204
|
/** category:所属分类 */
|
|
2138
2205
|
category?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2139
2206
|
/** 描述信息 */
|
|
@@ -2346,6 +2413,28 @@ export type UpdateModelServiceInput = {
|
|
|
2346
2413
|
*/
|
|
2347
2414
|
types?: InputMaybe<Scalars['String']['input']>;
|
|
2348
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
|
+
};
|
|
2349
2438
|
export type UpdateRagInput = {
|
|
2350
2439
|
annotations?: InputMaybe<Scalars['Map']['input']>;
|
|
2351
2440
|
application?: InputMaybe<TypedObjectReferenceInput>;
|
|
@@ -2691,6 +2780,7 @@ export type CreateApplicationMutation = {
|
|
|
2691
2780
|
displayName?: string | null;
|
|
2692
2781
|
description?: string | null;
|
|
2693
2782
|
icon?: string | null;
|
|
2783
|
+
background?: string | null;
|
|
2694
2784
|
creator?: string | null;
|
|
2695
2785
|
creationTimestamp?: any | null;
|
|
2696
2786
|
updateTimestamp?: any | null;
|
|
@@ -2719,6 +2809,7 @@ export type UpdateApplicationMutation = {
|
|
|
2719
2809
|
displayName?: string | null;
|
|
2720
2810
|
description?: string | null;
|
|
2721
2811
|
icon?: string | null;
|
|
2812
|
+
background?: string | null;
|
|
2722
2813
|
creator?: string | null;
|
|
2723
2814
|
creationTimestamp?: any | null;
|
|
2724
2815
|
updateTimestamp?: any | null;
|
|
@@ -2783,6 +2874,7 @@ export type UpdateApplicationConfigMutation = {
|
|
|
2783
2874
|
displayName?: string | null;
|
|
2784
2875
|
description?: string | null;
|
|
2785
2876
|
icon?: string | null;
|
|
2877
|
+
background?: string | null;
|
|
2786
2878
|
creator?: string | null;
|
|
2787
2879
|
creationTimestamp?: any | null;
|
|
2788
2880
|
updateTimestamp?: any | null;
|
|
@@ -2792,10 +2884,10 @@ export type UpdateApplicationConfigMutation = {
|
|
|
2792
2884
|
category?: Array<string | null> | null;
|
|
2793
2885
|
notReadyReasonCode?: string | null;
|
|
2794
2886
|
} | null;
|
|
2795
|
-
|
|
2796
|
-
__typename?: '
|
|
2797
|
-
name
|
|
2798
|
-
|
|
2887
|
+
plugins?: Array<{
|
|
2888
|
+
__typename?: 'Plugin';
|
|
2889
|
+
name: string;
|
|
2890
|
+
namespace: string;
|
|
2799
2891
|
} | null> | null;
|
|
2800
2892
|
};
|
|
2801
2893
|
} | null;
|
|
@@ -2819,6 +2911,7 @@ export type ReleaseApplicationMutation = {
|
|
|
2819
2911
|
displayName?: string | null;
|
|
2820
2912
|
description?: string | null;
|
|
2821
2913
|
icon?: string | null;
|
|
2914
|
+
background?: string | null;
|
|
2822
2915
|
creator?: string | null;
|
|
2823
2916
|
creationTimestamp?: any | null;
|
|
2824
2917
|
updateTimestamp?: any | null;
|
|
@@ -2896,6 +2989,7 @@ export type GetApplicationQuery = {
|
|
|
2896
2989
|
displayName?: string | null;
|
|
2897
2990
|
description?: string | null;
|
|
2898
2991
|
icon?: string | null;
|
|
2992
|
+
background?: string | null;
|
|
2899
2993
|
creator?: string | null;
|
|
2900
2994
|
creationTimestamp?: any | null;
|
|
2901
2995
|
updateTimestamp?: any | null;
|
|
@@ -2905,10 +2999,10 @@ export type GetApplicationQuery = {
|
|
|
2905
2999
|
category?: Array<string | null> | null;
|
|
2906
3000
|
notReadyReasonCode?: string | null;
|
|
2907
3001
|
} | null;
|
|
2908
|
-
|
|
2909
|
-
__typename?: '
|
|
2910
|
-
name
|
|
2911
|
-
|
|
3002
|
+
plugins?: Array<{
|
|
3003
|
+
__typename?: 'Plugin';
|
|
3004
|
+
name: string;
|
|
3005
|
+
namespace: string;
|
|
2912
3006
|
} | null> | null;
|
|
2913
3007
|
};
|
|
2914
3008
|
} | null;
|
|
@@ -2936,6 +3030,7 @@ export type ListApplicationsQuery = {
|
|
|
2936
3030
|
displayName?: string | null;
|
|
2937
3031
|
description?: string | null;
|
|
2938
3032
|
icon?: string | null;
|
|
3033
|
+
background?: string | null;
|
|
2939
3034
|
creator?: string | null;
|
|
2940
3035
|
creationTimestamp?: any | null;
|
|
2941
3036
|
updateTimestamp?: any | null;
|
|
@@ -2964,6 +3059,8 @@ export type ListApplicationsQuery = {
|
|
|
2964
3059
|
__typename?: 'ModelService';
|
|
2965
3060
|
} | {
|
|
2966
3061
|
__typename?: 'Node';
|
|
3062
|
+
} | {
|
|
3063
|
+
__typename?: 'Plugin';
|
|
2967
3064
|
} | {
|
|
2968
3065
|
__typename?: 'RAG';
|
|
2969
3066
|
} | {
|
|
@@ -3017,6 +3114,8 @@ export type ListApplicationPromptQuery = {
|
|
|
3017
3114
|
__typename?: 'ModelService';
|
|
3018
3115
|
} | {
|
|
3019
3116
|
__typename?: 'Node';
|
|
3117
|
+
} | {
|
|
3118
|
+
__typename?: 'Plugin';
|
|
3020
3119
|
} | {
|
|
3021
3120
|
__typename?: 'RAG';
|
|
3022
3121
|
} | {
|
|
@@ -3375,6 +3474,8 @@ export type ListDatasetsQuery = {
|
|
|
3375
3474
|
__typename?: 'ModelService';
|
|
3376
3475
|
} | {
|
|
3377
3476
|
__typename?: 'Node';
|
|
3477
|
+
} | {
|
|
3478
|
+
__typename?: 'Plugin';
|
|
3378
3479
|
} | {
|
|
3379
3480
|
__typename?: 'RAG';
|
|
3380
3481
|
} | {
|
|
@@ -3414,6 +3515,8 @@ export type ListDatasetsQuery = {
|
|
|
3414
3515
|
__typename?: 'ModelService';
|
|
3415
3516
|
} | {
|
|
3416
3517
|
__typename?: 'Node';
|
|
3518
|
+
} | {
|
|
3519
|
+
__typename?: 'Plugin';
|
|
3417
3520
|
} | {
|
|
3418
3521
|
__typename?: 'RAG';
|
|
3419
3522
|
} | {
|
|
@@ -3472,6 +3575,8 @@ export type GetDatasetQuery = {
|
|
|
3472
3575
|
__typename?: 'ModelService';
|
|
3473
3576
|
} | {
|
|
3474
3577
|
__typename?: 'Node';
|
|
3578
|
+
} | {
|
|
3579
|
+
__typename?: 'Plugin';
|
|
3475
3580
|
} | {
|
|
3476
3581
|
__typename?: 'RAG';
|
|
3477
3582
|
} | {
|
|
@@ -3707,6 +3812,8 @@ export type ListDatasourcesQuery = {
|
|
|
3707
3812
|
__typename: 'ModelService';
|
|
3708
3813
|
} | {
|
|
3709
3814
|
__typename: 'Node';
|
|
3815
|
+
} | {
|
|
3816
|
+
__typename: 'Plugin';
|
|
3710
3817
|
} | {
|
|
3711
3818
|
__typename: 'RAG';
|
|
3712
3819
|
} | {
|
|
@@ -3888,6 +3995,8 @@ export type ListEmbeddersQuery = {
|
|
|
3888
3995
|
__typename?: 'ModelService';
|
|
3889
3996
|
} | {
|
|
3890
3997
|
__typename?: 'Node';
|
|
3998
|
+
} | {
|
|
3999
|
+
__typename?: 'Plugin';
|
|
3891
4000
|
} | {
|
|
3892
4001
|
__typename?: 'RAG';
|
|
3893
4002
|
} | {
|
|
@@ -4006,6 +4115,8 @@ export type ListKnowledgeBasesQuery = {
|
|
|
4006
4115
|
__typename?: 'ModelService';
|
|
4007
4116
|
} | {
|
|
4008
4117
|
__typename?: 'Node';
|
|
4118
|
+
} | {
|
|
4119
|
+
__typename?: 'Plugin';
|
|
4009
4120
|
} | {
|
|
4010
4121
|
__typename?: 'RAG';
|
|
4011
4122
|
} | {
|
|
@@ -4258,6 +4369,8 @@ export type ListLlMsQuery = {
|
|
|
4258
4369
|
__typename?: 'ModelService';
|
|
4259
4370
|
} | {
|
|
4260
4371
|
__typename?: 'Node';
|
|
4372
|
+
} | {
|
|
4373
|
+
__typename?: 'Plugin';
|
|
4261
4374
|
} | {
|
|
4262
4375
|
__typename?: 'RAG';
|
|
4263
4376
|
} | {
|
|
@@ -4376,6 +4489,8 @@ export type ListModelsQuery = {
|
|
|
4376
4489
|
__typename?: 'ModelService';
|
|
4377
4490
|
} | {
|
|
4378
4491
|
__typename?: 'Node';
|
|
4492
|
+
} | {
|
|
4493
|
+
__typename?: 'Plugin';
|
|
4379
4494
|
} | {
|
|
4380
4495
|
__typename?: 'RAG';
|
|
4381
4496
|
} | {
|
|
@@ -4390,6 +4505,8 @@ export type ListModelsQuery = {
|
|
|
4390
4505
|
__typename: 'ModelService';
|
|
4391
4506
|
} | {
|
|
4392
4507
|
__typename: 'Node';
|
|
4508
|
+
} | {
|
|
4509
|
+
__typename: 'Plugin';
|
|
4393
4510
|
} | {
|
|
4394
4511
|
__typename: 'RAG';
|
|
4395
4512
|
} | {
|
|
@@ -4463,6 +4580,8 @@ export type GetModelQuery = {
|
|
|
4463
4580
|
__typename?: 'ModelService';
|
|
4464
4581
|
} | {
|
|
4465
4582
|
__typename?: 'Node';
|
|
4583
|
+
} | {
|
|
4584
|
+
__typename?: 'Plugin';
|
|
4466
4585
|
} | {
|
|
4467
4586
|
__typename?: 'RAG';
|
|
4468
4587
|
} | {
|
|
@@ -4698,6 +4817,8 @@ export type ListModelServicesQuery = {
|
|
|
4698
4817
|
baseUrl: string;
|
|
4699
4818
|
} | {
|
|
4700
4819
|
__typename: 'Node';
|
|
4820
|
+
} | {
|
|
4821
|
+
__typename: 'Plugin';
|
|
4701
4822
|
} | {
|
|
4702
4823
|
__typename: 'RAG';
|
|
4703
4824
|
} | {
|
|
@@ -4761,6 +4882,8 @@ export type ListNodesQuery = {
|
|
|
4761
4882
|
__typename: 'Node';
|
|
4762
4883
|
name: string;
|
|
4763
4884
|
labels?: any | null;
|
|
4885
|
+
} | {
|
|
4886
|
+
__typename: 'Plugin';
|
|
4764
4887
|
} | {
|
|
4765
4888
|
__typename: 'RAG';
|
|
4766
4889
|
} | {
|
|
@@ -4773,6 +4896,152 @@ export type ListNodesQuery = {
|
|
|
4773
4896
|
};
|
|
4774
4897
|
} | null;
|
|
4775
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';
|
|
4922
|
+
} | {
|
|
4923
|
+
__typename: 'KnowledgeBase';
|
|
4924
|
+
} | {
|
|
4925
|
+
__typename: 'LLM';
|
|
4926
|
+
} | {
|
|
4927
|
+
__typename: 'Model';
|
|
4928
|
+
} | {
|
|
4929
|
+
__typename: 'ModelService';
|
|
4930
|
+
} | {
|
|
4931
|
+
__typename: 'Node';
|
|
4932
|
+
} | {
|
|
4933
|
+
__typename: 'Plugin';
|
|
4934
|
+
id?: string | null;
|
|
4935
|
+
creationTimestamp?: any | null;
|
|
4936
|
+
name: string;
|
|
4937
|
+
namespace: string;
|
|
4938
|
+
systemPlugin?: boolean | null;
|
|
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;
|
|
4947
|
+
} | {
|
|
4948
|
+
__typename: 'RAG';
|
|
4949
|
+
} | {
|
|
4950
|
+
__typename: 'RayCluster';
|
|
4951
|
+
} | {
|
|
4952
|
+
__typename: 'VersionedDataset';
|
|
4953
|
+
} | {
|
|
4954
|
+
__typename: 'Worker';
|
|
4955
|
+
}> | null;
|
|
4956
|
+
};
|
|
4957
|
+
} | null;
|
|
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
|
+
};
|
|
4776
5045
|
export type ListRagQueryVariables = Exact<{
|
|
4777
5046
|
input: ListRagInput;
|
|
4778
5047
|
}>;
|
|
@@ -4806,6 +5075,8 @@ export type ListRagQuery = {
|
|
|
4806
5075
|
__typename?: 'ModelService';
|
|
4807
5076
|
} | {
|
|
4808
5077
|
__typename?: 'Node';
|
|
5078
|
+
} | {
|
|
5079
|
+
__typename?: 'Plugin';
|
|
4809
5080
|
} | {
|
|
4810
5081
|
__typename?: 'RAG';
|
|
4811
5082
|
name: string;
|
|
@@ -5197,6 +5468,8 @@ export type ListRayClustersQuery = {
|
|
|
5197
5468
|
__typename: 'ModelService';
|
|
5198
5469
|
} | {
|
|
5199
5470
|
__typename: 'Node';
|
|
5471
|
+
} | {
|
|
5472
|
+
__typename: 'Plugin';
|
|
5200
5473
|
} | {
|
|
5201
5474
|
__typename: 'RAG';
|
|
5202
5475
|
} | {
|
|
@@ -5319,6 +5592,8 @@ export type GetVersionedDatasetQuery = {
|
|
|
5319
5592
|
__typename?: 'ModelService';
|
|
5320
5593
|
} | {
|
|
5321
5594
|
__typename?: 'Node';
|
|
5595
|
+
} | {
|
|
5596
|
+
__typename?: 'Plugin';
|
|
5322
5597
|
} | {
|
|
5323
5598
|
__typename?: 'RAG';
|
|
5324
5599
|
} | {
|
|
@@ -5366,6 +5641,8 @@ export type ListVersionedDatasetsQuery = {
|
|
|
5366
5641
|
__typename?: 'ModelService';
|
|
5367
5642
|
} | {
|
|
5368
5643
|
__typename?: 'Node';
|
|
5644
|
+
} | {
|
|
5645
|
+
__typename?: 'Plugin';
|
|
5369
5646
|
} | {
|
|
5370
5647
|
__typename?: 'RAG';
|
|
5371
5648
|
} | {
|
|
@@ -5420,6 +5697,8 @@ export type ListVersionedDatasetsQuery = {
|
|
|
5420
5697
|
__typename?: 'ModelService';
|
|
5421
5698
|
} | {
|
|
5422
5699
|
__typename?: 'Node';
|
|
5700
|
+
} | {
|
|
5701
|
+
__typename?: 'Plugin';
|
|
5423
5702
|
} | {
|
|
5424
5703
|
__typename?: 'RAG';
|
|
5425
5704
|
} | {
|
|
@@ -5469,6 +5748,8 @@ export type ListWorkersQuery = {
|
|
|
5469
5748
|
__typename: 'ModelService';
|
|
5470
5749
|
} | {
|
|
5471
5750
|
__typename: 'Node';
|
|
5751
|
+
} | {
|
|
5752
|
+
__typename: 'Plugin';
|
|
5472
5753
|
} | {
|
|
5473
5754
|
__typename: 'RAG';
|
|
5474
5755
|
} | {
|
|
@@ -5749,6 +6030,11 @@ export declare const GetModelServiceDocument: import("../node_modules/.pnpm/grap
|
|
|
5749
6030
|
export declare const ListModelServicesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5750
6031
|
export declare const CheckModelServiceDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5751
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;
|
|
5752
6038
|
export declare const ListRagDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5753
6039
|
export declare const GetRagDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5754
6040
|
export declare const CreateRagDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
@@ -5824,6 +6110,11 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
5824
6110
|
listModelServices(variables?: ListModelServicesQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListModelServicesQuery>;
|
|
5825
6111
|
checkModelService(variables: CheckModelServiceQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<CheckModelServiceQuery>;
|
|
5826
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>;
|
|
5827
6118
|
listRAG(variables: ListRagQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListRagQuery>;
|
|
5828
6119
|
getRAG(variables: GetRagQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetRagQuery>;
|
|
5829
6120
|
createRAG(variables: CreateRagMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<CreateRagMutation>;
|
|
@@ -5873,6 +6164,8 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
5873
6164
|
useListModelServices(variables?: ListModelServicesQueryVariables, config?: SWRConfigInterface<ListModelServicesQuery, ClientError>): import("./useSWR").SWRResponsePro<ListModelServicesQuery, ClientError>;
|
|
5874
6165
|
useCheckModelService(variables: CheckModelServiceQueryVariables, config?: SWRConfigInterface<CheckModelServiceQuery, ClientError>): import("./useSWR").SWRResponsePro<CheckModelServiceQuery, ClientError>;
|
|
5875
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>;
|
|
5876
6169
|
useListRag(variables: ListRagQueryVariables, config?: SWRConfigInterface<ListRagQuery, ClientError>): import("./useSWR").SWRResponsePro<ListRagQuery, ClientError>;
|
|
5877
6170
|
useGetRag(variables: GetRagQueryVariables, config?: SWRConfigInterface<GetRagQuery, ClientError>): import("./useSWR").SWRResponsePro<GetRagQuery, ClientError>;
|
|
5878
6171
|
useListRayClusters(variables: ListRayClustersQueryVariables, config?: SWRConfigInterface<ListRayClustersQuery, ClientError>): import("./useSWR").SWRResponsePro<ListRayClustersQuery, ClientError>;
|
|
@@ -6071,6 +6364,22 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
6071
6364
|
listNodes(variables?: Exact<{
|
|
6072
6365
|
input?: InputMaybe<ListNodeInput> | undefined;
|
|
6073
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>;
|
|
6074
6383
|
listRAG(variables: Exact<{
|
|
6075
6384
|
input: ListRagInput;
|
|
6076
6385
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListRagQuery>;
|