@yuntijs/arcadia-bff-sdk 1.0.73 → 1.0.75
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/esm/index.d.ts +127 -0
- package/dist/esm/sdk.d.ts +806 -1
- package/dist/esm/sdk.js +99 -30
- package/dist/umd/index.min.js +1 -1
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.d.ts
CHANGED
|
@@ -69,6 +69,12 @@ export declare const sdk: {
|
|
|
69
69
|
name: string;
|
|
70
70
|
namespace: string;
|
|
71
71
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError>;
|
|
72
|
+
useGetGpt(variables: import("./sdk").Exact<{
|
|
73
|
+
name: string;
|
|
74
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError>;
|
|
75
|
+
useListGpTs(variables: import("./sdk").Exact<{
|
|
76
|
+
input: import("./sdk").ListGptInput;
|
|
77
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError>;
|
|
72
78
|
useListKnowledgeBases(variables: import("./sdk").Exact<{
|
|
73
79
|
input: import("./sdk").ListKnowledgeBaseInput;
|
|
74
80
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError>;
|
|
@@ -102,6 +108,13 @@ export declare const sdk: {
|
|
|
102
108
|
useCheckModelService(variables: import("./sdk").Exact<{
|
|
103
109
|
input: import("./sdk").CreateModelServiceInput;
|
|
104
110
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").CheckModelServiceQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").CheckModelServiceQuery, import("graphql-request/src/types").ClientError>;
|
|
111
|
+
useListRag(variables: import("./sdk").Exact<{
|
|
112
|
+
input: import("./sdk").ListRagInput;
|
|
113
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListRagQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListRagQuery, import("graphql-request/src/types").ClientError>;
|
|
114
|
+
useGetRag(variables: import("./sdk").Exact<{
|
|
115
|
+
name: string;
|
|
116
|
+
namespace: string;
|
|
117
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetRagQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetRagQuery, import("graphql-request/src/types").ClientError>;
|
|
105
118
|
useListRayClusters(variables: import("./sdk").Exact<{
|
|
106
119
|
input: import("./sdk").ListCommonInput;
|
|
107
120
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListRayClustersQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListRayClustersQuery, import("graphql-request/src/types").ClientError>;
|
|
@@ -225,6 +238,12 @@ export declare const sdk: {
|
|
|
225
238
|
name: string;
|
|
226
239
|
namespace: string;
|
|
227
240
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetEmbedderQuery>;
|
|
241
|
+
getGPT(variables: import("./sdk").Exact<{
|
|
242
|
+
name: string;
|
|
243
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptQuery>;
|
|
244
|
+
listGPTs(variables: import("./sdk").Exact<{
|
|
245
|
+
input: import("./sdk").ListGptInput;
|
|
246
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGpTsQuery>;
|
|
228
247
|
listKnowledgeBases(variables: import("./sdk").Exact<{
|
|
229
248
|
input: import("./sdk").ListKnowledgeBaseInput;
|
|
230
249
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListKnowledgeBasesQuery>;
|
|
@@ -285,6 +304,22 @@ export declare const sdk: {
|
|
|
285
304
|
checkModelService(variables: import("./sdk").Exact<{
|
|
286
305
|
input: import("./sdk").CreateModelServiceInput;
|
|
287
306
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CheckModelServiceQuery>;
|
|
307
|
+
listRAG(variables: import("./sdk").Exact<{
|
|
308
|
+
input: import("./sdk").ListRagInput;
|
|
309
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRagQuery>;
|
|
310
|
+
getRAG(variables: import("./sdk").Exact<{
|
|
311
|
+
name: string;
|
|
312
|
+
namespace: string;
|
|
313
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetRagQuery>;
|
|
314
|
+
createRAG(variables: import("./sdk").Exact<{
|
|
315
|
+
input: import("./sdk").CreateRagInput;
|
|
316
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateRagMutation>;
|
|
317
|
+
updateRAG(variables: import("./sdk").Exact<{
|
|
318
|
+
input: import("./sdk").UpdateRagInput;
|
|
319
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateRagMutation>;
|
|
320
|
+
deleteRAG(variables: import("./sdk").Exact<{
|
|
321
|
+
input: import("./sdk").DeleteRagInput;
|
|
322
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteRagMutation>;
|
|
288
323
|
listRayClusters(variables: import("./sdk").Exact<{
|
|
289
324
|
input: import("./sdk").ListCommonInput;
|
|
290
325
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRayClustersQuery>;
|
|
@@ -451,6 +486,12 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
451
486
|
name: string;
|
|
452
487
|
namespace: string;
|
|
453
488
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetEmbedderQuery>;
|
|
489
|
+
getGPT(variables: import("./sdk").Exact<{
|
|
490
|
+
name: string;
|
|
491
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptQuery>;
|
|
492
|
+
listGPTs(variables: import("./sdk").Exact<{
|
|
493
|
+
input: import("./sdk").ListGptInput;
|
|
494
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGpTsQuery>;
|
|
454
495
|
listKnowledgeBases(variables: import("./sdk").Exact<{
|
|
455
496
|
input: import("./sdk").ListKnowledgeBaseInput;
|
|
456
497
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListKnowledgeBasesQuery>;
|
|
@@ -511,6 +552,22 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
511
552
|
checkModelService(variables: import("./sdk").Exact<{
|
|
512
553
|
input: import("./sdk").CreateModelServiceInput;
|
|
513
554
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CheckModelServiceQuery>;
|
|
555
|
+
listRAG(variables: import("./sdk").Exact<{
|
|
556
|
+
input: import("./sdk").ListRagInput;
|
|
557
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRagQuery>;
|
|
558
|
+
getRAG(variables: import("./sdk").Exact<{
|
|
559
|
+
name: string;
|
|
560
|
+
namespace: string;
|
|
561
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetRagQuery>;
|
|
562
|
+
createRAG(variables: import("./sdk").Exact<{
|
|
563
|
+
input: import("./sdk").CreateRagInput;
|
|
564
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateRagMutation>;
|
|
565
|
+
updateRAG(variables: import("./sdk").Exact<{
|
|
566
|
+
input: import("./sdk").UpdateRagInput;
|
|
567
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateRagMutation>;
|
|
568
|
+
deleteRAG(variables: import("./sdk").Exact<{
|
|
569
|
+
input: import("./sdk").DeleteRagInput;
|
|
570
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteRagMutation>;
|
|
514
571
|
listRayClusters(variables: import("./sdk").Exact<{
|
|
515
572
|
input: import("./sdk").ListCommonInput;
|
|
516
573
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRayClustersQuery>;
|
|
@@ -614,6 +671,12 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
614
671
|
name: string;
|
|
615
672
|
namespace: string;
|
|
616
673
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError>;
|
|
674
|
+
useGetGpt(variables: import("./sdk").Exact<{
|
|
675
|
+
name: string;
|
|
676
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError>;
|
|
677
|
+
useListGpTs(variables: import("./sdk").Exact<{
|
|
678
|
+
input: import("./sdk").ListGptInput;
|
|
679
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError>;
|
|
617
680
|
useListKnowledgeBases(variables: import("./sdk").Exact<{
|
|
618
681
|
input: import("./sdk").ListKnowledgeBaseInput;
|
|
619
682
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError>;
|
|
@@ -647,6 +710,13 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
647
710
|
useCheckModelService(variables: import("./sdk").Exact<{
|
|
648
711
|
input: import("./sdk").CreateModelServiceInput;
|
|
649
712
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").CheckModelServiceQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").CheckModelServiceQuery, import("graphql-request/src/types").ClientError>;
|
|
713
|
+
useListRag(variables: import("./sdk").Exact<{
|
|
714
|
+
input: import("./sdk").ListRagInput;
|
|
715
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListRagQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListRagQuery, import("graphql-request/src/types").ClientError>;
|
|
716
|
+
useGetRag(variables: import("./sdk").Exact<{
|
|
717
|
+
name: string;
|
|
718
|
+
namespace: string;
|
|
719
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetRagQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetRagQuery, import("graphql-request/src/types").ClientError>;
|
|
650
720
|
useListRayClusters(variables: import("./sdk").Exact<{
|
|
651
721
|
input: import("./sdk").ListCommonInput;
|
|
652
722
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListRayClustersQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListRayClustersQuery, import("graphql-request/src/types").ClientError>;
|
|
@@ -770,6 +840,12 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
770
840
|
name: string;
|
|
771
841
|
namespace: string;
|
|
772
842
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetEmbedderQuery>;
|
|
843
|
+
getGPT(variables: import("./sdk").Exact<{
|
|
844
|
+
name: string;
|
|
845
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptQuery>;
|
|
846
|
+
listGPTs(variables: import("./sdk").Exact<{
|
|
847
|
+
input: import("./sdk").ListGptInput;
|
|
848
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGpTsQuery>;
|
|
773
849
|
listKnowledgeBases(variables: import("./sdk").Exact<{
|
|
774
850
|
input: import("./sdk").ListKnowledgeBaseInput;
|
|
775
851
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListKnowledgeBasesQuery>;
|
|
@@ -830,6 +906,22 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
830
906
|
checkModelService(variables: import("./sdk").Exact<{
|
|
831
907
|
input: import("./sdk").CreateModelServiceInput;
|
|
832
908
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CheckModelServiceQuery>;
|
|
909
|
+
listRAG(variables: import("./sdk").Exact<{
|
|
910
|
+
input: import("./sdk").ListRagInput;
|
|
911
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRagQuery>;
|
|
912
|
+
getRAG(variables: import("./sdk").Exact<{
|
|
913
|
+
name: string;
|
|
914
|
+
namespace: string;
|
|
915
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetRagQuery>;
|
|
916
|
+
createRAG(variables: import("./sdk").Exact<{
|
|
917
|
+
input: import("./sdk").CreateRagInput;
|
|
918
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateRagMutation>;
|
|
919
|
+
updateRAG(variables: import("./sdk").Exact<{
|
|
920
|
+
input: import("./sdk").UpdateRagInput;
|
|
921
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateRagMutation>;
|
|
922
|
+
deleteRAG(variables: import("./sdk").Exact<{
|
|
923
|
+
input: import("./sdk").DeleteRagInput;
|
|
924
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteRagMutation>;
|
|
833
925
|
listRayClusters(variables: import("./sdk").Exact<{
|
|
834
926
|
input: import("./sdk").ListCommonInput;
|
|
835
927
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRayClustersQuery>;
|
|
@@ -933,6 +1025,12 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
933
1025
|
name: string;
|
|
934
1026
|
namespace: string;
|
|
935
1027
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetEmbedderQuery, import("graphql-request/src/types").ClientError>;
|
|
1028
|
+
useGetGpt(variables: import("./sdk").Exact<{
|
|
1029
|
+
name: string;
|
|
1030
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetGptQuery, import("graphql-request/src/types").ClientError>;
|
|
1031
|
+
useListGpTs(variables: import("./sdk").Exact<{
|
|
1032
|
+
input: import("./sdk").ListGptInput;
|
|
1033
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListGpTsQuery, import("graphql-request/src/types").ClientError>;
|
|
936
1034
|
useListKnowledgeBases(variables: import("./sdk").Exact<{
|
|
937
1035
|
input: import("./sdk").ListKnowledgeBaseInput;
|
|
938
1036
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListKnowledgeBasesQuery, import("graphql-request/src/types").ClientError>;
|
|
@@ -966,6 +1064,13 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
966
1064
|
useCheckModelService(variables: import("./sdk").Exact<{
|
|
967
1065
|
input: import("./sdk").CreateModelServiceInput;
|
|
968
1066
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").CheckModelServiceQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").CheckModelServiceQuery, import("graphql-request/src/types").ClientError>;
|
|
1067
|
+
useListRag(variables: import("./sdk").Exact<{
|
|
1068
|
+
input: import("./sdk").ListRagInput;
|
|
1069
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListRagQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListRagQuery, import("graphql-request/src/types").ClientError>;
|
|
1070
|
+
useGetRag(variables: import("./sdk").Exact<{
|
|
1071
|
+
name: string;
|
|
1072
|
+
namespace: string;
|
|
1073
|
+
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").GetRagQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").GetRagQuery, import("graphql-request/src/types").ClientError>;
|
|
969
1074
|
useListRayClusters(variables: import("./sdk").Exact<{
|
|
970
1075
|
input: import("./sdk").ListCommonInput;
|
|
971
1076
|
}>, config?: Partial<import("swr/_internal").PublicConfiguration<import("./sdk").ListRayClustersQuery, import("graphql-request/src/types").ClientError, import("swr/_internal").BareFetcher<any>>> | undefined): import("./useSWR").SWRResponsePro<import("./sdk").ListRayClustersQuery, import("graphql-request/src/types").ClientError>;
|
|
@@ -1089,6 +1194,12 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1089
1194
|
name: string;
|
|
1090
1195
|
namespace: string;
|
|
1091
1196
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetEmbedderQuery>;
|
|
1197
|
+
getGPT(variables: import("./sdk").Exact<{
|
|
1198
|
+
name: string;
|
|
1199
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetGptQuery>;
|
|
1200
|
+
listGPTs(variables: import("./sdk").Exact<{
|
|
1201
|
+
input: import("./sdk").ListGptInput;
|
|
1202
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListGpTsQuery>;
|
|
1092
1203
|
listKnowledgeBases(variables: import("./sdk").Exact<{
|
|
1093
1204
|
input: import("./sdk").ListKnowledgeBaseInput;
|
|
1094
1205
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListKnowledgeBasesQuery>;
|
|
@@ -1149,6 +1260,22 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1149
1260
|
checkModelService(variables: import("./sdk").Exact<{
|
|
1150
1261
|
input: import("./sdk").CreateModelServiceInput;
|
|
1151
1262
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CheckModelServiceQuery>;
|
|
1263
|
+
listRAG(variables: import("./sdk").Exact<{
|
|
1264
|
+
input: import("./sdk").ListRagInput;
|
|
1265
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRagQuery>;
|
|
1266
|
+
getRAG(variables: import("./sdk").Exact<{
|
|
1267
|
+
name: string;
|
|
1268
|
+
namespace: string;
|
|
1269
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").GetRagQuery>;
|
|
1270
|
+
createRAG(variables: import("./sdk").Exact<{
|
|
1271
|
+
input: import("./sdk").CreateRagInput;
|
|
1272
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").CreateRagMutation>;
|
|
1273
|
+
updateRAG(variables: import("./sdk").Exact<{
|
|
1274
|
+
input: import("./sdk").UpdateRagInput;
|
|
1275
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateRagMutation>;
|
|
1276
|
+
deleteRAG(variables: import("./sdk").Exact<{
|
|
1277
|
+
input: import("./sdk").DeleteRagInput;
|
|
1278
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").DeleteRagMutation>;
|
|
1152
1279
|
listRayClusters(variables: import("./sdk").Exact<{
|
|
1153
1280
|
input: import("./sdk").ListCommonInput;
|
|
1154
1281
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").ListRayClustersQuery>;
|