@yuntijs/arcadia-bff-sdk 1.2.22 → 1.2.23
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 +42 -84
- package/dist/cjs/sdk.d.ts +45 -261
- package/dist/cjs/sdk.js +33 -101
- package/dist/cjs/taro.d.ts +30 -60
- package/dist/esm/index.d.ts +42 -84
- package/dist/esm/sdk.d.ts +45 -261
- package/dist/esm/sdk.js +84 -111
- package/dist/esm/taro.d.ts +30 -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
|
@@ -252,8 +252,11 @@ export type ApplicationPromptInput = {
|
|
|
252
252
|
export type ApplicationQuery = {
|
|
253
253
|
__typename?: 'ApplicationQuery';
|
|
254
254
|
getApplication: Application;
|
|
255
|
+
getGPTStore: GptStore;
|
|
255
256
|
listApplicationMetadata: PaginatedResult;
|
|
256
257
|
listApplicationPrompt: PaginatedResult;
|
|
258
|
+
/** migrated from GPT */
|
|
259
|
+
listGPTCategory: Array<Maybe<GptCategory>>;
|
|
257
260
|
};
|
|
258
261
|
export type ApplicationQueryGetApplicationArgs = {
|
|
259
262
|
name: Scalars['String']['input'];
|
|
@@ -1124,50 +1127,6 @@ export type FileWithVersionInput = {
|
|
|
1124
1127
|
path: Scalars['String']['input'];
|
|
1125
1128
|
version?: InputMaybe<Scalars['String']['input']>;
|
|
1126
1129
|
};
|
|
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
1130
|
/** GPTCategory in gpt store */
|
|
1172
1131
|
export type GptCategory = {
|
|
1173
1132
|
__typename?: 'GPTCategory';
|
|
@@ -1175,20 +1134,6 @@ export type GptCategory = {
|
|
|
1175
1134
|
name: Scalars['String']['output'];
|
|
1176
1135
|
nameEn: Scalars['String']['output'];
|
|
1177
1136
|
};
|
|
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
1137
|
export type GptStore = {
|
|
1193
1138
|
__typename?: 'GPTStore';
|
|
1194
1139
|
public_namespace: Scalars['String']['output'];
|
|
@@ -1397,25 +1342,6 @@ export type ListDatasetInput = {
|
|
|
1397
1342
|
*/
|
|
1398
1343
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1399
1344
|
};
|
|
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
1345
|
/** 知识库分页列表查询的输入 */
|
|
1420
1346
|
export type ListKnowledgeBaseInput = {
|
|
1421
1347
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1800,7 +1726,7 @@ export type OssInput = {
|
|
|
1800
1726
|
bucket: Scalars['String']['input'];
|
|
1801
1727
|
object?: InputMaybe<Scalars['String']['input']>;
|
|
1802
1728
|
};
|
|
1803
|
-
export type PageNode = ApplicationMetadata | ApplicationPrompt | Dataset | Datasource | Embedder | F |
|
|
1729
|
+
export type PageNode = ApplicationMetadata | ApplicationPrompt | Dataset | Datasource | Embedder | F | KnowledgeBase | Llm | Model | ModelService | Node | Rag | RayCluster | VersionedDataset | Worker;
|
|
1804
1730
|
export type PaginatedDataProcessItem = {
|
|
1805
1731
|
__typename?: 'PaginatedDataProcessItem';
|
|
1806
1732
|
data?: Maybe<Array<DataProcessItem>>;
|
|
@@ -1860,7 +1786,6 @@ export type Query = {
|
|
|
1860
1786
|
Dataset?: Maybe<DatasetQuery>;
|
|
1861
1787
|
Datasource?: Maybe<DatasourceQuery>;
|
|
1862
1788
|
Embedder?: Maybe<EmbedderQuery>;
|
|
1863
|
-
GPT?: Maybe<GptQuery>;
|
|
1864
1789
|
KnowledgeBase?: Maybe<KnowledgeBaseQuery>;
|
|
1865
1790
|
LLM?: Maybe<LlmQuery>;
|
|
1866
1791
|
Model?: Maybe<ModelQuery>;
|
|
@@ -3029,8 +2954,6 @@ export type ListApplicationsQuery = {
|
|
|
3029
2954
|
__typename?: 'Embedder';
|
|
3030
2955
|
} | {
|
|
3031
2956
|
__typename?: 'F';
|
|
3032
|
-
} | {
|
|
3033
|
-
__typename?: 'GPT';
|
|
3034
2957
|
} | {
|
|
3035
2958
|
__typename?: 'KnowledgeBase';
|
|
3036
2959
|
} | {
|
|
@@ -3084,8 +3007,6 @@ export type ListApplicationPromptQuery = {
|
|
|
3084
3007
|
__typename?: 'Embedder';
|
|
3085
3008
|
} | {
|
|
3086
3009
|
__typename?: 'F';
|
|
3087
|
-
} | {
|
|
3088
|
-
__typename?: 'GPT';
|
|
3089
3010
|
} | {
|
|
3090
3011
|
__typename?: 'KnowledgeBase';
|
|
3091
3012
|
} | {
|
|
@@ -3108,6 +3029,35 @@ export type ListApplicationPromptQuery = {
|
|
|
3108
3029
|
};
|
|
3109
3030
|
} | null;
|
|
3110
3031
|
};
|
|
3032
|
+
export type ListGptCategoryQueryVariables = Exact<{
|
|
3033
|
+
[key: string]: never;
|
|
3034
|
+
}>;
|
|
3035
|
+
export type ListGptCategoryQuery = {
|
|
3036
|
+
__typename?: 'Query';
|
|
3037
|
+
Application?: {
|
|
3038
|
+
__typename?: 'ApplicationQuery';
|
|
3039
|
+
listGPTCategory: Array<{
|
|
3040
|
+
__typename?: 'GPTCategory';
|
|
3041
|
+
id: string;
|
|
3042
|
+
name: string;
|
|
3043
|
+
nameEn: string;
|
|
3044
|
+
} | null>;
|
|
3045
|
+
} | null;
|
|
3046
|
+
};
|
|
3047
|
+
export type GetGptStoreQueryVariables = Exact<{
|
|
3048
|
+
[key: string]: never;
|
|
3049
|
+
}>;
|
|
3050
|
+
export type GetGptStoreQuery = {
|
|
3051
|
+
__typename?: 'Query';
|
|
3052
|
+
Application?: {
|
|
3053
|
+
__typename?: 'ApplicationQuery';
|
|
3054
|
+
getGPTStore: {
|
|
3055
|
+
__typename?: 'GPTStore';
|
|
3056
|
+
url: string;
|
|
3057
|
+
public_namespace: string;
|
|
3058
|
+
};
|
|
3059
|
+
} | null;
|
|
3060
|
+
};
|
|
3111
3061
|
export type AllDataProcessListByPageQueryVariables = Exact<{
|
|
3112
3062
|
input: AllDataProcessListByPageInput;
|
|
3113
3063
|
}>;
|
|
@@ -3415,8 +3365,6 @@ export type ListDatasetsQuery = {
|
|
|
3415
3365
|
__typename?: 'Embedder';
|
|
3416
3366
|
} | {
|
|
3417
3367
|
__typename?: 'F';
|
|
3418
|
-
} | {
|
|
3419
|
-
__typename?: 'GPT';
|
|
3420
3368
|
} | {
|
|
3421
3369
|
__typename?: 'KnowledgeBase';
|
|
3422
3370
|
} | {
|
|
@@ -3456,8 +3404,6 @@ export type ListDatasetsQuery = {
|
|
|
3456
3404
|
__typename?: 'Embedder';
|
|
3457
3405
|
} | {
|
|
3458
3406
|
__typename?: 'F';
|
|
3459
|
-
} | {
|
|
3460
|
-
__typename?: 'GPT';
|
|
3461
3407
|
} | {
|
|
3462
3408
|
__typename?: 'KnowledgeBase';
|
|
3463
3409
|
} | {
|
|
@@ -3516,8 +3462,6 @@ export type GetDatasetQuery = {
|
|
|
3516
3462
|
__typename?: 'Embedder';
|
|
3517
3463
|
} | {
|
|
3518
3464
|
__typename?: 'F';
|
|
3519
|
-
} | {
|
|
3520
|
-
__typename?: 'GPT';
|
|
3521
3465
|
} | {
|
|
3522
3466
|
__typename?: 'KnowledgeBase';
|
|
3523
3467
|
} | {
|
|
@@ -3753,8 +3697,6 @@ export type ListDatasourcesQuery = {
|
|
|
3753
3697
|
__typename: 'Embedder';
|
|
3754
3698
|
} | {
|
|
3755
3699
|
__typename: 'F';
|
|
3756
|
-
} | {
|
|
3757
|
-
__typename: 'GPT';
|
|
3758
3700
|
} | {
|
|
3759
3701
|
__typename: 'KnowledgeBase';
|
|
3760
3702
|
} | {
|
|
@@ -3936,8 +3878,6 @@ export type ListEmbeddersQuery = {
|
|
|
3936
3878
|
message?: string | null;
|
|
3937
3879
|
} | {
|
|
3938
3880
|
__typename?: 'F';
|
|
3939
|
-
} | {
|
|
3940
|
-
__typename?: 'GPT';
|
|
3941
3881
|
} | {
|
|
3942
3882
|
__typename?: 'KnowledgeBase';
|
|
3943
3883
|
} | {
|
|
@@ -3984,124 +3924,6 @@ export type GetEmbedderQuery = {
|
|
|
3984
3924
|
};
|
|
3985
3925
|
} | null;
|
|
3986
3926
|
};
|
|
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
3927
|
export type ListKnowledgeBasesQueryVariables = Exact<{
|
|
4106
3928
|
input: ListKnowledgeBaseInput;
|
|
4107
3929
|
}>;
|
|
@@ -4125,8 +3947,6 @@ export type ListKnowledgeBasesQuery = {
|
|
|
4125
3947
|
__typename?: 'Embedder';
|
|
4126
3948
|
} | {
|
|
4127
3949
|
__typename?: 'F';
|
|
4128
|
-
} | {
|
|
4129
|
-
__typename?: 'GPT';
|
|
4130
3950
|
} | {
|
|
4131
3951
|
__typename?: 'KnowledgeBase';
|
|
4132
3952
|
id?: string | null;
|
|
@@ -4415,8 +4235,6 @@ export type ListLlMsQuery = {
|
|
|
4415
4235
|
__typename?: 'Embedder';
|
|
4416
4236
|
} | {
|
|
4417
4237
|
__typename?: 'F';
|
|
4418
|
-
} | {
|
|
4419
|
-
__typename?: 'GPT';
|
|
4420
4238
|
} | {
|
|
4421
4239
|
__typename?: 'KnowledgeBase';
|
|
4422
4240
|
} | {
|
|
@@ -4502,8 +4320,6 @@ export type ListModelsQuery = {
|
|
|
4502
4320
|
__typename: 'Embedder';
|
|
4503
4321
|
} | {
|
|
4504
4322
|
__typename: 'F';
|
|
4505
|
-
} | {
|
|
4506
|
-
__typename: 'GPT';
|
|
4507
4323
|
} | {
|
|
4508
4324
|
__typename: 'KnowledgeBase';
|
|
4509
4325
|
} | {
|
|
@@ -4550,8 +4366,6 @@ export type ListModelsQuery = {
|
|
|
4550
4366
|
count?: string | null;
|
|
4551
4367
|
size?: string | null;
|
|
4552
4368
|
creationTimestamp?: any | null;
|
|
4553
|
-
} | {
|
|
4554
|
-
__typename?: 'GPT';
|
|
4555
4369
|
} | {
|
|
4556
4370
|
__typename?: 'KnowledgeBase';
|
|
4557
4371
|
} | {
|
|
@@ -4639,8 +4453,6 @@ export type GetModelQuery = {
|
|
|
4639
4453
|
count?: string | null;
|
|
4640
4454
|
size?: string | null;
|
|
4641
4455
|
creationTimestamp?: any | null;
|
|
4642
|
-
} | {
|
|
4643
|
-
__typename?: 'GPT';
|
|
4644
4456
|
} | {
|
|
4645
4457
|
__typename?: 'KnowledgeBase';
|
|
4646
4458
|
} | {
|
|
@@ -4858,8 +4670,6 @@ export type ListModelServicesQuery = {
|
|
|
4858
4670
|
__typename: 'Embedder';
|
|
4859
4671
|
} | {
|
|
4860
4672
|
__typename: 'F';
|
|
4861
|
-
} | {
|
|
4862
|
-
__typename: 'GPT';
|
|
4863
4673
|
} | {
|
|
4864
4674
|
__typename: 'KnowledgeBase';
|
|
4865
4675
|
} | {
|
|
@@ -4939,8 +4749,6 @@ export type ListNodesQuery = {
|
|
|
4939
4749
|
__typename: 'Embedder';
|
|
4940
4750
|
} | {
|
|
4941
4751
|
__typename: 'F';
|
|
4942
|
-
} | {
|
|
4943
|
-
__typename: 'GPT';
|
|
4944
4752
|
} | {
|
|
4945
4753
|
__typename: 'KnowledgeBase';
|
|
4946
4754
|
} | {
|
|
@@ -4988,8 +4796,6 @@ export type ListRagQuery = {
|
|
|
4988
4796
|
__typename?: 'Embedder';
|
|
4989
4797
|
} | {
|
|
4990
4798
|
__typename?: 'F';
|
|
4991
|
-
} | {
|
|
4992
|
-
__typename?: 'GPT';
|
|
4993
4799
|
} | {
|
|
4994
4800
|
__typename?: 'KnowledgeBase';
|
|
4995
4801
|
} | {
|
|
@@ -5381,8 +5187,6 @@ export type ListRayClustersQuery = {
|
|
|
5381
5187
|
__typename: 'Embedder';
|
|
5382
5188
|
} | {
|
|
5383
5189
|
__typename: 'F';
|
|
5384
|
-
} | {
|
|
5385
|
-
__typename: 'GPT';
|
|
5386
5190
|
} | {
|
|
5387
5191
|
__typename: 'KnowledgeBase';
|
|
5388
5192
|
} | {
|
|
@@ -5505,8 +5309,6 @@ export type GetVersionedDatasetQuery = {
|
|
|
5505
5309
|
versions?: Array<string> | null;
|
|
5506
5310
|
latestVersion?: string | null;
|
|
5507
5311
|
creationTimestamp?: any | null;
|
|
5508
|
-
} | {
|
|
5509
|
-
__typename?: 'GPT';
|
|
5510
5312
|
} | {
|
|
5511
5313
|
__typename?: 'KnowledgeBase';
|
|
5512
5314
|
} | {
|
|
@@ -5554,8 +5356,6 @@ export type ListVersionedDatasetsQuery = {
|
|
|
5554
5356
|
__typename?: 'Embedder';
|
|
5555
5357
|
} | {
|
|
5556
5358
|
__typename?: 'F';
|
|
5557
|
-
} | {
|
|
5558
|
-
__typename?: 'GPT';
|
|
5559
5359
|
} | {
|
|
5560
5360
|
__typename?: 'KnowledgeBase';
|
|
5561
5361
|
} | {
|
|
@@ -5610,8 +5410,6 @@ export type ListVersionedDatasetsQuery = {
|
|
|
5610
5410
|
versions?: Array<string> | null;
|
|
5611
5411
|
latestVersion?: string | null;
|
|
5612
5412
|
creationTimestamp?: any | null;
|
|
5613
|
-
} | {
|
|
5614
|
-
__typename?: 'GPT';
|
|
5615
5413
|
} | {
|
|
5616
5414
|
__typename?: 'KnowledgeBase';
|
|
5617
5415
|
} | {
|
|
@@ -5661,8 +5459,6 @@ export type ListWorkersQuery = {
|
|
|
5661
5459
|
__typename: 'Embedder';
|
|
5662
5460
|
} | {
|
|
5663
5461
|
__typename: 'F';
|
|
5664
|
-
} | {
|
|
5665
|
-
__typename: 'GPT';
|
|
5666
5462
|
} | {
|
|
5667
5463
|
__typename: 'KnowledgeBase';
|
|
5668
5464
|
} | {
|
|
@@ -5906,6 +5702,8 @@ export declare const DeleteApplicationPromptDocument: import("../node_modules/.p
|
|
|
5906
5702
|
export declare const GetApplicationDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5907
5703
|
export declare const ListApplicationsDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5908
5704
|
export declare const ListApplicationPromptDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5705
|
+
export declare const ListGptCategoryDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5706
|
+
export declare const GetGptStoreDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5909
5707
|
export declare const AllDataProcessListByPageDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5910
5708
|
export declare const AllDataProcessListByCountDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5911
5709
|
export declare const DataProcessSupportTypeDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
@@ -5932,10 +5730,6 @@ export declare const UpdateEmbedderDocument: import("../node_modules/.pnpm/graph
|
|
|
5932
5730
|
export declare const DeleteEmbeddersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5933
5731
|
export declare const ListEmbeddersDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5934
5732
|
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
5733
|
export declare const ListKnowledgeBasesDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5940
5734
|
export declare const GetKnowledgeBaseDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
5941
5735
|
export declare const CreateKnowledgeBaseDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
@@ -5983,6 +5777,8 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
5983
5777
|
getApplication(variables: GetApplicationQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetApplicationQuery>;
|
|
5984
5778
|
listApplications(variables: ListApplicationsQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListApplicationsQuery>;
|
|
5985
5779
|
listApplicationPrompt(variables: ListApplicationPromptQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListApplicationPromptQuery>;
|
|
5780
|
+
listGPTCategory(variables?: ListGptCategoryQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListGptCategoryQuery>;
|
|
5781
|
+
getGPTStore(variables?: GetGptStoreQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetGptStoreQuery>;
|
|
5986
5782
|
allDataProcessListByPage(variables: AllDataProcessListByPageQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<AllDataProcessListByPageQuery>;
|
|
5987
5783
|
allDataProcessListByCount(variables: AllDataProcessListByCountQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<AllDataProcessListByCountQuery>;
|
|
5988
5784
|
dataProcessSupportType(variables?: DataProcessSupportTypeQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<DataProcessSupportTypeQuery>;
|
|
@@ -6009,10 +5805,6 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
6009
5805
|
deleteEmbedders(variables: DeleteEmbeddersMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<DeleteEmbeddersMutation>;
|
|
6010
5806
|
listEmbedders(variables: ListEmbeddersQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListEmbeddersQuery>;
|
|
6011
5807
|
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
5808
|
listKnowledgeBases(variables: ListKnowledgeBasesQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<ListKnowledgeBasesQuery>;
|
|
6017
5809
|
getKnowledgeBase(variables: GetKnowledgeBaseQueryVariables, requestHeaders?: RequestConfig['headers']): Promise<GetKnowledgeBaseQuery>;
|
|
6018
5810
|
createKnowledgeBase(variables: CreateKnowledgeBaseMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<CreateKnowledgeBaseMutation>;
|
|
@@ -6054,6 +5846,8 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
6054
5846
|
useGetApplication(variables: GetApplicationQueryVariables, config?: SWRConfigInterface<GetApplicationQuery, ClientError>): import("./useSWR").SWRResponsePro<GetApplicationQuery, ClientError>;
|
|
6055
5847
|
useListApplications(variables: ListApplicationsQueryVariables, config?: SWRConfigInterface<ListApplicationsQuery, ClientError>): import("./useSWR").SWRResponsePro<ListApplicationsQuery, ClientError>;
|
|
6056
5848
|
useListApplicationPrompt(variables: ListApplicationPromptQueryVariables, config?: SWRConfigInterface<ListApplicationPromptQuery, ClientError>): import("./useSWR").SWRResponsePro<ListApplicationPromptQuery, ClientError>;
|
|
5849
|
+
useListGptCategory(variables?: ListGptCategoryQueryVariables, config?: SWRConfigInterface<ListGptCategoryQuery, ClientError>): import("./useSWR").SWRResponsePro<ListGptCategoryQuery, ClientError>;
|
|
5850
|
+
useGetGptStore(variables?: GetGptStoreQueryVariables, config?: SWRConfigInterface<GetGptStoreQuery, ClientError>): import("./useSWR").SWRResponsePro<GetGptStoreQuery, ClientError>;
|
|
6057
5851
|
useAllDataProcessListByPage(variables: AllDataProcessListByPageQueryVariables, config?: SWRConfigInterface<AllDataProcessListByPageQuery, ClientError>): import("./useSWR").SWRResponsePro<AllDataProcessListByPageQuery, ClientError>;
|
|
6058
5852
|
useAllDataProcessListByCount(variables: AllDataProcessListByCountQueryVariables, config?: SWRConfigInterface<AllDataProcessListByCountQuery, ClientError>): import("./useSWR").SWRResponsePro<AllDataProcessListByCountQuery, ClientError>;
|
|
6059
5853
|
useDataProcessSupportType(variables?: DataProcessSupportTypeQueryVariables, config?: SWRConfigInterface<DataProcessSupportTypeQuery, ClientError>): import("./useSWR").SWRResponsePro<DataProcessSupportTypeQuery, ClientError>;
|
|
@@ -6069,10 +5863,6 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
6069
5863
|
useCheckDatasource(variables: CheckDatasourceQueryVariables, config?: SWRConfigInterface<CheckDatasourceQuery, ClientError>): import("./useSWR").SWRResponsePro<CheckDatasourceQuery, ClientError>;
|
|
6070
5864
|
useListEmbedders(variables: ListEmbeddersQueryVariables, config?: SWRConfigInterface<ListEmbeddersQuery, ClientError>): import("./useSWR").SWRResponsePro<ListEmbeddersQuery, ClientError>;
|
|
6071
5865
|
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
5866
|
useListKnowledgeBases(variables: ListKnowledgeBasesQueryVariables, config?: SWRConfigInterface<ListKnowledgeBasesQuery, ClientError>): import("./useSWR").SWRResponsePro<ListKnowledgeBasesQuery, ClientError>;
|
|
6077
5867
|
useGetKnowledgeBase(variables: GetKnowledgeBaseQueryVariables, config?: SWRConfigInterface<GetKnowledgeBaseQuery, ClientError>): import("./useSWR").SWRResponsePro<GetKnowledgeBaseQuery, ClientError>;
|
|
6078
5868
|
useListLlMs(variables: ListLlMsQueryVariables, config?: SWRConfigInterface<ListLlMsQuery, ClientError>): import("./useSWR").SWRResponsePro<ListLlMsQuery, ClientError>;
|
|
@@ -6127,6 +5917,12 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
6127
5917
|
page?: InputMaybe<number> | undefined;
|
|
6128
5918
|
size?: InputMaybe<number> | undefined;
|
|
6129
5919
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListApplicationPromptQuery>;
|
|
5920
|
+
listGPTCategory(variables?: Exact<{
|
|
5921
|
+
[key: string]: never;
|
|
5922
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListGptCategoryQuery>;
|
|
5923
|
+
getGPTStore(variables?: Exact<{
|
|
5924
|
+
[key: string]: never;
|
|
5925
|
+
}> | undefined, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<GetGptStoreQuery>;
|
|
6130
5926
|
allDataProcessListByPage(variables: Exact<{
|
|
6131
5927
|
input: AllDataProcessListByPageInput;
|
|
6132
5928
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<AllDataProcessListByPageQuery>;
|
|
@@ -6212,18 +6008,6 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
6212
6008
|
name: string;
|
|
6213
6009
|
namespace: string;
|
|
6214
6010
|
}>, 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
6011
|
listKnowledgeBases(variables: Exact<{
|
|
6228
6012
|
input: ListKnowledgeBaseInput;
|
|
6229
6013
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<ListKnowledgeBasesQuery>;
|