@ondewo/nlu-client-typescript 6.1.0 → 6.3.0
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/api/ondewo/nlu/agent_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/agent_pb.d.ts +39 -0
- package/api/ondewo/nlu/agent_pb.js +208 -4
- package/api/ondewo/nlu/aiservices_grpc_web_pb.js +3 -1
- package/api/ondewo/nlu/aiservices_pb.d.ts +111 -0
- package/api/ondewo/nlu/aiservices_pb.js +522 -10
- package/api/ondewo/nlu/ccai_project_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/ccai_project_pb.d.ts +47 -0
- package/api/ondewo/nlu/ccai_project_pb.js +219 -7
- package/api/ondewo/nlu/context_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/entity_type_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/intent_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/operations_grpc_web_pb.js +3 -1
- package/api/ondewo/nlu/operations_pb.d.ts +23 -0
- package/api/ondewo/nlu/operations_pb.js +106 -2
- package/api/ondewo/nlu/project_role_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/project_role_pb.d.ts +22 -0
- package/api/ondewo/nlu/project_role_pb.js +104 -2
- package/api/ondewo/nlu/project_statistics_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/rag_grpc_web_pb.d.ts +697 -0
- package/api/ondewo/nlu/rag_grpc_web_pb.js +3571 -0
- package/api/ondewo/nlu/rag_pb.d.ts +4781 -0
- package/api/ondewo/nlu/rag_pb.js +37763 -0
- package/api/ondewo/nlu/server_statistics_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/session_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/session_pb.d.ts +198 -0
- package/api/ondewo/nlu/session_pb.js +953 -35
- package/api/ondewo/nlu/user_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/user_pb.d.ts +77 -0
- package/api/ondewo/nlu/user_pb.js +364 -7
- package/api/ondewo/nlu/utility_grpc_web_pb.js +1 -1
- package/api/ondewo/nlu/webhook_grpc_web_pb.js +1 -1
- package/api/ondewo/qa/qa_grpc_web_pb.js +1 -1
- package/package.json +3 -3
- package/public-api.d.ts +2 -0
- package/public-api.js +2 -0
|
@@ -0,0 +1,697 @@
|
|
|
1
|
+
import * as grpcWeb from 'grpc-web';
|
|
2
|
+
|
|
3
|
+
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb'; // proto import: "google/protobuf/empty.proto"
|
|
4
|
+
import * as google_protobuf_struct_pb from 'google-protobuf/google/protobuf/struct_pb'; // proto import: "google/protobuf/struct.proto"
|
|
5
|
+
import * as ondewo_nlu_rag_pb from '../../ondewo/nlu/rag_pb'; // proto import: "ondewo/nlu/rag.proto"
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
export class RagsClient {
|
|
9
|
+
constructor (hostname: string,
|
|
10
|
+
credentials?: null | { [index: string]: string; },
|
|
11
|
+
options?: null | { [index: string]: any; });
|
|
12
|
+
|
|
13
|
+
ragCreateDataset(
|
|
14
|
+
request: ondewo_nlu_rag_pb.RagCreateDatasetRequest,
|
|
15
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
16
|
+
callback: (err: grpcWeb.RpcError,
|
|
17
|
+
response: ondewo_nlu_rag_pb.RagDataset) => void
|
|
18
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagDataset>;
|
|
19
|
+
|
|
20
|
+
ragUpdateDataset(
|
|
21
|
+
request: ondewo_nlu_rag_pb.RagUpdateDatasetRequest,
|
|
22
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
23
|
+
callback: (err: grpcWeb.RpcError,
|
|
24
|
+
response: ondewo_nlu_rag_pb.RagDataset) => void
|
|
25
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagDataset>;
|
|
26
|
+
|
|
27
|
+
ragDeleteDatasets(
|
|
28
|
+
request: ondewo_nlu_rag_pb.RagDeleteDatasetsRequest,
|
|
29
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
30
|
+
callback: (err: grpcWeb.RpcError,
|
|
31
|
+
response: ondewo_nlu_rag_pb.RagPartialSuccess) => void
|
|
32
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
33
|
+
|
|
34
|
+
ragListDatasets(
|
|
35
|
+
request: ondewo_nlu_rag_pb.RagListDatasetsRequest,
|
|
36
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
37
|
+
callback: (err: grpcWeb.RpcError,
|
|
38
|
+
response: ondewo_nlu_rag_pb.RagDatasetList) => void
|
|
39
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagDatasetList>;
|
|
40
|
+
|
|
41
|
+
ragGetKnowledgeGraph(
|
|
42
|
+
request: ondewo_nlu_rag_pb.RagGetKnowledgeGraphRequest,
|
|
43
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
44
|
+
callback: (err: grpcWeb.RpcError,
|
|
45
|
+
response: ondewo_nlu_rag_pb.RagGetKnowledgeGraphResponse) => void
|
|
46
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagGetKnowledgeGraphResponse>;
|
|
47
|
+
|
|
48
|
+
ragDeleteKnowledgeGraph(
|
|
49
|
+
request: ondewo_nlu_rag_pb.RagDeleteKnowledgeGraphRequest,
|
|
50
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
51
|
+
callback: (err: grpcWeb.RpcError,
|
|
52
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
53
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
54
|
+
|
|
55
|
+
ragUpdateDocument(
|
|
56
|
+
request: ondewo_nlu_rag_pb.RagUpdateDocumentRequest,
|
|
57
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
58
|
+
callback: (err: grpcWeb.RpcError,
|
|
59
|
+
response: ondewo_nlu_rag_pb.RagDocument) => void
|
|
60
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagDocument>;
|
|
61
|
+
|
|
62
|
+
ragDownloadDocument(
|
|
63
|
+
request: ondewo_nlu_rag_pb.RagDownloadDocumentRequest,
|
|
64
|
+
metadata?: grpcWeb.Metadata
|
|
65
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagFileChunk>;
|
|
66
|
+
|
|
67
|
+
ragListDocuments(
|
|
68
|
+
request: ondewo_nlu_rag_pb.RagListDocumentsRequest,
|
|
69
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
70
|
+
callback: (err: grpcWeb.RpcError,
|
|
71
|
+
response: ondewo_nlu_rag_pb.RagListDocumentsResponse) => void
|
|
72
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagListDocumentsResponse>;
|
|
73
|
+
|
|
74
|
+
ragDeleteDocuments(
|
|
75
|
+
request: ondewo_nlu_rag_pb.RagDeleteDocumentsRequest,
|
|
76
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
77
|
+
callback: (err: grpcWeb.RpcError,
|
|
78
|
+
response: ondewo_nlu_rag_pb.RagPartialSuccess) => void
|
|
79
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
80
|
+
|
|
81
|
+
ragParseDocuments(
|
|
82
|
+
request: ondewo_nlu_rag_pb.RagParseDocumentsRequest,
|
|
83
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
84
|
+
callback: (err: grpcWeb.RpcError,
|
|
85
|
+
response: ondewo_nlu_rag_pb.RagPartialSuccess) => void
|
|
86
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
87
|
+
|
|
88
|
+
ragStopParsing(
|
|
89
|
+
request: ondewo_nlu_rag_pb.RagStopParsingRequest,
|
|
90
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
91
|
+
callback: (err: grpcWeb.RpcError,
|
|
92
|
+
response: ondewo_nlu_rag_pb.RagPartialSuccess) => void
|
|
93
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
94
|
+
|
|
95
|
+
ragListChunks(
|
|
96
|
+
request: ondewo_nlu_rag_pb.RagListChunksRequest,
|
|
97
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
98
|
+
callback: (err: grpcWeb.RpcError,
|
|
99
|
+
response: ondewo_nlu_rag_pb.RagListChunksResponse) => void
|
|
100
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagListChunksResponse>;
|
|
101
|
+
|
|
102
|
+
ragAddChunk(
|
|
103
|
+
request: ondewo_nlu_rag_pb.RagAddChunkRequest,
|
|
104
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
105
|
+
callback: (err: grpcWeb.RpcError,
|
|
106
|
+
response: ondewo_nlu_rag_pb.RagAddChunkResponse) => void
|
|
107
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagAddChunkResponse>;
|
|
108
|
+
|
|
109
|
+
ragRemoveChunks(
|
|
110
|
+
request: ondewo_nlu_rag_pb.RagRemoveChunksRequest,
|
|
111
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
112
|
+
callback: (err: grpcWeb.RpcError,
|
|
113
|
+
response: ondewo_nlu_rag_pb.RagPartialSuccess) => void
|
|
114
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
115
|
+
|
|
116
|
+
ragUpdateChunk(
|
|
117
|
+
request: ondewo_nlu_rag_pb.RagUpdateChunkRequest,
|
|
118
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
119
|
+
callback: (err: grpcWeb.RpcError,
|
|
120
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
121
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
122
|
+
|
|
123
|
+
ragRetrieval(
|
|
124
|
+
request: ondewo_nlu_rag_pb.RagRetrievalRequest,
|
|
125
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
126
|
+
callback: (err: grpcWeb.RpcError,
|
|
127
|
+
response: ondewo_nlu_rag_pb.RagRetrievalResponse) => void
|
|
128
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagRetrievalResponse>;
|
|
129
|
+
|
|
130
|
+
ragCreateChat(
|
|
131
|
+
request: ondewo_nlu_rag_pb.RagCreateChatRequest,
|
|
132
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
133
|
+
callback: (err: grpcWeb.RpcError,
|
|
134
|
+
response: ondewo_nlu_rag_pb.RagChat) => void
|
|
135
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagChat>;
|
|
136
|
+
|
|
137
|
+
ragUpdateChat(
|
|
138
|
+
request: ondewo_nlu_rag_pb.RagUpdateChatRequest,
|
|
139
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
140
|
+
callback: (err: grpcWeb.RpcError,
|
|
141
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
142
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
143
|
+
|
|
144
|
+
ragDeleteChats(
|
|
145
|
+
request: ondewo_nlu_rag_pb.RagDeleteChatsRequest,
|
|
146
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
147
|
+
callback: (err: grpcWeb.RpcError,
|
|
148
|
+
response: ondewo_nlu_rag_pb.RagPartialSuccess) => void
|
|
149
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
150
|
+
|
|
151
|
+
ragListChats(
|
|
152
|
+
request: ondewo_nlu_rag_pb.RagListChatsRequest,
|
|
153
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
154
|
+
callback: (err: grpcWeb.RpcError,
|
|
155
|
+
response: ondewo_nlu_rag_pb.RagChatList) => void
|
|
156
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagChatList>;
|
|
157
|
+
|
|
158
|
+
ragCreateChatSession(
|
|
159
|
+
request: ondewo_nlu_rag_pb.RagCreateChatSessionRequest,
|
|
160
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
161
|
+
callback: (err: grpcWeb.RpcError,
|
|
162
|
+
response: ondewo_nlu_rag_pb.RagChatSession) => void
|
|
163
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagChatSession>;
|
|
164
|
+
|
|
165
|
+
ragCreateAgentSession(
|
|
166
|
+
request: ondewo_nlu_rag_pb.RagCreateAgentSessionRequest,
|
|
167
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
168
|
+
callback: (err: grpcWeb.RpcError,
|
|
169
|
+
response: ondewo_nlu_rag_pb.RagAgentSession) => void
|
|
170
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagAgentSession>;
|
|
171
|
+
|
|
172
|
+
ragUpdateChatSession(
|
|
173
|
+
request: ondewo_nlu_rag_pb.RagUpdateChatSessionRequest,
|
|
174
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
175
|
+
callback: (err: grpcWeb.RpcError,
|
|
176
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
177
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
178
|
+
|
|
179
|
+
ragListChatSessions(
|
|
180
|
+
request: ondewo_nlu_rag_pb.RagListChatSessionsRequest,
|
|
181
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
182
|
+
callback: (err: grpcWeb.RpcError,
|
|
183
|
+
response: ondewo_nlu_rag_pb.RagChatSessionList) => void
|
|
184
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagChatSessionList>;
|
|
185
|
+
|
|
186
|
+
ragListAgentSessions(
|
|
187
|
+
request: ondewo_nlu_rag_pb.RagListAgentSessionsRequest,
|
|
188
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
189
|
+
callback: (err: grpcWeb.RpcError,
|
|
190
|
+
response: ondewo_nlu_rag_pb.RagAgentSessionList) => void
|
|
191
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagAgentSessionList>;
|
|
192
|
+
|
|
193
|
+
ragDeleteChatSessions(
|
|
194
|
+
request: ondewo_nlu_rag_pb.RagDeleteChatSessionsRequest,
|
|
195
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
196
|
+
callback: (err: grpcWeb.RpcError,
|
|
197
|
+
response: ondewo_nlu_rag_pb.RagPartialSuccess) => void
|
|
198
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
199
|
+
|
|
200
|
+
ragDeleteAgentSessions(
|
|
201
|
+
request: ondewo_nlu_rag_pb.RagDeleteAgentSessionsRequest,
|
|
202
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
203
|
+
callback: (err: grpcWeb.RpcError,
|
|
204
|
+
response: ondewo_nlu_rag_pb.RagPartialSuccess) => void
|
|
205
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
206
|
+
|
|
207
|
+
ragChatCompletion(
|
|
208
|
+
request: ondewo_nlu_rag_pb.RagChatCompletionRequest,
|
|
209
|
+
metadata?: grpcWeb.Metadata
|
|
210
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagChatCompletionResponse>;
|
|
211
|
+
|
|
212
|
+
ragOpenAiChatCompletion(
|
|
213
|
+
request: ondewo_nlu_rag_pb.RagOpenAiChatCompletionRequest,
|
|
214
|
+
metadata?: grpcWeb.Metadata
|
|
215
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagOpenAiChatCompletionResponse>;
|
|
216
|
+
|
|
217
|
+
ragAgentCompletion(
|
|
218
|
+
request: ondewo_nlu_rag_pb.RagAgentCompletionRequest,
|
|
219
|
+
metadata?: grpcWeb.Metadata
|
|
220
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagAgentCompletionResponse>;
|
|
221
|
+
|
|
222
|
+
ragOpenAiAgentCompletion(
|
|
223
|
+
request: ondewo_nlu_rag_pb.RagOpenAiAgentCompletionRequest,
|
|
224
|
+
metadata?: grpcWeb.Metadata
|
|
225
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagOpenAiChatCompletionResponse>;
|
|
226
|
+
|
|
227
|
+
ragCreateAgent(
|
|
228
|
+
request: ondewo_nlu_rag_pb.RagCreateAgentRequest,
|
|
229
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
230
|
+
callback: (err: grpcWeb.RpcError,
|
|
231
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
232
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
233
|
+
|
|
234
|
+
ragUpdateAgent(
|
|
235
|
+
request: ondewo_nlu_rag_pb.RagUpdateAgentRequest,
|
|
236
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
237
|
+
callback: (err: grpcWeb.RpcError,
|
|
238
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
239
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
240
|
+
|
|
241
|
+
ragDeleteAgent(
|
|
242
|
+
request: ondewo_nlu_rag_pb.RagDeleteAgentRequest,
|
|
243
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
244
|
+
callback: (err: grpcWeb.RpcError,
|
|
245
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
246
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
247
|
+
|
|
248
|
+
ragListAgents(
|
|
249
|
+
request: ondewo_nlu_rag_pb.RagListAgentsRequest,
|
|
250
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
251
|
+
callback: (err: grpcWeb.RpcError,
|
|
252
|
+
response: ondewo_nlu_rag_pb.RagAgentList) => void
|
|
253
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagAgentList>;
|
|
254
|
+
|
|
255
|
+
ragCreateFile(
|
|
256
|
+
request: ondewo_nlu_rag_pb.RagCreateFileRequest,
|
|
257
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
258
|
+
callback: (err: grpcWeb.RpcError,
|
|
259
|
+
response: ondewo_nlu_rag_pb.RagFile) => void
|
|
260
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagFile>;
|
|
261
|
+
|
|
262
|
+
ragListFiles(
|
|
263
|
+
request: ondewo_nlu_rag_pb.RagListFilesRequest,
|
|
264
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
265
|
+
callback: (err: grpcWeb.RpcError,
|
|
266
|
+
response: ondewo_nlu_rag_pb.RagListFilesResponse) => void
|
|
267
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagListFilesResponse>;
|
|
268
|
+
|
|
269
|
+
ragGetRootFolder(
|
|
270
|
+
request: ondewo_nlu_rag_pb.RagGetRootFolderRequest,
|
|
271
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
272
|
+
callback: (err: grpcWeb.RpcError,
|
|
273
|
+
response: ondewo_nlu_rag_pb.RagGetRootFolderResponse) => void
|
|
274
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagGetRootFolderResponse>;
|
|
275
|
+
|
|
276
|
+
ragGetParentFolder(
|
|
277
|
+
request: ondewo_nlu_rag_pb.RagGetParentFolderRequest,
|
|
278
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
279
|
+
callback: (err: grpcWeb.RpcError,
|
|
280
|
+
response: ondewo_nlu_rag_pb.RagGetParentFolderResponse) => void
|
|
281
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagGetParentFolderResponse>;
|
|
282
|
+
|
|
283
|
+
ragGetAllParentFolders(
|
|
284
|
+
request: ondewo_nlu_rag_pb.RagGetAllParentFoldersRequest,
|
|
285
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
286
|
+
callback: (err: grpcWeb.RpcError,
|
|
287
|
+
response: ondewo_nlu_rag_pb.RagGetAllParentFoldersResponse) => void
|
|
288
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagGetAllParentFoldersResponse>;
|
|
289
|
+
|
|
290
|
+
ragDeleteFiles(
|
|
291
|
+
request: ondewo_nlu_rag_pb.RagDeleteFilesRequest,
|
|
292
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
293
|
+
callback: (err: grpcWeb.RpcError,
|
|
294
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
295
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
296
|
+
|
|
297
|
+
ragRenameFile(
|
|
298
|
+
request: ondewo_nlu_rag_pb.RagRenameFileRequest,
|
|
299
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
300
|
+
callback: (err: grpcWeb.RpcError,
|
|
301
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
302
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
303
|
+
|
|
304
|
+
ragGetFile(
|
|
305
|
+
request: ondewo_nlu_rag_pb.RagGetFileRequest,
|
|
306
|
+
metadata?: grpcWeb.Metadata
|
|
307
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagFileChunk>;
|
|
308
|
+
|
|
309
|
+
ragMoveFile(
|
|
310
|
+
request: ondewo_nlu_rag_pb.RagMoveFileRequest,
|
|
311
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
312
|
+
callback: (err: grpcWeb.RpcError,
|
|
313
|
+
response: google_protobuf_empty_pb.Empty) => void
|
|
314
|
+
): grpcWeb.ClientReadableStream<google_protobuf_empty_pb.Empty>;
|
|
315
|
+
|
|
316
|
+
ragFileToDocument(
|
|
317
|
+
request: ondewo_nlu_rag_pb.RagFileToDocumentRequest,
|
|
318
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
319
|
+
callback: (err: grpcWeb.RpcError,
|
|
320
|
+
response: ondewo_nlu_rag_pb.RagFileToDocumentList) => void
|
|
321
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagFileToDocumentList>;
|
|
322
|
+
|
|
323
|
+
ragDifyRetrieval(
|
|
324
|
+
request: ondewo_nlu_rag_pb.RagDifyRetrievalRequest,
|
|
325
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
326
|
+
callback: (err: grpcWeb.RpcError,
|
|
327
|
+
response: ondewo_nlu_rag_pb.RagDifyRecordList) => void
|
|
328
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagDifyRecordList>;
|
|
329
|
+
|
|
330
|
+
ragAsk(
|
|
331
|
+
request: ondewo_nlu_rag_pb.RagAskRequest,
|
|
332
|
+
metadata?: grpcWeb.Metadata
|
|
333
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagAskResponse>;
|
|
334
|
+
|
|
335
|
+
ragRelatedQuestions(
|
|
336
|
+
request: ondewo_nlu_rag_pb.RagRelatedQuestionsRequest,
|
|
337
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
338
|
+
callback: (err: grpcWeb.RpcError,
|
|
339
|
+
response: ondewo_nlu_rag_pb.RagRelatedQuestionsResponse) => void
|
|
340
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagRelatedQuestionsResponse>;
|
|
341
|
+
|
|
342
|
+
ragChatbotCompletion(
|
|
343
|
+
request: ondewo_nlu_rag_pb.RagChatbotCompletionRequest,
|
|
344
|
+
metadata?: grpcWeb.Metadata
|
|
345
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagChatCompletionResponse>;
|
|
346
|
+
|
|
347
|
+
ragChatbotInfo(
|
|
348
|
+
request: ondewo_nlu_rag_pb.RagChatbotInfoRequest,
|
|
349
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
350
|
+
callback: (err: grpcWeb.RpcError,
|
|
351
|
+
response: ondewo_nlu_rag_pb.RagChatbotInfoResponse) => void
|
|
352
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagChatbotInfoResponse>;
|
|
353
|
+
|
|
354
|
+
ragAgentbotCompletion(
|
|
355
|
+
request: ondewo_nlu_rag_pb.RagAgentbotCompletionRequest,
|
|
356
|
+
metadata?: grpcWeb.Metadata
|
|
357
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagAgentCompletionResponse>;
|
|
358
|
+
|
|
359
|
+
ragAgentbotInputs(
|
|
360
|
+
request: ondewo_nlu_rag_pb.RagAgentbotInputsRequest,
|
|
361
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
362
|
+
callback: (err: grpcWeb.RpcError,
|
|
363
|
+
response: ondewo_nlu_rag_pb.RagAgentbotInputsResponse) => void
|
|
364
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagAgentbotInputsResponse>;
|
|
365
|
+
|
|
366
|
+
ragSearchbotAsk(
|
|
367
|
+
request: ondewo_nlu_rag_pb.RagSearchbotAskRequest,
|
|
368
|
+
metadata?: grpcWeb.Metadata
|
|
369
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagAskResponse>;
|
|
370
|
+
|
|
371
|
+
ragSearchbotRetrieval(
|
|
372
|
+
request: ondewo_nlu_rag_pb.RagSearchbotRetrievalRequest,
|
|
373
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
374
|
+
callback: (err: grpcWeb.RpcError,
|
|
375
|
+
response: ondewo_nlu_rag_pb.RagSearchbotRetrievalResponse) => void
|
|
376
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagSearchbotRetrievalResponse>;
|
|
377
|
+
|
|
378
|
+
ragSearchbotRelatedQuestions(
|
|
379
|
+
request: ondewo_nlu_rag_pb.RagSearchbotRelatedQuestionsRequest,
|
|
380
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
381
|
+
callback: (err: grpcWeb.RpcError,
|
|
382
|
+
response: ondewo_nlu_rag_pb.RagRelatedQuestionsResponse) => void
|
|
383
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagRelatedQuestionsResponse>;
|
|
384
|
+
|
|
385
|
+
ragSearchbotDetail(
|
|
386
|
+
request: ondewo_nlu_rag_pb.RagSearchbotDetailRequest,
|
|
387
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
388
|
+
callback: (err: grpcWeb.RpcError,
|
|
389
|
+
response: ondewo_nlu_rag_pb.RagSearchbotDetailResponse) => void
|
|
390
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagSearchbotDetailResponse>;
|
|
391
|
+
|
|
392
|
+
ragSearchbotMindmap(
|
|
393
|
+
request: ondewo_nlu_rag_pb.RagSearchbotMindmapRequest,
|
|
394
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
395
|
+
callback: (err: grpcWeb.RpcError,
|
|
396
|
+
response: google_protobuf_struct_pb.Struct) => void
|
|
397
|
+
): grpcWeb.ClientReadableStream<google_protobuf_struct_pb.Struct>;
|
|
398
|
+
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
export class RagsPromiseClient {
|
|
402
|
+
constructor (hostname: string,
|
|
403
|
+
credentials?: null | { [index: string]: string; },
|
|
404
|
+
options?: null | { [index: string]: any; });
|
|
405
|
+
|
|
406
|
+
ragCreateDataset(
|
|
407
|
+
request: ondewo_nlu_rag_pb.RagCreateDatasetRequest,
|
|
408
|
+
metadata?: grpcWeb.Metadata
|
|
409
|
+
): Promise<ondewo_nlu_rag_pb.RagDataset>;
|
|
410
|
+
|
|
411
|
+
ragUpdateDataset(
|
|
412
|
+
request: ondewo_nlu_rag_pb.RagUpdateDatasetRequest,
|
|
413
|
+
metadata?: grpcWeb.Metadata
|
|
414
|
+
): Promise<ondewo_nlu_rag_pb.RagDataset>;
|
|
415
|
+
|
|
416
|
+
ragDeleteDatasets(
|
|
417
|
+
request: ondewo_nlu_rag_pb.RagDeleteDatasetsRequest,
|
|
418
|
+
metadata?: grpcWeb.Metadata
|
|
419
|
+
): Promise<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
420
|
+
|
|
421
|
+
ragListDatasets(
|
|
422
|
+
request: ondewo_nlu_rag_pb.RagListDatasetsRequest,
|
|
423
|
+
metadata?: grpcWeb.Metadata
|
|
424
|
+
): Promise<ondewo_nlu_rag_pb.RagDatasetList>;
|
|
425
|
+
|
|
426
|
+
ragGetKnowledgeGraph(
|
|
427
|
+
request: ondewo_nlu_rag_pb.RagGetKnowledgeGraphRequest,
|
|
428
|
+
metadata?: grpcWeb.Metadata
|
|
429
|
+
): Promise<ondewo_nlu_rag_pb.RagGetKnowledgeGraphResponse>;
|
|
430
|
+
|
|
431
|
+
ragDeleteKnowledgeGraph(
|
|
432
|
+
request: ondewo_nlu_rag_pb.RagDeleteKnowledgeGraphRequest,
|
|
433
|
+
metadata?: grpcWeb.Metadata
|
|
434
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
435
|
+
|
|
436
|
+
ragUpdateDocument(
|
|
437
|
+
request: ondewo_nlu_rag_pb.RagUpdateDocumentRequest,
|
|
438
|
+
metadata?: grpcWeb.Metadata
|
|
439
|
+
): Promise<ondewo_nlu_rag_pb.RagDocument>;
|
|
440
|
+
|
|
441
|
+
ragDownloadDocument(
|
|
442
|
+
request: ondewo_nlu_rag_pb.RagDownloadDocumentRequest,
|
|
443
|
+
metadata?: grpcWeb.Metadata
|
|
444
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagFileChunk>;
|
|
445
|
+
|
|
446
|
+
ragListDocuments(
|
|
447
|
+
request: ondewo_nlu_rag_pb.RagListDocumentsRequest,
|
|
448
|
+
metadata?: grpcWeb.Metadata
|
|
449
|
+
): Promise<ondewo_nlu_rag_pb.RagListDocumentsResponse>;
|
|
450
|
+
|
|
451
|
+
ragDeleteDocuments(
|
|
452
|
+
request: ondewo_nlu_rag_pb.RagDeleteDocumentsRequest,
|
|
453
|
+
metadata?: grpcWeb.Metadata
|
|
454
|
+
): Promise<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
455
|
+
|
|
456
|
+
ragParseDocuments(
|
|
457
|
+
request: ondewo_nlu_rag_pb.RagParseDocumentsRequest,
|
|
458
|
+
metadata?: grpcWeb.Metadata
|
|
459
|
+
): Promise<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
460
|
+
|
|
461
|
+
ragStopParsing(
|
|
462
|
+
request: ondewo_nlu_rag_pb.RagStopParsingRequest,
|
|
463
|
+
metadata?: grpcWeb.Metadata
|
|
464
|
+
): Promise<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
465
|
+
|
|
466
|
+
ragListChunks(
|
|
467
|
+
request: ondewo_nlu_rag_pb.RagListChunksRequest,
|
|
468
|
+
metadata?: grpcWeb.Metadata
|
|
469
|
+
): Promise<ondewo_nlu_rag_pb.RagListChunksResponse>;
|
|
470
|
+
|
|
471
|
+
ragAddChunk(
|
|
472
|
+
request: ondewo_nlu_rag_pb.RagAddChunkRequest,
|
|
473
|
+
metadata?: grpcWeb.Metadata
|
|
474
|
+
): Promise<ondewo_nlu_rag_pb.RagAddChunkResponse>;
|
|
475
|
+
|
|
476
|
+
ragRemoveChunks(
|
|
477
|
+
request: ondewo_nlu_rag_pb.RagRemoveChunksRequest,
|
|
478
|
+
metadata?: grpcWeb.Metadata
|
|
479
|
+
): Promise<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
480
|
+
|
|
481
|
+
ragUpdateChunk(
|
|
482
|
+
request: ondewo_nlu_rag_pb.RagUpdateChunkRequest,
|
|
483
|
+
metadata?: grpcWeb.Metadata
|
|
484
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
485
|
+
|
|
486
|
+
ragRetrieval(
|
|
487
|
+
request: ondewo_nlu_rag_pb.RagRetrievalRequest,
|
|
488
|
+
metadata?: grpcWeb.Metadata
|
|
489
|
+
): Promise<ondewo_nlu_rag_pb.RagRetrievalResponse>;
|
|
490
|
+
|
|
491
|
+
ragCreateChat(
|
|
492
|
+
request: ondewo_nlu_rag_pb.RagCreateChatRequest,
|
|
493
|
+
metadata?: grpcWeb.Metadata
|
|
494
|
+
): Promise<ondewo_nlu_rag_pb.RagChat>;
|
|
495
|
+
|
|
496
|
+
ragUpdateChat(
|
|
497
|
+
request: ondewo_nlu_rag_pb.RagUpdateChatRequest,
|
|
498
|
+
metadata?: grpcWeb.Metadata
|
|
499
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
500
|
+
|
|
501
|
+
ragDeleteChats(
|
|
502
|
+
request: ondewo_nlu_rag_pb.RagDeleteChatsRequest,
|
|
503
|
+
metadata?: grpcWeb.Metadata
|
|
504
|
+
): Promise<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
505
|
+
|
|
506
|
+
ragListChats(
|
|
507
|
+
request: ondewo_nlu_rag_pb.RagListChatsRequest,
|
|
508
|
+
metadata?: grpcWeb.Metadata
|
|
509
|
+
): Promise<ondewo_nlu_rag_pb.RagChatList>;
|
|
510
|
+
|
|
511
|
+
ragCreateChatSession(
|
|
512
|
+
request: ondewo_nlu_rag_pb.RagCreateChatSessionRequest,
|
|
513
|
+
metadata?: grpcWeb.Metadata
|
|
514
|
+
): Promise<ondewo_nlu_rag_pb.RagChatSession>;
|
|
515
|
+
|
|
516
|
+
ragCreateAgentSession(
|
|
517
|
+
request: ondewo_nlu_rag_pb.RagCreateAgentSessionRequest,
|
|
518
|
+
metadata?: grpcWeb.Metadata
|
|
519
|
+
): Promise<ondewo_nlu_rag_pb.RagAgentSession>;
|
|
520
|
+
|
|
521
|
+
ragUpdateChatSession(
|
|
522
|
+
request: ondewo_nlu_rag_pb.RagUpdateChatSessionRequest,
|
|
523
|
+
metadata?: grpcWeb.Metadata
|
|
524
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
525
|
+
|
|
526
|
+
ragListChatSessions(
|
|
527
|
+
request: ondewo_nlu_rag_pb.RagListChatSessionsRequest,
|
|
528
|
+
metadata?: grpcWeb.Metadata
|
|
529
|
+
): Promise<ondewo_nlu_rag_pb.RagChatSessionList>;
|
|
530
|
+
|
|
531
|
+
ragListAgentSessions(
|
|
532
|
+
request: ondewo_nlu_rag_pb.RagListAgentSessionsRequest,
|
|
533
|
+
metadata?: grpcWeb.Metadata
|
|
534
|
+
): Promise<ondewo_nlu_rag_pb.RagAgentSessionList>;
|
|
535
|
+
|
|
536
|
+
ragDeleteChatSessions(
|
|
537
|
+
request: ondewo_nlu_rag_pb.RagDeleteChatSessionsRequest,
|
|
538
|
+
metadata?: grpcWeb.Metadata
|
|
539
|
+
): Promise<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
540
|
+
|
|
541
|
+
ragDeleteAgentSessions(
|
|
542
|
+
request: ondewo_nlu_rag_pb.RagDeleteAgentSessionsRequest,
|
|
543
|
+
metadata?: grpcWeb.Metadata
|
|
544
|
+
): Promise<ondewo_nlu_rag_pb.RagPartialSuccess>;
|
|
545
|
+
|
|
546
|
+
ragChatCompletion(
|
|
547
|
+
request: ondewo_nlu_rag_pb.RagChatCompletionRequest,
|
|
548
|
+
metadata?: grpcWeb.Metadata
|
|
549
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagChatCompletionResponse>;
|
|
550
|
+
|
|
551
|
+
ragOpenAiChatCompletion(
|
|
552
|
+
request: ondewo_nlu_rag_pb.RagOpenAiChatCompletionRequest,
|
|
553
|
+
metadata?: grpcWeb.Metadata
|
|
554
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagOpenAiChatCompletionResponse>;
|
|
555
|
+
|
|
556
|
+
ragAgentCompletion(
|
|
557
|
+
request: ondewo_nlu_rag_pb.RagAgentCompletionRequest,
|
|
558
|
+
metadata?: grpcWeb.Metadata
|
|
559
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagAgentCompletionResponse>;
|
|
560
|
+
|
|
561
|
+
ragOpenAiAgentCompletion(
|
|
562
|
+
request: ondewo_nlu_rag_pb.RagOpenAiAgentCompletionRequest,
|
|
563
|
+
metadata?: grpcWeb.Metadata
|
|
564
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagOpenAiChatCompletionResponse>;
|
|
565
|
+
|
|
566
|
+
ragCreateAgent(
|
|
567
|
+
request: ondewo_nlu_rag_pb.RagCreateAgentRequest,
|
|
568
|
+
metadata?: grpcWeb.Metadata
|
|
569
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
570
|
+
|
|
571
|
+
ragUpdateAgent(
|
|
572
|
+
request: ondewo_nlu_rag_pb.RagUpdateAgentRequest,
|
|
573
|
+
metadata?: grpcWeb.Metadata
|
|
574
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
575
|
+
|
|
576
|
+
ragDeleteAgent(
|
|
577
|
+
request: ondewo_nlu_rag_pb.RagDeleteAgentRequest,
|
|
578
|
+
metadata?: grpcWeb.Metadata
|
|
579
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
580
|
+
|
|
581
|
+
ragListAgents(
|
|
582
|
+
request: ondewo_nlu_rag_pb.RagListAgentsRequest,
|
|
583
|
+
metadata?: grpcWeb.Metadata
|
|
584
|
+
): Promise<ondewo_nlu_rag_pb.RagAgentList>;
|
|
585
|
+
|
|
586
|
+
ragCreateFile(
|
|
587
|
+
request: ondewo_nlu_rag_pb.RagCreateFileRequest,
|
|
588
|
+
metadata?: grpcWeb.Metadata
|
|
589
|
+
): Promise<ondewo_nlu_rag_pb.RagFile>;
|
|
590
|
+
|
|
591
|
+
ragListFiles(
|
|
592
|
+
request: ondewo_nlu_rag_pb.RagListFilesRequest,
|
|
593
|
+
metadata?: grpcWeb.Metadata
|
|
594
|
+
): Promise<ondewo_nlu_rag_pb.RagListFilesResponse>;
|
|
595
|
+
|
|
596
|
+
ragGetRootFolder(
|
|
597
|
+
request: ondewo_nlu_rag_pb.RagGetRootFolderRequest,
|
|
598
|
+
metadata?: grpcWeb.Metadata
|
|
599
|
+
): Promise<ondewo_nlu_rag_pb.RagGetRootFolderResponse>;
|
|
600
|
+
|
|
601
|
+
ragGetParentFolder(
|
|
602
|
+
request: ondewo_nlu_rag_pb.RagGetParentFolderRequest,
|
|
603
|
+
metadata?: grpcWeb.Metadata
|
|
604
|
+
): Promise<ondewo_nlu_rag_pb.RagGetParentFolderResponse>;
|
|
605
|
+
|
|
606
|
+
ragGetAllParentFolders(
|
|
607
|
+
request: ondewo_nlu_rag_pb.RagGetAllParentFoldersRequest,
|
|
608
|
+
metadata?: grpcWeb.Metadata
|
|
609
|
+
): Promise<ondewo_nlu_rag_pb.RagGetAllParentFoldersResponse>;
|
|
610
|
+
|
|
611
|
+
ragDeleteFiles(
|
|
612
|
+
request: ondewo_nlu_rag_pb.RagDeleteFilesRequest,
|
|
613
|
+
metadata?: grpcWeb.Metadata
|
|
614
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
615
|
+
|
|
616
|
+
ragRenameFile(
|
|
617
|
+
request: ondewo_nlu_rag_pb.RagRenameFileRequest,
|
|
618
|
+
metadata?: grpcWeb.Metadata
|
|
619
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
620
|
+
|
|
621
|
+
ragGetFile(
|
|
622
|
+
request: ondewo_nlu_rag_pb.RagGetFileRequest,
|
|
623
|
+
metadata?: grpcWeb.Metadata
|
|
624
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagFileChunk>;
|
|
625
|
+
|
|
626
|
+
ragMoveFile(
|
|
627
|
+
request: ondewo_nlu_rag_pb.RagMoveFileRequest,
|
|
628
|
+
metadata?: grpcWeb.Metadata
|
|
629
|
+
): Promise<google_protobuf_empty_pb.Empty>;
|
|
630
|
+
|
|
631
|
+
ragFileToDocument(
|
|
632
|
+
request: ondewo_nlu_rag_pb.RagFileToDocumentRequest,
|
|
633
|
+
metadata?: grpcWeb.Metadata
|
|
634
|
+
): Promise<ondewo_nlu_rag_pb.RagFileToDocumentList>;
|
|
635
|
+
|
|
636
|
+
ragDifyRetrieval(
|
|
637
|
+
request: ondewo_nlu_rag_pb.RagDifyRetrievalRequest,
|
|
638
|
+
metadata?: grpcWeb.Metadata
|
|
639
|
+
): Promise<ondewo_nlu_rag_pb.RagDifyRecordList>;
|
|
640
|
+
|
|
641
|
+
ragAsk(
|
|
642
|
+
request: ondewo_nlu_rag_pb.RagAskRequest,
|
|
643
|
+
metadata?: grpcWeb.Metadata
|
|
644
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagAskResponse>;
|
|
645
|
+
|
|
646
|
+
ragRelatedQuestions(
|
|
647
|
+
request: ondewo_nlu_rag_pb.RagRelatedQuestionsRequest,
|
|
648
|
+
metadata?: grpcWeb.Metadata
|
|
649
|
+
): Promise<ondewo_nlu_rag_pb.RagRelatedQuestionsResponse>;
|
|
650
|
+
|
|
651
|
+
ragChatbotCompletion(
|
|
652
|
+
request: ondewo_nlu_rag_pb.RagChatbotCompletionRequest,
|
|
653
|
+
metadata?: grpcWeb.Metadata
|
|
654
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagChatCompletionResponse>;
|
|
655
|
+
|
|
656
|
+
ragChatbotInfo(
|
|
657
|
+
request: ondewo_nlu_rag_pb.RagChatbotInfoRequest,
|
|
658
|
+
metadata?: grpcWeb.Metadata
|
|
659
|
+
): Promise<ondewo_nlu_rag_pb.RagChatbotInfoResponse>;
|
|
660
|
+
|
|
661
|
+
ragAgentbotCompletion(
|
|
662
|
+
request: ondewo_nlu_rag_pb.RagAgentbotCompletionRequest,
|
|
663
|
+
metadata?: grpcWeb.Metadata
|
|
664
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagAgentCompletionResponse>;
|
|
665
|
+
|
|
666
|
+
ragAgentbotInputs(
|
|
667
|
+
request: ondewo_nlu_rag_pb.RagAgentbotInputsRequest,
|
|
668
|
+
metadata?: grpcWeb.Metadata
|
|
669
|
+
): Promise<ondewo_nlu_rag_pb.RagAgentbotInputsResponse>;
|
|
670
|
+
|
|
671
|
+
ragSearchbotAsk(
|
|
672
|
+
request: ondewo_nlu_rag_pb.RagSearchbotAskRequest,
|
|
673
|
+
metadata?: grpcWeb.Metadata
|
|
674
|
+
): grpcWeb.ClientReadableStream<ondewo_nlu_rag_pb.RagAskResponse>;
|
|
675
|
+
|
|
676
|
+
ragSearchbotRetrieval(
|
|
677
|
+
request: ondewo_nlu_rag_pb.RagSearchbotRetrievalRequest,
|
|
678
|
+
metadata?: grpcWeb.Metadata
|
|
679
|
+
): Promise<ondewo_nlu_rag_pb.RagSearchbotRetrievalResponse>;
|
|
680
|
+
|
|
681
|
+
ragSearchbotRelatedQuestions(
|
|
682
|
+
request: ondewo_nlu_rag_pb.RagSearchbotRelatedQuestionsRequest,
|
|
683
|
+
metadata?: grpcWeb.Metadata
|
|
684
|
+
): Promise<ondewo_nlu_rag_pb.RagRelatedQuestionsResponse>;
|
|
685
|
+
|
|
686
|
+
ragSearchbotDetail(
|
|
687
|
+
request: ondewo_nlu_rag_pb.RagSearchbotDetailRequest,
|
|
688
|
+
metadata?: grpcWeb.Metadata
|
|
689
|
+
): Promise<ondewo_nlu_rag_pb.RagSearchbotDetailResponse>;
|
|
690
|
+
|
|
691
|
+
ragSearchbotMindmap(
|
|
692
|
+
request: ondewo_nlu_rag_pb.RagSearchbotMindmapRequest,
|
|
693
|
+
metadata?: grpcWeb.Metadata
|
|
694
|
+
): Promise<google_protobuf_struct_pb.Struct>;
|
|
695
|
+
|
|
696
|
+
}
|
|
697
|
+
|