@ondewo/nlu-client-typescript 6.3.0 → 6.5.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.
@@ -20,9 +20,21 @@ const grpc = {};
20
20
  grpc.web = require('grpc-web');
21
21
 
22
22
 
23
- var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb.js')
24
-
25
23
  var google_protobuf_struct_pb = require('google-protobuf/google/protobuf/struct_pb.js')
24
+
25
+ var google_protobuf_field_mask_pb = require('google-protobuf/google/protobuf/field_mask_pb.js')
26
+
27
+ var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js')
28
+
29
+ var google_logging_v2_log_entry_pb = require('../../google/logging/v2/log_entry_pb.js')
30
+
31
+ var ondewo_nlu_operation_metadata_pb = require('../../ondewo/nlu/operation_metadata_pb.js')
32
+
33
+ var ondewo_nlu_operations_pb = require('../../ondewo/nlu/operations_pb.js')
34
+
35
+ var ondewo_nlu_session_pb = require('../../ondewo/nlu/session_pb.js')
36
+
37
+ var ondewo_nlu_common_pb = require('../../ondewo/nlu/common_pb.js')
26
38
  const proto = {};
27
39
  proto.ondewo = {};
28
40
  proto.ondewo.nlu = require('./rag_pb.js');
@@ -204,16 +216,16 @@ proto.ondewo.nlu.RagsPromiseClient.prototype.ragUpdateDataset =
204
216
  /**
205
217
  * @const
206
218
  * @type {!grpc.web.MethodDescriptor<
207
- * !proto.ondewo.nlu.RagDeleteDatasetsRequest,
219
+ * !proto.ondewo.nlu.RagDeleteRequest,
208
220
  * !proto.ondewo.nlu.RagPartialSuccess>}
209
221
  */
210
222
  const methodDescriptor_Rags_RagDeleteDatasets = new grpc.web.MethodDescriptor(
211
223
  '/ondewo.nlu.Rags/RagDeleteDatasets',
212
224
  grpc.web.MethodType.UNARY,
213
- proto.ondewo.nlu.RagDeleteDatasetsRequest,
225
+ proto.ondewo.nlu.RagDeleteRequest,
214
226
  proto.ondewo.nlu.RagPartialSuccess,
215
227
  /**
216
- * @param {!proto.ondewo.nlu.RagDeleteDatasetsRequest} request
228
+ * @param {!proto.ondewo.nlu.RagDeleteRequest} request
217
229
  * @return {!Uint8Array}
218
230
  */
219
231
  function(request) {
@@ -224,7 +236,7 @@ const methodDescriptor_Rags_RagDeleteDatasets = new grpc.web.MethodDescriptor(
224
236
 
225
237
 
226
238
  /**
227
- * @param {!proto.ondewo.nlu.RagDeleteDatasetsRequest} request The
239
+ * @param {!proto.ondewo.nlu.RagDeleteRequest} request The
228
240
  * request proto
229
241
  * @param {?Object<string, string>} metadata User defined
230
242
  * call metadata
@@ -245,7 +257,7 @@ proto.ondewo.nlu.RagsClient.prototype.ragDeleteDatasets =
245
257
 
246
258
 
247
259
  /**
248
- * @param {!proto.ondewo.nlu.RagDeleteDatasetsRequest} request The
260
+ * @param {!proto.ondewo.nlu.RagDeleteRequest} request The
249
261
  * request proto
250
262
  * @param {?Object<string, string>=} metadata User defined
251
263
  * call metadata
@@ -323,128 +335,6 @@ proto.ondewo.nlu.RagsPromiseClient.prototype.ragListDatasets =
323
335
  };
324
336
 
325
337
 
326
- /**
327
- * @const
328
- * @type {!grpc.web.MethodDescriptor<
329
- * !proto.ondewo.nlu.RagGetKnowledgeGraphRequest,
330
- * !proto.ondewo.nlu.RagGetKnowledgeGraphResponse>}
331
- */
332
- const methodDescriptor_Rags_RagGetKnowledgeGraph = new grpc.web.MethodDescriptor(
333
- '/ondewo.nlu.Rags/RagGetKnowledgeGraph',
334
- grpc.web.MethodType.UNARY,
335
- proto.ondewo.nlu.RagGetKnowledgeGraphRequest,
336
- proto.ondewo.nlu.RagGetKnowledgeGraphResponse,
337
- /**
338
- * @param {!proto.ondewo.nlu.RagGetKnowledgeGraphRequest} request
339
- * @return {!Uint8Array}
340
- */
341
- function(request) {
342
- return request.serializeBinary();
343
- },
344
- proto.ondewo.nlu.RagGetKnowledgeGraphResponse.deserializeBinary
345
- );
346
-
347
-
348
- /**
349
- * @param {!proto.ondewo.nlu.RagGetKnowledgeGraphRequest} request The
350
- * request proto
351
- * @param {?Object<string, string>} metadata User defined
352
- * call metadata
353
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagGetKnowledgeGraphResponse)}
354
- * callback The callback function(error, response)
355
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagGetKnowledgeGraphResponse>|undefined}
356
- * The XHR Node Readable Stream
357
- */
358
- proto.ondewo.nlu.RagsClient.prototype.ragGetKnowledgeGraph =
359
- function(request, metadata, callback) {
360
- return this.client_.rpcCall(this.hostname_ +
361
- '/ondewo.nlu.Rags/RagGetKnowledgeGraph',
362
- request,
363
- metadata || {},
364
- methodDescriptor_Rags_RagGetKnowledgeGraph,
365
- callback);
366
- };
367
-
368
-
369
- /**
370
- * @param {!proto.ondewo.nlu.RagGetKnowledgeGraphRequest} request The
371
- * request proto
372
- * @param {?Object<string, string>=} metadata User defined
373
- * call metadata
374
- * @return {!Promise<!proto.ondewo.nlu.RagGetKnowledgeGraphResponse>}
375
- * Promise that resolves to the response
376
- */
377
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragGetKnowledgeGraph =
378
- function(request, metadata) {
379
- return this.client_.unaryCall(this.hostname_ +
380
- '/ondewo.nlu.Rags/RagGetKnowledgeGraph',
381
- request,
382
- metadata || {},
383
- methodDescriptor_Rags_RagGetKnowledgeGraph);
384
- };
385
-
386
-
387
- /**
388
- * @const
389
- * @type {!grpc.web.MethodDescriptor<
390
- * !proto.ondewo.nlu.RagDeleteKnowledgeGraphRequest,
391
- * !proto.google.protobuf.Empty>}
392
- */
393
- const methodDescriptor_Rags_RagDeleteKnowledgeGraph = new grpc.web.MethodDescriptor(
394
- '/ondewo.nlu.Rags/RagDeleteKnowledgeGraph',
395
- grpc.web.MethodType.UNARY,
396
- proto.ondewo.nlu.RagDeleteKnowledgeGraphRequest,
397
- google_protobuf_empty_pb.Empty,
398
- /**
399
- * @param {!proto.ondewo.nlu.RagDeleteKnowledgeGraphRequest} request
400
- * @return {!Uint8Array}
401
- */
402
- function(request) {
403
- return request.serializeBinary();
404
- },
405
- google_protobuf_empty_pb.Empty.deserializeBinary
406
- );
407
-
408
-
409
- /**
410
- * @param {!proto.ondewo.nlu.RagDeleteKnowledgeGraphRequest} request The
411
- * request proto
412
- * @param {?Object<string, string>} metadata User defined
413
- * call metadata
414
- * @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
415
- * callback The callback function(error, response)
416
- * @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
417
- * The XHR Node Readable Stream
418
- */
419
- proto.ondewo.nlu.RagsClient.prototype.ragDeleteKnowledgeGraph =
420
- function(request, metadata, callback) {
421
- return this.client_.rpcCall(this.hostname_ +
422
- '/ondewo.nlu.Rags/RagDeleteKnowledgeGraph',
423
- request,
424
- metadata || {},
425
- methodDescriptor_Rags_RagDeleteKnowledgeGraph,
426
- callback);
427
- };
428
-
429
-
430
- /**
431
- * @param {!proto.ondewo.nlu.RagDeleteKnowledgeGraphRequest} request The
432
- * request proto
433
- * @param {?Object<string, string>=} metadata User defined
434
- * call metadata
435
- * @return {!Promise<!proto.google.protobuf.Empty>}
436
- * Promise that resolves to the response
437
- */
438
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragDeleteKnowledgeGraph =
439
- function(request, metadata) {
440
- return this.client_.unaryCall(this.hostname_ +
441
- '/ondewo.nlu.Rags/RagDeleteKnowledgeGraph',
442
- request,
443
- metadata || {},
444
- methodDescriptor_Rags_RagDeleteKnowledgeGraph);
445
- };
446
-
447
-
448
338
  /**
449
339
  * @const
450
340
  * @type {!grpc.web.MethodDescriptor<
@@ -566,13 +456,13 @@ proto.ondewo.nlu.RagsPromiseClient.prototype.ragDownloadDocument =
566
456
  * @const
567
457
  * @type {!grpc.web.MethodDescriptor<
568
458
  * !proto.ondewo.nlu.RagListDocumentsRequest,
569
- * !proto.ondewo.nlu.RagListDocumentsResponse>}
459
+ * !proto.ondewo.nlu.RagDocumentList>}
570
460
  */
571
461
  const methodDescriptor_Rags_RagListDocuments = new grpc.web.MethodDescriptor(
572
462
  '/ondewo.nlu.Rags/RagListDocuments',
573
463
  grpc.web.MethodType.UNARY,
574
464
  proto.ondewo.nlu.RagListDocumentsRequest,
575
- proto.ondewo.nlu.RagListDocumentsResponse,
465
+ proto.ondewo.nlu.RagDocumentList,
576
466
  /**
577
467
  * @param {!proto.ondewo.nlu.RagListDocumentsRequest} request
578
468
  * @return {!Uint8Array}
@@ -580,7 +470,7 @@ const methodDescriptor_Rags_RagListDocuments = new grpc.web.MethodDescriptor(
580
470
  function(request) {
581
471
  return request.serializeBinary();
582
472
  },
583
- proto.ondewo.nlu.RagListDocumentsResponse.deserializeBinary
473
+ proto.ondewo.nlu.RagDocumentList.deserializeBinary
584
474
  );
585
475
 
586
476
 
@@ -589,9 +479,9 @@ const methodDescriptor_Rags_RagListDocuments = new grpc.web.MethodDescriptor(
589
479
  * request proto
590
480
  * @param {?Object<string, string>} metadata User defined
591
481
  * call metadata
592
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagListDocumentsResponse)}
482
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagDocumentList)}
593
483
  * callback The callback function(error, response)
594
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagListDocumentsResponse>|undefined}
484
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagDocumentList>|undefined}
595
485
  * The XHR Node Readable Stream
596
486
  */
597
487
  proto.ondewo.nlu.RagsClient.prototype.ragListDocuments =
@@ -610,7 +500,7 @@ proto.ondewo.nlu.RagsClient.prototype.ragListDocuments =
610
500
  * request proto
611
501
  * @param {?Object<string, string>=} metadata User defined
612
502
  * call metadata
613
- * @return {!Promise<!proto.ondewo.nlu.RagListDocumentsResponse>}
503
+ * @return {!Promise<!proto.ondewo.nlu.RagDocumentList>}
614
504
  * Promise that resolves to the response
615
505
  */
616
506
  proto.ondewo.nlu.RagsPromiseClient.prototype.ragListDocuments =
@@ -687,77 +577,77 @@ proto.ondewo.nlu.RagsPromiseClient.prototype.ragDeleteDocuments =
687
577
  /**
688
578
  * @const
689
579
  * @type {!grpc.web.MethodDescriptor<
690
- * !proto.ondewo.nlu.RagParseDocumentsRequest,
691
- * !proto.ondewo.nlu.RagPartialSuccess>}
580
+ * !proto.ondewo.nlu.RagRetrievalRequest,
581
+ * !proto.ondewo.nlu.RagRetrievalResponse>}
692
582
  */
693
- const methodDescriptor_Rags_RagParseDocuments = new grpc.web.MethodDescriptor(
694
- '/ondewo.nlu.Rags/RagParseDocuments',
583
+ const methodDescriptor_Rags_RagRetrieval = new grpc.web.MethodDescriptor(
584
+ '/ondewo.nlu.Rags/RagRetrieval',
695
585
  grpc.web.MethodType.UNARY,
696
- proto.ondewo.nlu.RagParseDocumentsRequest,
697
- proto.ondewo.nlu.RagPartialSuccess,
586
+ proto.ondewo.nlu.RagRetrievalRequest,
587
+ proto.ondewo.nlu.RagRetrievalResponse,
698
588
  /**
699
- * @param {!proto.ondewo.nlu.RagParseDocumentsRequest} request
589
+ * @param {!proto.ondewo.nlu.RagRetrievalRequest} request
700
590
  * @return {!Uint8Array}
701
591
  */
702
592
  function(request) {
703
593
  return request.serializeBinary();
704
594
  },
705
- proto.ondewo.nlu.RagPartialSuccess.deserializeBinary
595
+ proto.ondewo.nlu.RagRetrievalResponse.deserializeBinary
706
596
  );
707
597
 
708
598
 
709
599
  /**
710
- * @param {!proto.ondewo.nlu.RagParseDocumentsRequest} request The
600
+ * @param {!proto.ondewo.nlu.RagRetrievalRequest} request The
711
601
  * request proto
712
602
  * @param {?Object<string, string>} metadata User defined
713
603
  * call metadata
714
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagPartialSuccess)}
604
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagRetrievalResponse)}
715
605
  * callback The callback function(error, response)
716
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagPartialSuccess>|undefined}
606
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagRetrievalResponse>|undefined}
717
607
  * The XHR Node Readable Stream
718
608
  */
719
- proto.ondewo.nlu.RagsClient.prototype.ragParseDocuments =
609
+ proto.ondewo.nlu.RagsClient.prototype.ragRetrieval =
720
610
  function(request, metadata, callback) {
721
611
  return this.client_.rpcCall(this.hostname_ +
722
- '/ondewo.nlu.Rags/RagParseDocuments',
612
+ '/ondewo.nlu.Rags/RagRetrieval',
723
613
  request,
724
614
  metadata || {},
725
- methodDescriptor_Rags_RagParseDocuments,
615
+ methodDescriptor_Rags_RagRetrieval,
726
616
  callback);
727
617
  };
728
618
 
729
619
 
730
620
  /**
731
- * @param {!proto.ondewo.nlu.RagParseDocumentsRequest} request The
621
+ * @param {!proto.ondewo.nlu.RagRetrievalRequest} request The
732
622
  * request proto
733
623
  * @param {?Object<string, string>=} metadata User defined
734
624
  * call metadata
735
- * @return {!Promise<!proto.ondewo.nlu.RagPartialSuccess>}
625
+ * @return {!Promise<!proto.ondewo.nlu.RagRetrievalResponse>}
736
626
  * Promise that resolves to the response
737
627
  */
738
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragParseDocuments =
628
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragRetrieval =
739
629
  function(request, metadata) {
740
630
  return this.client_.unaryCall(this.hostname_ +
741
- '/ondewo.nlu.Rags/RagParseDocuments',
631
+ '/ondewo.nlu.Rags/RagRetrieval',
742
632
  request,
743
633
  metadata || {},
744
- methodDescriptor_Rags_RagParseDocuments);
634
+ methodDescriptor_Rags_RagRetrieval);
745
635
  };
746
636
 
747
637
 
748
638
  /**
749
639
  * @const
750
640
  * @type {!grpc.web.MethodDescriptor<
751
- * !proto.ondewo.nlu.RagStopParsingRequest,
641
+ * !proto.ondewo.nlu.RagDocumentIdsRequest,
752
642
  * !proto.ondewo.nlu.RagPartialSuccess>}
753
643
  */
754
- const methodDescriptor_Rags_RagStopParsing = new grpc.web.MethodDescriptor(
755
- '/ondewo.nlu.Rags/RagStopParsing',
644
+ const methodDescriptor_Rags_RagParseDocuments = new grpc.web.MethodDescriptor(
645
+ '/ondewo.nlu.Rags/RagParseDocuments',
756
646
  grpc.web.MethodType.UNARY,
757
- proto.ondewo.nlu.RagStopParsingRequest,
647
+ proto.ondewo.nlu.RagDocumentIdsRequest,
758
648
  proto.ondewo.nlu.RagPartialSuccess,
759
649
  /**
760
- * @param {!proto.ondewo.nlu.RagStopParsingRequest} request
650
+ * @param {!proto.ondewo.nlu.RagDocumentIdsRequest} request
761
651
  * @return {!Uint8Array}
762
652
  */
763
653
  function(request) {
@@ -768,7 +658,7 @@ const methodDescriptor_Rags_RagStopParsing = new grpc.web.MethodDescriptor(
768
658
 
769
659
 
770
660
  /**
771
- * @param {!proto.ondewo.nlu.RagStopParsingRequest} request The
661
+ * @param {!proto.ondewo.nlu.RagDocumentIdsRequest} request The
772
662
  * request proto
773
663
  * @param {?Object<string, string>} metadata User defined
774
664
  * call metadata
@@ -777,2793 +667,1069 @@ const methodDescriptor_Rags_RagStopParsing = new grpc.web.MethodDescriptor(
777
667
  * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagPartialSuccess>|undefined}
778
668
  * The XHR Node Readable Stream
779
669
  */
780
- proto.ondewo.nlu.RagsClient.prototype.ragStopParsing =
670
+ proto.ondewo.nlu.RagsClient.prototype.ragParseDocuments =
781
671
  function(request, metadata, callback) {
782
672
  return this.client_.rpcCall(this.hostname_ +
783
- '/ondewo.nlu.Rags/RagStopParsing',
673
+ '/ondewo.nlu.Rags/RagParseDocuments',
784
674
  request,
785
675
  metadata || {},
786
- methodDescriptor_Rags_RagStopParsing,
676
+ methodDescriptor_Rags_RagParseDocuments,
787
677
  callback);
788
678
  };
789
679
 
790
680
 
791
681
  /**
792
- * @param {!proto.ondewo.nlu.RagStopParsingRequest} request The
682
+ * @param {!proto.ondewo.nlu.RagDocumentIdsRequest} request The
793
683
  * request proto
794
684
  * @param {?Object<string, string>=} metadata User defined
795
685
  * call metadata
796
686
  * @return {!Promise<!proto.ondewo.nlu.RagPartialSuccess>}
797
687
  * Promise that resolves to the response
798
688
  */
799
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragStopParsing =
800
- function(request, metadata) {
801
- return this.client_.unaryCall(this.hostname_ +
802
- '/ondewo.nlu.Rags/RagStopParsing',
803
- request,
804
- metadata || {},
805
- methodDescriptor_Rags_RagStopParsing);
806
- };
807
-
808
-
809
- /**
810
- * @const
811
- * @type {!grpc.web.MethodDescriptor<
812
- * !proto.ondewo.nlu.RagListChunksRequest,
813
- * !proto.ondewo.nlu.RagListChunksResponse>}
814
- */
815
- const methodDescriptor_Rags_RagListChunks = new grpc.web.MethodDescriptor(
816
- '/ondewo.nlu.Rags/RagListChunks',
817
- grpc.web.MethodType.UNARY,
818
- proto.ondewo.nlu.RagListChunksRequest,
819
- proto.ondewo.nlu.RagListChunksResponse,
820
- /**
821
- * @param {!proto.ondewo.nlu.RagListChunksRequest} request
822
- * @return {!Uint8Array}
823
- */
824
- function(request) {
825
- return request.serializeBinary();
826
- },
827
- proto.ondewo.nlu.RagListChunksResponse.deserializeBinary
828
- );
829
-
830
-
831
- /**
832
- * @param {!proto.ondewo.nlu.RagListChunksRequest} request The
833
- * request proto
834
- * @param {?Object<string, string>} metadata User defined
835
- * call metadata
836
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagListChunksResponse)}
837
- * callback The callback function(error, response)
838
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagListChunksResponse>|undefined}
839
- * The XHR Node Readable Stream
840
- */
841
- proto.ondewo.nlu.RagsClient.prototype.ragListChunks =
842
- function(request, metadata, callback) {
843
- return this.client_.rpcCall(this.hostname_ +
844
- '/ondewo.nlu.Rags/RagListChunks',
845
- request,
846
- metadata || {},
847
- methodDescriptor_Rags_RagListChunks,
848
- callback);
849
- };
850
-
851
-
852
- /**
853
- * @param {!proto.ondewo.nlu.RagListChunksRequest} request The
854
- * request proto
855
- * @param {?Object<string, string>=} metadata User defined
856
- * call metadata
857
- * @return {!Promise<!proto.ondewo.nlu.RagListChunksResponse>}
858
- * Promise that resolves to the response
859
- */
860
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragListChunks =
689
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragParseDocuments =
861
690
  function(request, metadata) {
862
691
  return this.client_.unaryCall(this.hostname_ +
863
- '/ondewo.nlu.Rags/RagListChunks',
692
+ '/ondewo.nlu.Rags/RagParseDocuments',
864
693
  request,
865
694
  metadata || {},
866
- methodDescriptor_Rags_RagListChunks);
695
+ methodDescriptor_Rags_RagParseDocuments);
867
696
  };
868
697
 
869
698
 
870
699
  /**
871
700
  * @const
872
701
  * @type {!grpc.web.MethodDescriptor<
873
- * !proto.ondewo.nlu.RagAddChunkRequest,
874
- * !proto.ondewo.nlu.RagAddChunkResponse>}
702
+ * !proto.ondewo.nlu.RagDocumentIdsRequest,
703
+ * !proto.ondewo.nlu.RagPartialSuccess>}
875
704
  */
876
- const methodDescriptor_Rags_RagAddChunk = new grpc.web.MethodDescriptor(
877
- '/ondewo.nlu.Rags/RagAddChunk',
705
+ const methodDescriptor_Rags_RagStopParsing = new grpc.web.MethodDescriptor(
706
+ '/ondewo.nlu.Rags/RagStopParsing',
878
707
  grpc.web.MethodType.UNARY,
879
- proto.ondewo.nlu.RagAddChunkRequest,
880
- proto.ondewo.nlu.RagAddChunkResponse,
708
+ proto.ondewo.nlu.RagDocumentIdsRequest,
709
+ proto.ondewo.nlu.RagPartialSuccess,
881
710
  /**
882
- * @param {!proto.ondewo.nlu.RagAddChunkRequest} request
711
+ * @param {!proto.ondewo.nlu.RagDocumentIdsRequest} request
883
712
  * @return {!Uint8Array}
884
713
  */
885
714
  function(request) {
886
715
  return request.serializeBinary();
887
716
  },
888
- proto.ondewo.nlu.RagAddChunkResponse.deserializeBinary
717
+ proto.ondewo.nlu.RagPartialSuccess.deserializeBinary
889
718
  );
890
719
 
891
720
 
892
721
  /**
893
- * @param {!proto.ondewo.nlu.RagAddChunkRequest} request The
722
+ * @param {!proto.ondewo.nlu.RagDocumentIdsRequest} request The
894
723
  * request proto
895
724
  * @param {?Object<string, string>} metadata User defined
896
725
  * call metadata
897
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagAddChunkResponse)}
726
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagPartialSuccess)}
898
727
  * callback The callback function(error, response)
899
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagAddChunkResponse>|undefined}
728
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagPartialSuccess>|undefined}
900
729
  * The XHR Node Readable Stream
901
730
  */
902
- proto.ondewo.nlu.RagsClient.prototype.ragAddChunk =
731
+ proto.ondewo.nlu.RagsClient.prototype.ragStopParsing =
903
732
  function(request, metadata, callback) {
904
733
  return this.client_.rpcCall(this.hostname_ +
905
- '/ondewo.nlu.Rags/RagAddChunk',
734
+ '/ondewo.nlu.Rags/RagStopParsing',
906
735
  request,
907
736
  metadata || {},
908
- methodDescriptor_Rags_RagAddChunk,
737
+ methodDescriptor_Rags_RagStopParsing,
909
738
  callback);
910
739
  };
911
740
 
912
741
 
913
742
  /**
914
- * @param {!proto.ondewo.nlu.RagAddChunkRequest} request The
743
+ * @param {!proto.ondewo.nlu.RagDocumentIdsRequest} request The
915
744
  * request proto
916
745
  * @param {?Object<string, string>=} metadata User defined
917
746
  * call metadata
918
- * @return {!Promise<!proto.ondewo.nlu.RagAddChunkResponse>}
747
+ * @return {!Promise<!proto.ondewo.nlu.RagPartialSuccess>}
919
748
  * Promise that resolves to the response
920
749
  */
921
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragAddChunk =
750
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragStopParsing =
922
751
  function(request, metadata) {
923
752
  return this.client_.unaryCall(this.hostname_ +
924
- '/ondewo.nlu.Rags/RagAddChunk',
753
+ '/ondewo.nlu.Rags/RagStopParsing',
925
754
  request,
926
755
  metadata || {},
927
- methodDescriptor_Rags_RagAddChunk);
756
+ methodDescriptor_Rags_RagStopParsing);
928
757
  };
929
758
 
930
759
 
931
760
  /**
932
761
  * @const
933
762
  * @type {!grpc.web.MethodDescriptor<
934
- * !proto.ondewo.nlu.RagRemoveChunksRequest,
935
- * !proto.ondewo.nlu.RagPartialSuccess>}
763
+ * !proto.ondewo.nlu.RagCreateCrawlerRequest,
764
+ * !proto.ondewo.nlu.RagCrawler>}
936
765
  */
937
- const methodDescriptor_Rags_RagRemoveChunks = new grpc.web.MethodDescriptor(
938
- '/ondewo.nlu.Rags/RagRemoveChunks',
766
+ const methodDescriptor_Rags_RagCreateCrawler = new grpc.web.MethodDescriptor(
767
+ '/ondewo.nlu.Rags/RagCreateCrawler',
939
768
  grpc.web.MethodType.UNARY,
940
- proto.ondewo.nlu.RagRemoveChunksRequest,
941
- proto.ondewo.nlu.RagPartialSuccess,
769
+ proto.ondewo.nlu.RagCreateCrawlerRequest,
770
+ proto.ondewo.nlu.RagCrawler,
942
771
  /**
943
- * @param {!proto.ondewo.nlu.RagRemoveChunksRequest} request
772
+ * @param {!proto.ondewo.nlu.RagCreateCrawlerRequest} request
944
773
  * @return {!Uint8Array}
945
774
  */
946
775
  function(request) {
947
776
  return request.serializeBinary();
948
777
  },
949
- proto.ondewo.nlu.RagPartialSuccess.deserializeBinary
778
+ proto.ondewo.nlu.RagCrawler.deserializeBinary
950
779
  );
951
780
 
952
781
 
953
782
  /**
954
- * @param {!proto.ondewo.nlu.RagRemoveChunksRequest} request The
783
+ * @param {!proto.ondewo.nlu.RagCreateCrawlerRequest} request The
955
784
  * request proto
956
785
  * @param {?Object<string, string>} metadata User defined
957
786
  * call metadata
958
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagPartialSuccess)}
787
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagCrawler)}
959
788
  * callback The callback function(error, response)
960
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagPartialSuccess>|undefined}
789
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagCrawler>|undefined}
961
790
  * The XHR Node Readable Stream
962
791
  */
963
- proto.ondewo.nlu.RagsClient.prototype.ragRemoveChunks =
792
+ proto.ondewo.nlu.RagsClient.prototype.ragCreateCrawler =
964
793
  function(request, metadata, callback) {
965
794
  return this.client_.rpcCall(this.hostname_ +
966
- '/ondewo.nlu.Rags/RagRemoveChunks',
795
+ '/ondewo.nlu.Rags/RagCreateCrawler',
967
796
  request,
968
797
  metadata || {},
969
- methodDescriptor_Rags_RagRemoveChunks,
798
+ methodDescriptor_Rags_RagCreateCrawler,
970
799
  callback);
971
800
  };
972
801
 
973
802
 
974
803
  /**
975
- * @param {!proto.ondewo.nlu.RagRemoveChunksRequest} request The
804
+ * @param {!proto.ondewo.nlu.RagCreateCrawlerRequest} request The
976
805
  * request proto
977
806
  * @param {?Object<string, string>=} metadata User defined
978
807
  * call metadata
979
- * @return {!Promise<!proto.ondewo.nlu.RagPartialSuccess>}
808
+ * @return {!Promise<!proto.ondewo.nlu.RagCrawler>}
980
809
  * Promise that resolves to the response
981
810
  */
982
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragRemoveChunks =
811
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragCreateCrawler =
983
812
  function(request, metadata) {
984
813
  return this.client_.unaryCall(this.hostname_ +
985
- '/ondewo.nlu.Rags/RagRemoveChunks',
814
+ '/ondewo.nlu.Rags/RagCreateCrawler',
986
815
  request,
987
816
  metadata || {},
988
- methodDescriptor_Rags_RagRemoveChunks);
817
+ methodDescriptor_Rags_RagCreateCrawler);
989
818
  };
990
819
 
991
820
 
992
821
  /**
993
822
  * @const
994
823
  * @type {!grpc.web.MethodDescriptor<
995
- * !proto.ondewo.nlu.RagUpdateChunkRequest,
996
- * !proto.google.protobuf.Empty>}
824
+ * !proto.ondewo.nlu.RagGetCrawlerRequest,
825
+ * !proto.ondewo.nlu.RagCrawler>}
997
826
  */
998
- const methodDescriptor_Rags_RagUpdateChunk = new grpc.web.MethodDescriptor(
999
- '/ondewo.nlu.Rags/RagUpdateChunk',
827
+ const methodDescriptor_Rags_RagGetCrawler = new grpc.web.MethodDescriptor(
828
+ '/ondewo.nlu.Rags/RagGetCrawler',
1000
829
  grpc.web.MethodType.UNARY,
1001
- proto.ondewo.nlu.RagUpdateChunkRequest,
1002
- google_protobuf_empty_pb.Empty,
830
+ proto.ondewo.nlu.RagGetCrawlerRequest,
831
+ proto.ondewo.nlu.RagCrawler,
1003
832
  /**
1004
- * @param {!proto.ondewo.nlu.RagUpdateChunkRequest} request
833
+ * @param {!proto.ondewo.nlu.RagGetCrawlerRequest} request
1005
834
  * @return {!Uint8Array}
1006
835
  */
1007
836
  function(request) {
1008
837
  return request.serializeBinary();
1009
838
  },
1010
- google_protobuf_empty_pb.Empty.deserializeBinary
839
+ proto.ondewo.nlu.RagCrawler.deserializeBinary
1011
840
  );
1012
841
 
1013
842
 
1014
843
  /**
1015
- * @param {!proto.ondewo.nlu.RagUpdateChunkRequest} request The
844
+ * @param {!proto.ondewo.nlu.RagGetCrawlerRequest} request The
1016
845
  * request proto
1017
846
  * @param {?Object<string, string>} metadata User defined
1018
847
  * call metadata
1019
- * @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
848
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagCrawler)}
1020
849
  * callback The callback function(error, response)
1021
- * @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
850
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagCrawler>|undefined}
1022
851
  * The XHR Node Readable Stream
1023
852
  */
1024
- proto.ondewo.nlu.RagsClient.prototype.ragUpdateChunk =
853
+ proto.ondewo.nlu.RagsClient.prototype.ragGetCrawler =
1025
854
  function(request, metadata, callback) {
1026
855
  return this.client_.rpcCall(this.hostname_ +
1027
- '/ondewo.nlu.Rags/RagUpdateChunk',
856
+ '/ondewo.nlu.Rags/RagGetCrawler',
1028
857
  request,
1029
858
  metadata || {},
1030
- methodDescriptor_Rags_RagUpdateChunk,
859
+ methodDescriptor_Rags_RagGetCrawler,
1031
860
  callback);
1032
861
  };
1033
862
 
1034
863
 
1035
864
  /**
1036
- * @param {!proto.ondewo.nlu.RagUpdateChunkRequest} request The
865
+ * @param {!proto.ondewo.nlu.RagGetCrawlerRequest} request The
1037
866
  * request proto
1038
867
  * @param {?Object<string, string>=} metadata User defined
1039
868
  * call metadata
1040
- * @return {!Promise<!proto.google.protobuf.Empty>}
869
+ * @return {!Promise<!proto.ondewo.nlu.RagCrawler>}
1041
870
  * Promise that resolves to the response
1042
871
  */
1043
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragUpdateChunk =
872
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragGetCrawler =
1044
873
  function(request, metadata) {
1045
874
  return this.client_.unaryCall(this.hostname_ +
1046
- '/ondewo.nlu.Rags/RagUpdateChunk',
875
+ '/ondewo.nlu.Rags/RagGetCrawler',
1047
876
  request,
1048
877
  metadata || {},
1049
- methodDescriptor_Rags_RagUpdateChunk);
878
+ methodDescriptor_Rags_RagGetCrawler);
1050
879
  };
1051
880
 
1052
881
 
1053
882
  /**
1054
883
  * @const
1055
884
  * @type {!grpc.web.MethodDescriptor<
1056
- * !proto.ondewo.nlu.RagRetrievalRequest,
1057
- * !proto.ondewo.nlu.RagRetrievalResponse>}
885
+ * !proto.ondewo.nlu.RagListCrawlersRequest,
886
+ * !proto.ondewo.nlu.RagListCrawlersResponse>}
1058
887
  */
1059
- const methodDescriptor_Rags_RagRetrieval = new grpc.web.MethodDescriptor(
1060
- '/ondewo.nlu.Rags/RagRetrieval',
888
+ const methodDescriptor_Rags_RagListCrawlers = new grpc.web.MethodDescriptor(
889
+ '/ondewo.nlu.Rags/RagListCrawlers',
1061
890
  grpc.web.MethodType.UNARY,
1062
- proto.ondewo.nlu.RagRetrievalRequest,
1063
- proto.ondewo.nlu.RagRetrievalResponse,
891
+ proto.ondewo.nlu.RagListCrawlersRequest,
892
+ proto.ondewo.nlu.RagListCrawlersResponse,
1064
893
  /**
1065
- * @param {!proto.ondewo.nlu.RagRetrievalRequest} request
894
+ * @param {!proto.ondewo.nlu.RagListCrawlersRequest} request
1066
895
  * @return {!Uint8Array}
1067
896
  */
1068
897
  function(request) {
1069
898
  return request.serializeBinary();
1070
899
  },
1071
- proto.ondewo.nlu.RagRetrievalResponse.deserializeBinary
900
+ proto.ondewo.nlu.RagListCrawlersResponse.deserializeBinary
1072
901
  );
1073
902
 
1074
903
 
1075
904
  /**
1076
- * @param {!proto.ondewo.nlu.RagRetrievalRequest} request The
905
+ * @param {!proto.ondewo.nlu.RagListCrawlersRequest} request The
1077
906
  * request proto
1078
907
  * @param {?Object<string, string>} metadata User defined
1079
908
  * call metadata
1080
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagRetrievalResponse)}
909
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagListCrawlersResponse)}
1081
910
  * callback The callback function(error, response)
1082
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagRetrievalResponse>|undefined}
911
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagListCrawlersResponse>|undefined}
1083
912
  * The XHR Node Readable Stream
1084
913
  */
1085
- proto.ondewo.nlu.RagsClient.prototype.ragRetrieval =
914
+ proto.ondewo.nlu.RagsClient.prototype.ragListCrawlers =
1086
915
  function(request, metadata, callback) {
1087
916
  return this.client_.rpcCall(this.hostname_ +
1088
- '/ondewo.nlu.Rags/RagRetrieval',
917
+ '/ondewo.nlu.Rags/RagListCrawlers',
1089
918
  request,
1090
919
  metadata || {},
1091
- methodDescriptor_Rags_RagRetrieval,
920
+ methodDescriptor_Rags_RagListCrawlers,
1092
921
  callback);
1093
922
  };
1094
923
 
1095
924
 
1096
925
  /**
1097
- * @param {!proto.ondewo.nlu.RagRetrievalRequest} request The
926
+ * @param {!proto.ondewo.nlu.RagListCrawlersRequest} request The
1098
927
  * request proto
1099
928
  * @param {?Object<string, string>=} metadata User defined
1100
929
  * call metadata
1101
- * @return {!Promise<!proto.ondewo.nlu.RagRetrievalResponse>}
930
+ * @return {!Promise<!proto.ondewo.nlu.RagListCrawlersResponse>}
1102
931
  * Promise that resolves to the response
1103
932
  */
1104
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragRetrieval =
933
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragListCrawlers =
1105
934
  function(request, metadata) {
1106
935
  return this.client_.unaryCall(this.hostname_ +
1107
- '/ondewo.nlu.Rags/RagRetrieval',
936
+ '/ondewo.nlu.Rags/RagListCrawlers',
1108
937
  request,
1109
938
  metadata || {},
1110
- methodDescriptor_Rags_RagRetrieval);
939
+ methodDescriptor_Rags_RagListCrawlers);
1111
940
  };
1112
941
 
1113
942
 
1114
943
  /**
1115
944
  * @const
1116
945
  * @type {!grpc.web.MethodDescriptor<
1117
- * !proto.ondewo.nlu.RagCreateChatRequest,
1118
- * !proto.ondewo.nlu.RagChat>}
946
+ * !proto.ondewo.nlu.RagUpdateCrawlerRequest,
947
+ * !proto.ondewo.nlu.RagCrawler>}
1119
948
  */
1120
- const methodDescriptor_Rags_RagCreateChat = new grpc.web.MethodDescriptor(
1121
- '/ondewo.nlu.Rags/RagCreateChat',
949
+ const methodDescriptor_Rags_RagUpdateCrawler = new grpc.web.MethodDescriptor(
950
+ '/ondewo.nlu.Rags/RagUpdateCrawler',
1122
951
  grpc.web.MethodType.UNARY,
1123
- proto.ondewo.nlu.RagCreateChatRequest,
1124
- proto.ondewo.nlu.RagChat,
952
+ proto.ondewo.nlu.RagUpdateCrawlerRequest,
953
+ proto.ondewo.nlu.RagCrawler,
1125
954
  /**
1126
- * @param {!proto.ondewo.nlu.RagCreateChatRequest} request
955
+ * @param {!proto.ondewo.nlu.RagUpdateCrawlerRequest} request
1127
956
  * @return {!Uint8Array}
1128
957
  */
1129
958
  function(request) {
1130
959
  return request.serializeBinary();
1131
960
  },
1132
- proto.ondewo.nlu.RagChat.deserializeBinary
961
+ proto.ondewo.nlu.RagCrawler.deserializeBinary
1133
962
  );
1134
963
 
1135
964
 
1136
965
  /**
1137
- * @param {!proto.ondewo.nlu.RagCreateChatRequest} request The
966
+ * @param {!proto.ondewo.nlu.RagUpdateCrawlerRequest} request The
1138
967
  * request proto
1139
968
  * @param {?Object<string, string>} metadata User defined
1140
969
  * call metadata
1141
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagChat)}
970
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagCrawler)}
1142
971
  * callback The callback function(error, response)
1143
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagChat>|undefined}
972
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagCrawler>|undefined}
1144
973
  * The XHR Node Readable Stream
1145
974
  */
1146
- proto.ondewo.nlu.RagsClient.prototype.ragCreateChat =
975
+ proto.ondewo.nlu.RagsClient.prototype.ragUpdateCrawler =
1147
976
  function(request, metadata, callback) {
1148
977
  return this.client_.rpcCall(this.hostname_ +
1149
- '/ondewo.nlu.Rags/RagCreateChat',
978
+ '/ondewo.nlu.Rags/RagUpdateCrawler',
1150
979
  request,
1151
980
  metadata || {},
1152
- methodDescriptor_Rags_RagCreateChat,
981
+ methodDescriptor_Rags_RagUpdateCrawler,
1153
982
  callback);
1154
983
  };
1155
984
 
1156
985
 
1157
986
  /**
1158
- * @param {!proto.ondewo.nlu.RagCreateChatRequest} request The
987
+ * @param {!proto.ondewo.nlu.RagUpdateCrawlerRequest} request The
1159
988
  * request proto
1160
989
  * @param {?Object<string, string>=} metadata User defined
1161
990
  * call metadata
1162
- * @return {!Promise<!proto.ondewo.nlu.RagChat>}
991
+ * @return {!Promise<!proto.ondewo.nlu.RagCrawler>}
1163
992
  * Promise that resolves to the response
1164
993
  */
1165
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragCreateChat =
994
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragUpdateCrawler =
1166
995
  function(request, metadata) {
1167
996
  return this.client_.unaryCall(this.hostname_ +
1168
- '/ondewo.nlu.Rags/RagCreateChat',
997
+ '/ondewo.nlu.Rags/RagUpdateCrawler',
1169
998
  request,
1170
999
  metadata || {},
1171
- methodDescriptor_Rags_RagCreateChat);
1000
+ methodDescriptor_Rags_RagUpdateCrawler);
1172
1001
  };
1173
1002
 
1174
1003
 
1175
1004
  /**
1176
1005
  * @const
1177
1006
  * @type {!grpc.web.MethodDescriptor<
1178
- * !proto.ondewo.nlu.RagUpdateChatRequest,
1179
- * !proto.google.protobuf.Empty>}
1007
+ * !proto.ondewo.nlu.RagDeleteCrawlerRequest,
1008
+ * !proto.ondewo.nlu.RagDeleteCrawlerResponse>}
1180
1009
  */
1181
- const methodDescriptor_Rags_RagUpdateChat = new grpc.web.MethodDescriptor(
1182
- '/ondewo.nlu.Rags/RagUpdateChat',
1010
+ const methodDescriptor_Rags_RagDeleteCrawler = new grpc.web.MethodDescriptor(
1011
+ '/ondewo.nlu.Rags/RagDeleteCrawler',
1183
1012
  grpc.web.MethodType.UNARY,
1184
- proto.ondewo.nlu.RagUpdateChatRequest,
1185
- google_protobuf_empty_pb.Empty,
1013
+ proto.ondewo.nlu.RagDeleteCrawlerRequest,
1014
+ proto.ondewo.nlu.RagDeleteCrawlerResponse,
1186
1015
  /**
1187
- * @param {!proto.ondewo.nlu.RagUpdateChatRequest} request
1016
+ * @param {!proto.ondewo.nlu.RagDeleteCrawlerRequest} request
1188
1017
  * @return {!Uint8Array}
1189
1018
  */
1190
1019
  function(request) {
1191
1020
  return request.serializeBinary();
1192
1021
  },
1193
- google_protobuf_empty_pb.Empty.deserializeBinary
1022
+ proto.ondewo.nlu.RagDeleteCrawlerResponse.deserializeBinary
1194
1023
  );
1195
1024
 
1196
1025
 
1197
1026
  /**
1198
- * @param {!proto.ondewo.nlu.RagUpdateChatRequest} request The
1027
+ * @param {!proto.ondewo.nlu.RagDeleteCrawlerRequest} request The
1199
1028
  * request proto
1200
1029
  * @param {?Object<string, string>} metadata User defined
1201
1030
  * call metadata
1202
- * @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
1031
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagDeleteCrawlerResponse)}
1203
1032
  * callback The callback function(error, response)
1204
- * @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
1033
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagDeleteCrawlerResponse>|undefined}
1205
1034
  * The XHR Node Readable Stream
1206
1035
  */
1207
- proto.ondewo.nlu.RagsClient.prototype.ragUpdateChat =
1036
+ proto.ondewo.nlu.RagsClient.prototype.ragDeleteCrawler =
1208
1037
  function(request, metadata, callback) {
1209
1038
  return this.client_.rpcCall(this.hostname_ +
1210
- '/ondewo.nlu.Rags/RagUpdateChat',
1039
+ '/ondewo.nlu.Rags/RagDeleteCrawler',
1211
1040
  request,
1212
1041
  metadata || {},
1213
- methodDescriptor_Rags_RagUpdateChat,
1042
+ methodDescriptor_Rags_RagDeleteCrawler,
1214
1043
  callback);
1215
1044
  };
1216
1045
 
1217
1046
 
1218
1047
  /**
1219
- * @param {!proto.ondewo.nlu.RagUpdateChatRequest} request The
1048
+ * @param {!proto.ondewo.nlu.RagDeleteCrawlerRequest} request The
1220
1049
  * request proto
1221
1050
  * @param {?Object<string, string>=} metadata User defined
1222
1051
  * call metadata
1223
- * @return {!Promise<!proto.google.protobuf.Empty>}
1052
+ * @return {!Promise<!proto.ondewo.nlu.RagDeleteCrawlerResponse>}
1224
1053
  * Promise that resolves to the response
1225
1054
  */
1226
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragUpdateChat =
1055
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragDeleteCrawler =
1227
1056
  function(request, metadata) {
1228
1057
  return this.client_.unaryCall(this.hostname_ +
1229
- '/ondewo.nlu.Rags/RagUpdateChat',
1058
+ '/ondewo.nlu.Rags/RagDeleteCrawler',
1230
1059
  request,
1231
1060
  metadata || {},
1232
- methodDescriptor_Rags_RagUpdateChat);
1061
+ methodDescriptor_Rags_RagDeleteCrawler);
1233
1062
  };
1234
1063
 
1235
1064
 
1236
1065
  /**
1237
1066
  * @const
1238
1067
  * @type {!grpc.web.MethodDescriptor<
1239
- * !proto.ondewo.nlu.RagDeleteChatsRequest,
1240
- * !proto.ondewo.nlu.RagPartialSuccess>}
1068
+ * !proto.ondewo.nlu.RagStartCrawlerRequest,
1069
+ * !proto.ondewo.nlu.Operation>}
1241
1070
  */
1242
- const methodDescriptor_Rags_RagDeleteChats = new grpc.web.MethodDescriptor(
1243
- '/ondewo.nlu.Rags/RagDeleteChats',
1071
+ const methodDescriptor_Rags_RagStartCrawler = new grpc.web.MethodDescriptor(
1072
+ '/ondewo.nlu.Rags/RagStartCrawler',
1244
1073
  grpc.web.MethodType.UNARY,
1245
- proto.ondewo.nlu.RagDeleteChatsRequest,
1246
- proto.ondewo.nlu.RagPartialSuccess,
1074
+ proto.ondewo.nlu.RagStartCrawlerRequest,
1075
+ ondewo_nlu_operations_pb.Operation,
1247
1076
  /**
1248
- * @param {!proto.ondewo.nlu.RagDeleteChatsRequest} request
1077
+ * @param {!proto.ondewo.nlu.RagStartCrawlerRequest} request
1249
1078
  * @return {!Uint8Array}
1250
1079
  */
1251
1080
  function(request) {
1252
1081
  return request.serializeBinary();
1253
1082
  },
1254
- proto.ondewo.nlu.RagPartialSuccess.deserializeBinary
1083
+ ondewo_nlu_operations_pb.Operation.deserializeBinary
1255
1084
  );
1256
1085
 
1257
1086
 
1258
1087
  /**
1259
- * @param {!proto.ondewo.nlu.RagDeleteChatsRequest} request The
1088
+ * @param {!proto.ondewo.nlu.RagStartCrawlerRequest} request The
1260
1089
  * request proto
1261
1090
  * @param {?Object<string, string>} metadata User defined
1262
1091
  * call metadata
1263
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagPartialSuccess)}
1092
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.Operation)}
1264
1093
  * callback The callback function(error, response)
1265
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagPartialSuccess>|undefined}
1094
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.Operation>|undefined}
1266
1095
  * The XHR Node Readable Stream
1267
1096
  */
1268
- proto.ondewo.nlu.RagsClient.prototype.ragDeleteChats =
1097
+ proto.ondewo.nlu.RagsClient.prototype.ragStartCrawler =
1269
1098
  function(request, metadata, callback) {
1270
1099
  return this.client_.rpcCall(this.hostname_ +
1271
- '/ondewo.nlu.Rags/RagDeleteChats',
1100
+ '/ondewo.nlu.Rags/RagStartCrawler',
1272
1101
  request,
1273
1102
  metadata || {},
1274
- methodDescriptor_Rags_RagDeleteChats,
1103
+ methodDescriptor_Rags_RagStartCrawler,
1275
1104
  callback);
1276
1105
  };
1277
1106
 
1278
1107
 
1279
1108
  /**
1280
- * @param {!proto.ondewo.nlu.RagDeleteChatsRequest} request The
1109
+ * @param {!proto.ondewo.nlu.RagStartCrawlerRequest} request The
1281
1110
  * request proto
1282
1111
  * @param {?Object<string, string>=} metadata User defined
1283
1112
  * call metadata
1284
- * @return {!Promise<!proto.ondewo.nlu.RagPartialSuccess>}
1113
+ * @return {!Promise<!proto.ondewo.nlu.Operation>}
1285
1114
  * Promise that resolves to the response
1286
1115
  */
1287
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragDeleteChats =
1116
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragStartCrawler =
1288
1117
  function(request, metadata) {
1289
1118
  return this.client_.unaryCall(this.hostname_ +
1290
- '/ondewo.nlu.Rags/RagDeleteChats',
1119
+ '/ondewo.nlu.Rags/RagStartCrawler',
1291
1120
  request,
1292
1121
  metadata || {},
1293
- methodDescriptor_Rags_RagDeleteChats);
1122
+ methodDescriptor_Rags_RagStartCrawler);
1294
1123
  };
1295
1124
 
1296
1125
 
1297
1126
  /**
1298
1127
  * @const
1299
1128
  * @type {!grpc.web.MethodDescriptor<
1300
- * !proto.ondewo.nlu.RagListChatsRequest,
1301
- * !proto.ondewo.nlu.RagChatList>}
1129
+ * !proto.ondewo.nlu.RagStopCrawlerRequest,
1130
+ * !proto.ondewo.nlu.RagStopCrawlerResponse>}
1302
1131
  */
1303
- const methodDescriptor_Rags_RagListChats = new grpc.web.MethodDescriptor(
1304
- '/ondewo.nlu.Rags/RagListChats',
1132
+ const methodDescriptor_Rags_RagStopCrawler = new grpc.web.MethodDescriptor(
1133
+ '/ondewo.nlu.Rags/RagStopCrawler',
1305
1134
  grpc.web.MethodType.UNARY,
1306
- proto.ondewo.nlu.RagListChatsRequest,
1307
- proto.ondewo.nlu.RagChatList,
1135
+ proto.ondewo.nlu.RagStopCrawlerRequest,
1136
+ proto.ondewo.nlu.RagStopCrawlerResponse,
1308
1137
  /**
1309
- * @param {!proto.ondewo.nlu.RagListChatsRequest} request
1138
+ * @param {!proto.ondewo.nlu.RagStopCrawlerRequest} request
1310
1139
  * @return {!Uint8Array}
1311
1140
  */
1312
1141
  function(request) {
1313
1142
  return request.serializeBinary();
1314
1143
  },
1315
- proto.ondewo.nlu.RagChatList.deserializeBinary
1144
+ proto.ondewo.nlu.RagStopCrawlerResponse.deserializeBinary
1316
1145
  );
1317
1146
 
1318
1147
 
1319
1148
  /**
1320
- * @param {!proto.ondewo.nlu.RagListChatsRequest} request The
1149
+ * @param {!proto.ondewo.nlu.RagStopCrawlerRequest} request The
1321
1150
  * request proto
1322
1151
  * @param {?Object<string, string>} metadata User defined
1323
1152
  * call metadata
1324
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagChatList)}
1153
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagStopCrawlerResponse)}
1325
1154
  * callback The callback function(error, response)
1326
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagChatList>|undefined}
1155
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagStopCrawlerResponse>|undefined}
1327
1156
  * The XHR Node Readable Stream
1328
1157
  */
1329
- proto.ondewo.nlu.RagsClient.prototype.ragListChats =
1158
+ proto.ondewo.nlu.RagsClient.prototype.ragStopCrawler =
1330
1159
  function(request, metadata, callback) {
1331
1160
  return this.client_.rpcCall(this.hostname_ +
1332
- '/ondewo.nlu.Rags/RagListChats',
1161
+ '/ondewo.nlu.Rags/RagStopCrawler',
1333
1162
  request,
1334
1163
  metadata || {},
1335
- methodDescriptor_Rags_RagListChats,
1164
+ methodDescriptor_Rags_RagStopCrawler,
1336
1165
  callback);
1337
1166
  };
1338
1167
 
1339
1168
 
1340
1169
  /**
1341
- * @param {!proto.ondewo.nlu.RagListChatsRequest} request The
1170
+ * @param {!proto.ondewo.nlu.RagStopCrawlerRequest} request The
1342
1171
  * request proto
1343
1172
  * @param {?Object<string, string>=} metadata User defined
1344
1173
  * call metadata
1345
- * @return {!Promise<!proto.ondewo.nlu.RagChatList>}
1174
+ * @return {!Promise<!proto.ondewo.nlu.RagStopCrawlerResponse>}
1346
1175
  * Promise that resolves to the response
1347
1176
  */
1348
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragListChats =
1177
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragStopCrawler =
1349
1178
  function(request, metadata) {
1350
1179
  return this.client_.unaryCall(this.hostname_ +
1351
- '/ondewo.nlu.Rags/RagListChats',
1180
+ '/ondewo.nlu.Rags/RagStopCrawler',
1352
1181
  request,
1353
1182
  metadata || {},
1354
- methodDescriptor_Rags_RagListChats);
1183
+ methodDescriptor_Rags_RagStopCrawler);
1355
1184
  };
1356
1185
 
1357
1186
 
1358
1187
  /**
1359
1188
  * @const
1360
1189
  * @type {!grpc.web.MethodDescriptor<
1361
- * !proto.ondewo.nlu.RagCreateChatSessionRequest,
1362
- * !proto.ondewo.nlu.RagChatSession>}
1190
+ * !proto.ondewo.nlu.RagGetCrawlerRunRequest,
1191
+ * !proto.ondewo.nlu.Operation>}
1363
1192
  */
1364
- const methodDescriptor_Rags_RagCreateChatSession = new grpc.web.MethodDescriptor(
1365
- '/ondewo.nlu.Rags/RagCreateChatSession',
1193
+ const methodDescriptor_Rags_RagGetCrawlerRun = new grpc.web.MethodDescriptor(
1194
+ '/ondewo.nlu.Rags/RagGetCrawlerRun',
1366
1195
  grpc.web.MethodType.UNARY,
1367
- proto.ondewo.nlu.RagCreateChatSessionRequest,
1368
- proto.ondewo.nlu.RagChatSession,
1196
+ proto.ondewo.nlu.RagGetCrawlerRunRequest,
1197
+ ondewo_nlu_operations_pb.Operation,
1369
1198
  /**
1370
- * @param {!proto.ondewo.nlu.RagCreateChatSessionRequest} request
1199
+ * @param {!proto.ondewo.nlu.RagGetCrawlerRunRequest} request
1371
1200
  * @return {!Uint8Array}
1372
1201
  */
1373
1202
  function(request) {
1374
1203
  return request.serializeBinary();
1375
1204
  },
1376
- proto.ondewo.nlu.RagChatSession.deserializeBinary
1205
+ ondewo_nlu_operations_pb.Operation.deserializeBinary
1377
1206
  );
1378
1207
 
1379
1208
 
1380
1209
  /**
1381
- * @param {!proto.ondewo.nlu.RagCreateChatSessionRequest} request The
1210
+ * @param {!proto.ondewo.nlu.RagGetCrawlerRunRequest} request The
1382
1211
  * request proto
1383
1212
  * @param {?Object<string, string>} metadata User defined
1384
1213
  * call metadata
1385
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagChatSession)}
1214
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.Operation)}
1386
1215
  * callback The callback function(error, response)
1387
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagChatSession>|undefined}
1216
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.Operation>|undefined}
1388
1217
  * The XHR Node Readable Stream
1389
1218
  */
1390
- proto.ondewo.nlu.RagsClient.prototype.ragCreateChatSession =
1219
+ proto.ondewo.nlu.RagsClient.prototype.ragGetCrawlerRun =
1391
1220
  function(request, metadata, callback) {
1392
1221
  return this.client_.rpcCall(this.hostname_ +
1393
- '/ondewo.nlu.Rags/RagCreateChatSession',
1222
+ '/ondewo.nlu.Rags/RagGetCrawlerRun',
1394
1223
  request,
1395
1224
  metadata || {},
1396
- methodDescriptor_Rags_RagCreateChatSession,
1225
+ methodDescriptor_Rags_RagGetCrawlerRun,
1397
1226
  callback);
1398
1227
  };
1399
1228
 
1400
1229
 
1401
1230
  /**
1402
- * @param {!proto.ondewo.nlu.RagCreateChatSessionRequest} request The
1231
+ * @param {!proto.ondewo.nlu.RagGetCrawlerRunRequest} request The
1403
1232
  * request proto
1404
1233
  * @param {?Object<string, string>=} metadata User defined
1405
1234
  * call metadata
1406
- * @return {!Promise<!proto.ondewo.nlu.RagChatSession>}
1235
+ * @return {!Promise<!proto.ondewo.nlu.Operation>}
1407
1236
  * Promise that resolves to the response
1408
1237
  */
1409
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragCreateChatSession =
1238
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragGetCrawlerRun =
1410
1239
  function(request, metadata) {
1411
1240
  return this.client_.unaryCall(this.hostname_ +
1412
- '/ondewo.nlu.Rags/RagCreateChatSession',
1241
+ '/ondewo.nlu.Rags/RagGetCrawlerRun',
1413
1242
  request,
1414
1243
  metadata || {},
1415
- methodDescriptor_Rags_RagCreateChatSession);
1244
+ methodDescriptor_Rags_RagGetCrawlerRun);
1416
1245
  };
1417
1246
 
1418
1247
 
1419
1248
  /**
1420
1249
  * @const
1421
1250
  * @type {!grpc.web.MethodDescriptor<
1422
- * !proto.ondewo.nlu.RagCreateAgentSessionRequest,
1423
- * !proto.ondewo.nlu.RagAgentSession>}
1251
+ * !proto.ondewo.nlu.RagListCrawlerRunsRequest,
1252
+ * !proto.ondewo.nlu.RagListCrawlerRunsResponse>}
1424
1253
  */
1425
- const methodDescriptor_Rags_RagCreateAgentSession = new grpc.web.MethodDescriptor(
1426
- '/ondewo.nlu.Rags/RagCreateAgentSession',
1254
+ const methodDescriptor_Rags_RagListCrawlerRuns = new grpc.web.MethodDescriptor(
1255
+ '/ondewo.nlu.Rags/RagListCrawlerRuns',
1427
1256
  grpc.web.MethodType.UNARY,
1428
- proto.ondewo.nlu.RagCreateAgentSessionRequest,
1429
- proto.ondewo.nlu.RagAgentSession,
1257
+ proto.ondewo.nlu.RagListCrawlerRunsRequest,
1258
+ proto.ondewo.nlu.RagListCrawlerRunsResponse,
1430
1259
  /**
1431
- * @param {!proto.ondewo.nlu.RagCreateAgentSessionRequest} request
1260
+ * @param {!proto.ondewo.nlu.RagListCrawlerRunsRequest} request
1432
1261
  * @return {!Uint8Array}
1433
1262
  */
1434
1263
  function(request) {
1435
1264
  return request.serializeBinary();
1436
1265
  },
1437
- proto.ondewo.nlu.RagAgentSession.deserializeBinary
1266
+ proto.ondewo.nlu.RagListCrawlerRunsResponse.deserializeBinary
1438
1267
  );
1439
1268
 
1440
1269
 
1441
1270
  /**
1442
- * @param {!proto.ondewo.nlu.RagCreateAgentSessionRequest} request The
1271
+ * @param {!proto.ondewo.nlu.RagListCrawlerRunsRequest} request The
1443
1272
  * request proto
1444
1273
  * @param {?Object<string, string>} metadata User defined
1445
1274
  * call metadata
1446
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagAgentSession)}
1275
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagListCrawlerRunsResponse)}
1447
1276
  * callback The callback function(error, response)
1448
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagAgentSession>|undefined}
1277
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagListCrawlerRunsResponse>|undefined}
1449
1278
  * The XHR Node Readable Stream
1450
1279
  */
1451
- proto.ondewo.nlu.RagsClient.prototype.ragCreateAgentSession =
1280
+ proto.ondewo.nlu.RagsClient.prototype.ragListCrawlerRuns =
1452
1281
  function(request, metadata, callback) {
1453
1282
  return this.client_.rpcCall(this.hostname_ +
1454
- '/ondewo.nlu.Rags/RagCreateAgentSession',
1283
+ '/ondewo.nlu.Rags/RagListCrawlerRuns',
1455
1284
  request,
1456
1285
  metadata || {},
1457
- methodDescriptor_Rags_RagCreateAgentSession,
1286
+ methodDescriptor_Rags_RagListCrawlerRuns,
1458
1287
  callback);
1459
1288
  };
1460
1289
 
1461
1290
 
1462
1291
  /**
1463
- * @param {!proto.ondewo.nlu.RagCreateAgentSessionRequest} request The
1292
+ * @param {!proto.ondewo.nlu.RagListCrawlerRunsRequest} request The
1464
1293
  * request proto
1465
1294
  * @param {?Object<string, string>=} metadata User defined
1466
1295
  * call metadata
1467
- * @return {!Promise<!proto.ondewo.nlu.RagAgentSession>}
1296
+ * @return {!Promise<!proto.ondewo.nlu.RagListCrawlerRunsResponse>}
1468
1297
  * Promise that resolves to the response
1469
1298
  */
1470
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragCreateAgentSession =
1299
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragListCrawlerRuns =
1471
1300
  function(request, metadata) {
1472
1301
  return this.client_.unaryCall(this.hostname_ +
1473
- '/ondewo.nlu.Rags/RagCreateAgentSession',
1302
+ '/ondewo.nlu.Rags/RagListCrawlerRuns',
1474
1303
  request,
1475
1304
  metadata || {},
1476
- methodDescriptor_Rags_RagCreateAgentSession);
1305
+ methodDescriptor_Rags_RagListCrawlerRuns);
1477
1306
  };
1478
1307
 
1479
1308
 
1480
1309
  /**
1481
1310
  * @const
1482
1311
  * @type {!grpc.web.MethodDescriptor<
1483
- * !proto.ondewo.nlu.RagUpdateChatSessionRequest,
1484
- * !proto.google.protobuf.Empty>}
1312
+ * !proto.ondewo.nlu.RagDeleteCrawlerRunsRequest,
1313
+ * !proto.ondewo.nlu.RagDeleteCrawlerRunsResponse>}
1485
1314
  */
1486
- const methodDescriptor_Rags_RagUpdateChatSession = new grpc.web.MethodDescriptor(
1487
- '/ondewo.nlu.Rags/RagUpdateChatSession',
1315
+ const methodDescriptor_Rags_RagDeleteCrawlerRuns = new grpc.web.MethodDescriptor(
1316
+ '/ondewo.nlu.Rags/RagDeleteCrawlerRuns',
1488
1317
  grpc.web.MethodType.UNARY,
1489
- proto.ondewo.nlu.RagUpdateChatSessionRequest,
1490
- google_protobuf_empty_pb.Empty,
1318
+ proto.ondewo.nlu.RagDeleteCrawlerRunsRequest,
1319
+ proto.ondewo.nlu.RagDeleteCrawlerRunsResponse,
1491
1320
  /**
1492
- * @param {!proto.ondewo.nlu.RagUpdateChatSessionRequest} request
1321
+ * @param {!proto.ondewo.nlu.RagDeleteCrawlerRunsRequest} request
1493
1322
  * @return {!Uint8Array}
1494
1323
  */
1495
1324
  function(request) {
1496
1325
  return request.serializeBinary();
1497
1326
  },
1498
- google_protobuf_empty_pb.Empty.deserializeBinary
1327
+ proto.ondewo.nlu.RagDeleteCrawlerRunsResponse.deserializeBinary
1499
1328
  );
1500
1329
 
1501
1330
 
1502
1331
  /**
1503
- * @param {!proto.ondewo.nlu.RagUpdateChatSessionRequest} request The
1332
+ * @param {!proto.ondewo.nlu.RagDeleteCrawlerRunsRequest} request The
1504
1333
  * request proto
1505
1334
  * @param {?Object<string, string>} metadata User defined
1506
1335
  * call metadata
1507
- * @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
1336
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagDeleteCrawlerRunsResponse)}
1508
1337
  * callback The callback function(error, response)
1509
- * @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
1338
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagDeleteCrawlerRunsResponse>|undefined}
1510
1339
  * The XHR Node Readable Stream
1511
1340
  */
1512
- proto.ondewo.nlu.RagsClient.prototype.ragUpdateChatSession =
1341
+ proto.ondewo.nlu.RagsClient.prototype.ragDeleteCrawlerRuns =
1513
1342
  function(request, metadata, callback) {
1514
1343
  return this.client_.rpcCall(this.hostname_ +
1515
- '/ondewo.nlu.Rags/RagUpdateChatSession',
1344
+ '/ondewo.nlu.Rags/RagDeleteCrawlerRuns',
1516
1345
  request,
1517
1346
  metadata || {},
1518
- methodDescriptor_Rags_RagUpdateChatSession,
1347
+ methodDescriptor_Rags_RagDeleteCrawlerRuns,
1519
1348
  callback);
1520
1349
  };
1521
1350
 
1522
1351
 
1523
1352
  /**
1524
- * @param {!proto.ondewo.nlu.RagUpdateChatSessionRequest} request The
1353
+ * @param {!proto.ondewo.nlu.RagDeleteCrawlerRunsRequest} request The
1525
1354
  * request proto
1526
1355
  * @param {?Object<string, string>=} metadata User defined
1527
1356
  * call metadata
1528
- * @return {!Promise<!proto.google.protobuf.Empty>}
1357
+ * @return {!Promise<!proto.ondewo.nlu.RagDeleteCrawlerRunsResponse>}
1529
1358
  * Promise that resolves to the response
1530
1359
  */
1531
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragUpdateChatSession =
1360
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragDeleteCrawlerRuns =
1532
1361
  function(request, metadata) {
1533
1362
  return this.client_.unaryCall(this.hostname_ +
1534
- '/ondewo.nlu.Rags/RagUpdateChatSession',
1363
+ '/ondewo.nlu.Rags/RagDeleteCrawlerRuns',
1535
1364
  request,
1536
1365
  metadata || {},
1537
- methodDescriptor_Rags_RagUpdateChatSession);
1366
+ methodDescriptor_Rags_RagDeleteCrawlerRuns);
1538
1367
  };
1539
1368
 
1540
1369
 
1541
1370
  /**
1542
1371
  * @const
1543
1372
  * @type {!grpc.web.MethodDescriptor<
1544
- * !proto.ondewo.nlu.RagListChatSessionsRequest,
1545
- * !proto.ondewo.nlu.RagChatSessionList>}
1373
+ * !proto.ondewo.nlu.RagGetCrawlerResultRequest,
1374
+ * !proto.ondewo.nlu.RagCrawlerResult>}
1546
1375
  */
1547
- const methodDescriptor_Rags_RagListChatSessions = new grpc.web.MethodDescriptor(
1548
- '/ondewo.nlu.Rags/RagListChatSessions',
1376
+ const methodDescriptor_Rags_RagGetCrawlerResult = new grpc.web.MethodDescriptor(
1377
+ '/ondewo.nlu.Rags/RagGetCrawlerResult',
1549
1378
  grpc.web.MethodType.UNARY,
1550
- proto.ondewo.nlu.RagListChatSessionsRequest,
1551
- proto.ondewo.nlu.RagChatSessionList,
1379
+ proto.ondewo.nlu.RagGetCrawlerResultRequest,
1380
+ proto.ondewo.nlu.RagCrawlerResult,
1552
1381
  /**
1553
- * @param {!proto.ondewo.nlu.RagListChatSessionsRequest} request
1382
+ * @param {!proto.ondewo.nlu.RagGetCrawlerResultRequest} request
1554
1383
  * @return {!Uint8Array}
1555
1384
  */
1556
1385
  function(request) {
1557
1386
  return request.serializeBinary();
1558
1387
  },
1559
- proto.ondewo.nlu.RagChatSessionList.deserializeBinary
1388
+ proto.ondewo.nlu.RagCrawlerResult.deserializeBinary
1560
1389
  );
1561
1390
 
1562
1391
 
1563
1392
  /**
1564
- * @param {!proto.ondewo.nlu.RagListChatSessionsRequest} request The
1393
+ * @param {!proto.ondewo.nlu.RagGetCrawlerResultRequest} request The
1565
1394
  * request proto
1566
1395
  * @param {?Object<string, string>} metadata User defined
1567
1396
  * call metadata
1568
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagChatSessionList)}
1397
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagCrawlerResult)}
1569
1398
  * callback The callback function(error, response)
1570
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagChatSessionList>|undefined}
1399
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagCrawlerResult>|undefined}
1571
1400
  * The XHR Node Readable Stream
1572
1401
  */
1573
- proto.ondewo.nlu.RagsClient.prototype.ragListChatSessions =
1402
+ proto.ondewo.nlu.RagsClient.prototype.ragGetCrawlerResult =
1574
1403
  function(request, metadata, callback) {
1575
1404
  return this.client_.rpcCall(this.hostname_ +
1576
- '/ondewo.nlu.Rags/RagListChatSessions',
1405
+ '/ondewo.nlu.Rags/RagGetCrawlerResult',
1577
1406
  request,
1578
1407
  metadata || {},
1579
- methodDescriptor_Rags_RagListChatSessions,
1408
+ methodDescriptor_Rags_RagGetCrawlerResult,
1580
1409
  callback);
1581
1410
  };
1582
1411
 
1583
1412
 
1584
1413
  /**
1585
- * @param {!proto.ondewo.nlu.RagListChatSessionsRequest} request The
1414
+ * @param {!proto.ondewo.nlu.RagGetCrawlerResultRequest} request The
1586
1415
  * request proto
1587
1416
  * @param {?Object<string, string>=} metadata User defined
1588
1417
  * call metadata
1589
- * @return {!Promise<!proto.ondewo.nlu.RagChatSessionList>}
1418
+ * @return {!Promise<!proto.ondewo.nlu.RagCrawlerResult>}
1590
1419
  * Promise that resolves to the response
1591
1420
  */
1592
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragListChatSessions =
1421
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragGetCrawlerResult =
1593
1422
  function(request, metadata) {
1594
1423
  return this.client_.unaryCall(this.hostname_ +
1595
- '/ondewo.nlu.Rags/RagListChatSessions',
1424
+ '/ondewo.nlu.Rags/RagGetCrawlerResult',
1596
1425
  request,
1597
1426
  metadata || {},
1598
- methodDescriptor_Rags_RagListChatSessions);
1427
+ methodDescriptor_Rags_RagGetCrawlerResult);
1599
1428
  };
1600
1429
 
1601
1430
 
1602
1431
  /**
1603
1432
  * @const
1604
1433
  * @type {!grpc.web.MethodDescriptor<
1605
- * !proto.ondewo.nlu.RagListAgentSessionsRequest,
1606
- * !proto.ondewo.nlu.RagAgentSessionList>}
1434
+ * !proto.ondewo.nlu.RagGetCrawlerResultsRequest,
1435
+ * !proto.ondewo.nlu.RagGetCrawlerResultsResponse>}
1607
1436
  */
1608
- const methodDescriptor_Rags_RagListAgentSessions = new grpc.web.MethodDescriptor(
1609
- '/ondewo.nlu.Rags/RagListAgentSessions',
1437
+ const methodDescriptor_Rags_RagGetCrawlerResults = new grpc.web.MethodDescriptor(
1438
+ '/ondewo.nlu.Rags/RagGetCrawlerResults',
1610
1439
  grpc.web.MethodType.UNARY,
1611
- proto.ondewo.nlu.RagListAgentSessionsRequest,
1612
- proto.ondewo.nlu.RagAgentSessionList,
1440
+ proto.ondewo.nlu.RagGetCrawlerResultsRequest,
1441
+ proto.ondewo.nlu.RagGetCrawlerResultsResponse,
1613
1442
  /**
1614
- * @param {!proto.ondewo.nlu.RagListAgentSessionsRequest} request
1443
+ * @param {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} request
1615
1444
  * @return {!Uint8Array}
1616
1445
  */
1617
1446
  function(request) {
1618
1447
  return request.serializeBinary();
1619
1448
  },
1620
- proto.ondewo.nlu.RagAgentSessionList.deserializeBinary
1449
+ proto.ondewo.nlu.RagGetCrawlerResultsResponse.deserializeBinary
1621
1450
  );
1622
1451
 
1623
1452
 
1624
1453
  /**
1625
- * @param {!proto.ondewo.nlu.RagListAgentSessionsRequest} request The
1454
+ * @param {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} request The
1626
1455
  * request proto
1627
1456
  * @param {?Object<string, string>} metadata User defined
1628
1457
  * call metadata
1629
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagAgentSessionList)}
1458
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagGetCrawlerResultsResponse)}
1630
1459
  * callback The callback function(error, response)
1631
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagAgentSessionList>|undefined}
1460
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagGetCrawlerResultsResponse>|undefined}
1632
1461
  * The XHR Node Readable Stream
1633
1462
  */
1634
- proto.ondewo.nlu.RagsClient.prototype.ragListAgentSessions =
1463
+ proto.ondewo.nlu.RagsClient.prototype.ragGetCrawlerResults =
1635
1464
  function(request, metadata, callback) {
1636
1465
  return this.client_.rpcCall(this.hostname_ +
1637
- '/ondewo.nlu.Rags/RagListAgentSessions',
1466
+ '/ondewo.nlu.Rags/RagGetCrawlerResults',
1638
1467
  request,
1639
1468
  metadata || {},
1640
- methodDescriptor_Rags_RagListAgentSessions,
1469
+ methodDescriptor_Rags_RagGetCrawlerResults,
1641
1470
  callback);
1642
1471
  };
1643
1472
 
1644
1473
 
1645
1474
  /**
1646
- * @param {!proto.ondewo.nlu.RagListAgentSessionsRequest} request The
1475
+ * @param {!proto.ondewo.nlu.RagGetCrawlerResultsRequest} request The
1647
1476
  * request proto
1648
1477
  * @param {?Object<string, string>=} metadata User defined
1649
1478
  * call metadata
1650
- * @return {!Promise<!proto.ondewo.nlu.RagAgentSessionList>}
1479
+ * @return {!Promise<!proto.ondewo.nlu.RagGetCrawlerResultsResponse>}
1651
1480
  * Promise that resolves to the response
1652
1481
  */
1653
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragListAgentSessions =
1482
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragGetCrawlerResults =
1654
1483
  function(request, metadata) {
1655
1484
  return this.client_.unaryCall(this.hostname_ +
1656
- '/ondewo.nlu.Rags/RagListAgentSessions',
1657
- request,
1658
- metadata || {},
1659
- methodDescriptor_Rags_RagListAgentSessions);
1660
- };
1661
-
1662
-
1663
- /**
1664
- * @const
1665
- * @type {!grpc.web.MethodDescriptor<
1666
- * !proto.ondewo.nlu.RagDeleteChatSessionsRequest,
1667
- * !proto.ondewo.nlu.RagPartialSuccess>}
1668
- */
1669
- const methodDescriptor_Rags_RagDeleteChatSessions = new grpc.web.MethodDescriptor(
1670
- '/ondewo.nlu.Rags/RagDeleteChatSessions',
1671
- grpc.web.MethodType.UNARY,
1672
- proto.ondewo.nlu.RagDeleteChatSessionsRequest,
1673
- proto.ondewo.nlu.RagPartialSuccess,
1674
- /**
1675
- * @param {!proto.ondewo.nlu.RagDeleteChatSessionsRequest} request
1676
- * @return {!Uint8Array}
1677
- */
1678
- function(request) {
1679
- return request.serializeBinary();
1680
- },
1681
- proto.ondewo.nlu.RagPartialSuccess.deserializeBinary
1682
- );
1683
-
1684
-
1685
- /**
1686
- * @param {!proto.ondewo.nlu.RagDeleteChatSessionsRequest} request The
1687
- * request proto
1688
- * @param {?Object<string, string>} metadata User defined
1689
- * call metadata
1690
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagPartialSuccess)}
1691
- * callback The callback function(error, response)
1692
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagPartialSuccess>|undefined}
1693
- * The XHR Node Readable Stream
1694
- */
1695
- proto.ondewo.nlu.RagsClient.prototype.ragDeleteChatSessions =
1696
- function(request, metadata, callback) {
1697
- return this.client_.rpcCall(this.hostname_ +
1698
- '/ondewo.nlu.Rags/RagDeleteChatSessions',
1699
- request,
1700
- metadata || {},
1701
- methodDescriptor_Rags_RagDeleteChatSessions,
1702
- callback);
1703
- };
1704
-
1705
-
1706
- /**
1707
- * @param {!proto.ondewo.nlu.RagDeleteChatSessionsRequest} request The
1708
- * request proto
1709
- * @param {?Object<string, string>=} metadata User defined
1710
- * call metadata
1711
- * @return {!Promise<!proto.ondewo.nlu.RagPartialSuccess>}
1712
- * Promise that resolves to the response
1713
- */
1714
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragDeleteChatSessions =
1715
- function(request, metadata) {
1716
- return this.client_.unaryCall(this.hostname_ +
1717
- '/ondewo.nlu.Rags/RagDeleteChatSessions',
1718
- request,
1719
- metadata || {},
1720
- methodDescriptor_Rags_RagDeleteChatSessions);
1721
- };
1722
-
1723
-
1724
- /**
1725
- * @const
1726
- * @type {!grpc.web.MethodDescriptor<
1727
- * !proto.ondewo.nlu.RagDeleteAgentSessionsRequest,
1728
- * !proto.ondewo.nlu.RagPartialSuccess>}
1729
- */
1730
- const methodDescriptor_Rags_RagDeleteAgentSessions = new grpc.web.MethodDescriptor(
1731
- '/ondewo.nlu.Rags/RagDeleteAgentSessions',
1732
- grpc.web.MethodType.UNARY,
1733
- proto.ondewo.nlu.RagDeleteAgentSessionsRequest,
1734
- proto.ondewo.nlu.RagPartialSuccess,
1735
- /**
1736
- * @param {!proto.ondewo.nlu.RagDeleteAgentSessionsRequest} request
1737
- * @return {!Uint8Array}
1738
- */
1739
- function(request) {
1740
- return request.serializeBinary();
1741
- },
1742
- proto.ondewo.nlu.RagPartialSuccess.deserializeBinary
1743
- );
1744
-
1745
-
1746
- /**
1747
- * @param {!proto.ondewo.nlu.RagDeleteAgentSessionsRequest} request The
1748
- * request proto
1749
- * @param {?Object<string, string>} metadata User defined
1750
- * call metadata
1751
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagPartialSuccess)}
1752
- * callback The callback function(error, response)
1753
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagPartialSuccess>|undefined}
1754
- * The XHR Node Readable Stream
1755
- */
1756
- proto.ondewo.nlu.RagsClient.prototype.ragDeleteAgentSessions =
1757
- function(request, metadata, callback) {
1758
- return this.client_.rpcCall(this.hostname_ +
1759
- '/ondewo.nlu.Rags/RagDeleteAgentSessions',
1760
- request,
1761
- metadata || {},
1762
- methodDescriptor_Rags_RagDeleteAgentSessions,
1763
- callback);
1764
- };
1765
-
1766
-
1767
- /**
1768
- * @param {!proto.ondewo.nlu.RagDeleteAgentSessionsRequest} request The
1769
- * request proto
1770
- * @param {?Object<string, string>=} metadata User defined
1771
- * call metadata
1772
- * @return {!Promise<!proto.ondewo.nlu.RagPartialSuccess>}
1773
- * Promise that resolves to the response
1774
- */
1775
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragDeleteAgentSessions =
1776
- function(request, metadata) {
1777
- return this.client_.unaryCall(this.hostname_ +
1778
- '/ondewo.nlu.Rags/RagDeleteAgentSessions',
1779
- request,
1780
- metadata || {},
1781
- methodDescriptor_Rags_RagDeleteAgentSessions);
1782
- };
1783
-
1784
-
1785
- /**
1786
- * @const
1787
- * @type {!grpc.web.MethodDescriptor<
1788
- * !proto.ondewo.nlu.RagChatCompletionRequest,
1789
- * !proto.ondewo.nlu.RagChatCompletionResponse>}
1790
- */
1791
- const methodDescriptor_Rags_RagChatCompletion = new grpc.web.MethodDescriptor(
1792
- '/ondewo.nlu.Rags/RagChatCompletion',
1793
- grpc.web.MethodType.SERVER_STREAMING,
1794
- proto.ondewo.nlu.RagChatCompletionRequest,
1795
- proto.ondewo.nlu.RagChatCompletionResponse,
1796
- /**
1797
- * @param {!proto.ondewo.nlu.RagChatCompletionRequest} request
1798
- * @return {!Uint8Array}
1799
- */
1800
- function(request) {
1801
- return request.serializeBinary();
1802
- },
1803
- proto.ondewo.nlu.RagChatCompletionResponse.deserializeBinary
1804
- );
1805
-
1806
-
1807
- /**
1808
- * @param {!proto.ondewo.nlu.RagChatCompletionRequest} request The request proto
1809
- * @param {?Object<string, string>=} metadata User defined
1810
- * call metadata
1811
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagChatCompletionResponse>}
1812
- * The XHR Node Readable Stream
1813
- */
1814
- proto.ondewo.nlu.RagsClient.prototype.ragChatCompletion =
1815
- function(request, metadata) {
1816
- return this.client_.serverStreaming(this.hostname_ +
1817
- '/ondewo.nlu.Rags/RagChatCompletion',
1818
- request,
1819
- metadata || {},
1820
- methodDescriptor_Rags_RagChatCompletion);
1821
- };
1822
-
1823
-
1824
- /**
1825
- * @param {!proto.ondewo.nlu.RagChatCompletionRequest} request The request proto
1826
- * @param {?Object<string, string>=} metadata User defined
1827
- * call metadata
1828
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagChatCompletionResponse>}
1829
- * The XHR Node Readable Stream
1830
- */
1831
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragChatCompletion =
1832
- function(request, metadata) {
1833
- return this.client_.serverStreaming(this.hostname_ +
1834
- '/ondewo.nlu.Rags/RagChatCompletion',
1835
- request,
1836
- metadata || {},
1837
- methodDescriptor_Rags_RagChatCompletion);
1838
- };
1839
-
1840
-
1841
- /**
1842
- * @const
1843
- * @type {!grpc.web.MethodDescriptor<
1844
- * !proto.ondewo.nlu.RagOpenAiChatCompletionRequest,
1845
- * !proto.ondewo.nlu.RagOpenAiChatCompletionResponse>}
1846
- */
1847
- const methodDescriptor_Rags_RagOpenAiChatCompletion = new grpc.web.MethodDescriptor(
1848
- '/ondewo.nlu.Rags/RagOpenAiChatCompletion',
1849
- grpc.web.MethodType.SERVER_STREAMING,
1850
- proto.ondewo.nlu.RagOpenAiChatCompletionRequest,
1851
- proto.ondewo.nlu.RagOpenAiChatCompletionResponse,
1852
- /**
1853
- * @param {!proto.ondewo.nlu.RagOpenAiChatCompletionRequest} request
1854
- * @return {!Uint8Array}
1855
- */
1856
- function(request) {
1857
- return request.serializeBinary();
1858
- },
1859
- proto.ondewo.nlu.RagOpenAiChatCompletionResponse.deserializeBinary
1860
- );
1861
-
1862
-
1863
- /**
1864
- * @param {!proto.ondewo.nlu.RagOpenAiChatCompletionRequest} request The request proto
1865
- * @param {?Object<string, string>=} metadata User defined
1866
- * call metadata
1867
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagOpenAiChatCompletionResponse>}
1868
- * The XHR Node Readable Stream
1869
- */
1870
- proto.ondewo.nlu.RagsClient.prototype.ragOpenAiChatCompletion =
1871
- function(request, metadata) {
1872
- return this.client_.serverStreaming(this.hostname_ +
1873
- '/ondewo.nlu.Rags/RagOpenAiChatCompletion',
1874
- request,
1875
- metadata || {},
1876
- methodDescriptor_Rags_RagOpenAiChatCompletion);
1877
- };
1878
-
1879
-
1880
- /**
1881
- * @param {!proto.ondewo.nlu.RagOpenAiChatCompletionRequest} request The request proto
1882
- * @param {?Object<string, string>=} metadata User defined
1883
- * call metadata
1884
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagOpenAiChatCompletionResponse>}
1885
- * The XHR Node Readable Stream
1886
- */
1887
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragOpenAiChatCompletion =
1888
- function(request, metadata) {
1889
- return this.client_.serverStreaming(this.hostname_ +
1890
- '/ondewo.nlu.Rags/RagOpenAiChatCompletion',
1891
- request,
1892
- metadata || {},
1893
- methodDescriptor_Rags_RagOpenAiChatCompletion);
1894
- };
1895
-
1896
-
1897
- /**
1898
- * @const
1899
- * @type {!grpc.web.MethodDescriptor<
1900
- * !proto.ondewo.nlu.RagAgentCompletionRequest,
1901
- * !proto.ondewo.nlu.RagAgentCompletionResponse>}
1902
- */
1903
- const methodDescriptor_Rags_RagAgentCompletion = new grpc.web.MethodDescriptor(
1904
- '/ondewo.nlu.Rags/RagAgentCompletion',
1905
- grpc.web.MethodType.SERVER_STREAMING,
1906
- proto.ondewo.nlu.RagAgentCompletionRequest,
1907
- proto.ondewo.nlu.RagAgentCompletionResponse,
1908
- /**
1909
- * @param {!proto.ondewo.nlu.RagAgentCompletionRequest} request
1910
- * @return {!Uint8Array}
1911
- */
1912
- function(request) {
1913
- return request.serializeBinary();
1914
- },
1915
- proto.ondewo.nlu.RagAgentCompletionResponse.deserializeBinary
1916
- );
1917
-
1918
-
1919
- /**
1920
- * @param {!proto.ondewo.nlu.RagAgentCompletionRequest} request The request proto
1921
- * @param {?Object<string, string>=} metadata User defined
1922
- * call metadata
1923
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagAgentCompletionResponse>}
1924
- * The XHR Node Readable Stream
1925
- */
1926
- proto.ondewo.nlu.RagsClient.prototype.ragAgentCompletion =
1927
- function(request, metadata) {
1928
- return this.client_.serverStreaming(this.hostname_ +
1929
- '/ondewo.nlu.Rags/RagAgentCompletion',
1930
- request,
1931
- metadata || {},
1932
- methodDescriptor_Rags_RagAgentCompletion);
1933
- };
1934
-
1935
-
1936
- /**
1937
- * @param {!proto.ondewo.nlu.RagAgentCompletionRequest} request The request proto
1938
- * @param {?Object<string, string>=} metadata User defined
1939
- * call metadata
1940
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagAgentCompletionResponse>}
1941
- * The XHR Node Readable Stream
1942
- */
1943
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragAgentCompletion =
1944
- function(request, metadata) {
1945
- return this.client_.serverStreaming(this.hostname_ +
1946
- '/ondewo.nlu.Rags/RagAgentCompletion',
1947
- request,
1948
- metadata || {},
1949
- methodDescriptor_Rags_RagAgentCompletion);
1950
- };
1951
-
1952
-
1953
- /**
1954
- * @const
1955
- * @type {!grpc.web.MethodDescriptor<
1956
- * !proto.ondewo.nlu.RagOpenAiAgentCompletionRequest,
1957
- * !proto.ondewo.nlu.RagOpenAiChatCompletionResponse>}
1958
- */
1959
- const methodDescriptor_Rags_RagOpenAiAgentCompletion = new grpc.web.MethodDescriptor(
1960
- '/ondewo.nlu.Rags/RagOpenAiAgentCompletion',
1961
- grpc.web.MethodType.SERVER_STREAMING,
1962
- proto.ondewo.nlu.RagOpenAiAgentCompletionRequest,
1963
- proto.ondewo.nlu.RagOpenAiChatCompletionResponse,
1964
- /**
1965
- * @param {!proto.ondewo.nlu.RagOpenAiAgentCompletionRequest} request
1966
- * @return {!Uint8Array}
1967
- */
1968
- function(request) {
1969
- return request.serializeBinary();
1970
- },
1971
- proto.ondewo.nlu.RagOpenAiChatCompletionResponse.deserializeBinary
1972
- );
1973
-
1974
-
1975
- /**
1976
- * @param {!proto.ondewo.nlu.RagOpenAiAgentCompletionRequest} request The request proto
1977
- * @param {?Object<string, string>=} metadata User defined
1978
- * call metadata
1979
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagOpenAiChatCompletionResponse>}
1980
- * The XHR Node Readable Stream
1981
- */
1982
- proto.ondewo.nlu.RagsClient.prototype.ragOpenAiAgentCompletion =
1983
- function(request, metadata) {
1984
- return this.client_.serverStreaming(this.hostname_ +
1985
- '/ondewo.nlu.Rags/RagOpenAiAgentCompletion',
1986
- request,
1987
- metadata || {},
1988
- methodDescriptor_Rags_RagOpenAiAgentCompletion);
1989
- };
1990
-
1991
-
1992
- /**
1993
- * @param {!proto.ondewo.nlu.RagOpenAiAgentCompletionRequest} request The request proto
1994
- * @param {?Object<string, string>=} metadata User defined
1995
- * call metadata
1996
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagOpenAiChatCompletionResponse>}
1997
- * The XHR Node Readable Stream
1998
- */
1999
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragOpenAiAgentCompletion =
2000
- function(request, metadata) {
2001
- return this.client_.serverStreaming(this.hostname_ +
2002
- '/ondewo.nlu.Rags/RagOpenAiAgentCompletion',
2003
- request,
2004
- metadata || {},
2005
- methodDescriptor_Rags_RagOpenAiAgentCompletion);
2006
- };
2007
-
2008
-
2009
- /**
2010
- * @const
2011
- * @type {!grpc.web.MethodDescriptor<
2012
- * !proto.ondewo.nlu.RagCreateAgentRequest,
2013
- * !proto.google.protobuf.Empty>}
2014
- */
2015
- const methodDescriptor_Rags_RagCreateAgent = new grpc.web.MethodDescriptor(
2016
- '/ondewo.nlu.Rags/RagCreateAgent',
2017
- grpc.web.MethodType.UNARY,
2018
- proto.ondewo.nlu.RagCreateAgentRequest,
2019
- google_protobuf_empty_pb.Empty,
2020
- /**
2021
- * @param {!proto.ondewo.nlu.RagCreateAgentRequest} request
2022
- * @return {!Uint8Array}
2023
- */
2024
- function(request) {
2025
- return request.serializeBinary();
2026
- },
2027
- google_protobuf_empty_pb.Empty.deserializeBinary
2028
- );
2029
-
2030
-
2031
- /**
2032
- * @param {!proto.ondewo.nlu.RagCreateAgentRequest} request The
2033
- * request proto
2034
- * @param {?Object<string, string>} metadata User defined
2035
- * call metadata
2036
- * @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
2037
- * callback The callback function(error, response)
2038
- * @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
2039
- * The XHR Node Readable Stream
2040
- */
2041
- proto.ondewo.nlu.RagsClient.prototype.ragCreateAgent =
2042
- function(request, metadata, callback) {
2043
- return this.client_.rpcCall(this.hostname_ +
2044
- '/ondewo.nlu.Rags/RagCreateAgent',
2045
- request,
2046
- metadata || {},
2047
- methodDescriptor_Rags_RagCreateAgent,
2048
- callback);
2049
- };
2050
-
2051
-
2052
- /**
2053
- * @param {!proto.ondewo.nlu.RagCreateAgentRequest} request The
2054
- * request proto
2055
- * @param {?Object<string, string>=} metadata User defined
2056
- * call metadata
2057
- * @return {!Promise<!proto.google.protobuf.Empty>}
2058
- * Promise that resolves to the response
2059
- */
2060
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragCreateAgent =
2061
- function(request, metadata) {
2062
- return this.client_.unaryCall(this.hostname_ +
2063
- '/ondewo.nlu.Rags/RagCreateAgent',
2064
- request,
2065
- metadata || {},
2066
- methodDescriptor_Rags_RagCreateAgent);
2067
- };
2068
-
2069
-
2070
- /**
2071
- * @const
2072
- * @type {!grpc.web.MethodDescriptor<
2073
- * !proto.ondewo.nlu.RagUpdateAgentRequest,
2074
- * !proto.google.protobuf.Empty>}
2075
- */
2076
- const methodDescriptor_Rags_RagUpdateAgent = new grpc.web.MethodDescriptor(
2077
- '/ondewo.nlu.Rags/RagUpdateAgent',
2078
- grpc.web.MethodType.UNARY,
2079
- proto.ondewo.nlu.RagUpdateAgentRequest,
2080
- google_protobuf_empty_pb.Empty,
2081
- /**
2082
- * @param {!proto.ondewo.nlu.RagUpdateAgentRequest} request
2083
- * @return {!Uint8Array}
2084
- */
2085
- function(request) {
2086
- return request.serializeBinary();
2087
- },
2088
- google_protobuf_empty_pb.Empty.deserializeBinary
2089
- );
2090
-
2091
-
2092
- /**
2093
- * @param {!proto.ondewo.nlu.RagUpdateAgentRequest} request The
2094
- * request proto
2095
- * @param {?Object<string, string>} metadata User defined
2096
- * call metadata
2097
- * @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
2098
- * callback The callback function(error, response)
2099
- * @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
2100
- * The XHR Node Readable Stream
2101
- */
2102
- proto.ondewo.nlu.RagsClient.prototype.ragUpdateAgent =
2103
- function(request, metadata, callback) {
2104
- return this.client_.rpcCall(this.hostname_ +
2105
- '/ondewo.nlu.Rags/RagUpdateAgent',
2106
- request,
2107
- metadata || {},
2108
- methodDescriptor_Rags_RagUpdateAgent,
2109
- callback);
2110
- };
2111
-
2112
-
2113
- /**
2114
- * @param {!proto.ondewo.nlu.RagUpdateAgentRequest} request The
2115
- * request proto
2116
- * @param {?Object<string, string>=} metadata User defined
2117
- * call metadata
2118
- * @return {!Promise<!proto.google.protobuf.Empty>}
2119
- * Promise that resolves to the response
2120
- */
2121
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragUpdateAgent =
2122
- function(request, metadata) {
2123
- return this.client_.unaryCall(this.hostname_ +
2124
- '/ondewo.nlu.Rags/RagUpdateAgent',
2125
- request,
2126
- metadata || {},
2127
- methodDescriptor_Rags_RagUpdateAgent);
2128
- };
2129
-
2130
-
2131
- /**
2132
- * @const
2133
- * @type {!grpc.web.MethodDescriptor<
2134
- * !proto.ondewo.nlu.RagDeleteAgentRequest,
2135
- * !proto.google.protobuf.Empty>}
2136
- */
2137
- const methodDescriptor_Rags_RagDeleteAgent = new grpc.web.MethodDescriptor(
2138
- '/ondewo.nlu.Rags/RagDeleteAgent',
2139
- grpc.web.MethodType.UNARY,
2140
- proto.ondewo.nlu.RagDeleteAgentRequest,
2141
- google_protobuf_empty_pb.Empty,
2142
- /**
2143
- * @param {!proto.ondewo.nlu.RagDeleteAgentRequest} request
2144
- * @return {!Uint8Array}
2145
- */
2146
- function(request) {
2147
- return request.serializeBinary();
2148
- },
2149
- google_protobuf_empty_pb.Empty.deserializeBinary
2150
- );
2151
-
2152
-
2153
- /**
2154
- * @param {!proto.ondewo.nlu.RagDeleteAgentRequest} request The
2155
- * request proto
2156
- * @param {?Object<string, string>} metadata User defined
2157
- * call metadata
2158
- * @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
2159
- * callback The callback function(error, response)
2160
- * @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
2161
- * The XHR Node Readable Stream
2162
- */
2163
- proto.ondewo.nlu.RagsClient.prototype.ragDeleteAgent =
2164
- function(request, metadata, callback) {
2165
- return this.client_.rpcCall(this.hostname_ +
2166
- '/ondewo.nlu.Rags/RagDeleteAgent',
2167
- request,
2168
- metadata || {},
2169
- methodDescriptor_Rags_RagDeleteAgent,
2170
- callback);
2171
- };
2172
-
2173
-
2174
- /**
2175
- * @param {!proto.ondewo.nlu.RagDeleteAgentRequest} request The
2176
- * request proto
2177
- * @param {?Object<string, string>=} metadata User defined
2178
- * call metadata
2179
- * @return {!Promise<!proto.google.protobuf.Empty>}
2180
- * Promise that resolves to the response
2181
- */
2182
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragDeleteAgent =
2183
- function(request, metadata) {
2184
- return this.client_.unaryCall(this.hostname_ +
2185
- '/ondewo.nlu.Rags/RagDeleteAgent',
2186
- request,
2187
- metadata || {},
2188
- methodDescriptor_Rags_RagDeleteAgent);
2189
- };
2190
-
2191
-
2192
- /**
2193
- * @const
2194
- * @type {!grpc.web.MethodDescriptor<
2195
- * !proto.ondewo.nlu.RagListAgentsRequest,
2196
- * !proto.ondewo.nlu.RagAgentList>}
2197
- */
2198
- const methodDescriptor_Rags_RagListAgents = new grpc.web.MethodDescriptor(
2199
- '/ondewo.nlu.Rags/RagListAgents',
2200
- grpc.web.MethodType.UNARY,
2201
- proto.ondewo.nlu.RagListAgentsRequest,
2202
- proto.ondewo.nlu.RagAgentList,
2203
- /**
2204
- * @param {!proto.ondewo.nlu.RagListAgentsRequest} request
2205
- * @return {!Uint8Array}
2206
- */
2207
- function(request) {
2208
- return request.serializeBinary();
2209
- },
2210
- proto.ondewo.nlu.RagAgentList.deserializeBinary
2211
- );
2212
-
2213
-
2214
- /**
2215
- * @param {!proto.ondewo.nlu.RagListAgentsRequest} request The
2216
- * request proto
2217
- * @param {?Object<string, string>} metadata User defined
2218
- * call metadata
2219
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagAgentList)}
2220
- * callback The callback function(error, response)
2221
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagAgentList>|undefined}
2222
- * The XHR Node Readable Stream
2223
- */
2224
- proto.ondewo.nlu.RagsClient.prototype.ragListAgents =
2225
- function(request, metadata, callback) {
2226
- return this.client_.rpcCall(this.hostname_ +
2227
- '/ondewo.nlu.Rags/RagListAgents',
2228
- request,
2229
- metadata || {},
2230
- methodDescriptor_Rags_RagListAgents,
2231
- callback);
2232
- };
2233
-
2234
-
2235
- /**
2236
- * @param {!proto.ondewo.nlu.RagListAgentsRequest} request The
2237
- * request proto
2238
- * @param {?Object<string, string>=} metadata User defined
2239
- * call metadata
2240
- * @return {!Promise<!proto.ondewo.nlu.RagAgentList>}
2241
- * Promise that resolves to the response
2242
- */
2243
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragListAgents =
2244
- function(request, metadata) {
2245
- return this.client_.unaryCall(this.hostname_ +
2246
- '/ondewo.nlu.Rags/RagListAgents',
2247
- request,
2248
- metadata || {},
2249
- methodDescriptor_Rags_RagListAgents);
2250
- };
2251
-
2252
-
2253
- /**
2254
- * @const
2255
- * @type {!grpc.web.MethodDescriptor<
2256
- * !proto.ondewo.nlu.RagCreateFileRequest,
2257
- * !proto.ondewo.nlu.RagFile>}
2258
- */
2259
- const methodDescriptor_Rags_RagCreateFile = new grpc.web.MethodDescriptor(
2260
- '/ondewo.nlu.Rags/RagCreateFile',
2261
- grpc.web.MethodType.UNARY,
2262
- proto.ondewo.nlu.RagCreateFileRequest,
2263
- proto.ondewo.nlu.RagFile,
2264
- /**
2265
- * @param {!proto.ondewo.nlu.RagCreateFileRequest} request
2266
- * @return {!Uint8Array}
2267
- */
2268
- function(request) {
2269
- return request.serializeBinary();
2270
- },
2271
- proto.ondewo.nlu.RagFile.deserializeBinary
2272
- );
2273
-
2274
-
2275
- /**
2276
- * @param {!proto.ondewo.nlu.RagCreateFileRequest} request The
2277
- * request proto
2278
- * @param {?Object<string, string>} metadata User defined
2279
- * call metadata
2280
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagFile)}
2281
- * callback The callback function(error, response)
2282
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagFile>|undefined}
2283
- * The XHR Node Readable Stream
2284
- */
2285
- proto.ondewo.nlu.RagsClient.prototype.ragCreateFile =
2286
- function(request, metadata, callback) {
2287
- return this.client_.rpcCall(this.hostname_ +
2288
- '/ondewo.nlu.Rags/RagCreateFile',
2289
- request,
2290
- metadata || {},
2291
- methodDescriptor_Rags_RagCreateFile,
2292
- callback);
2293
- };
2294
-
2295
-
2296
- /**
2297
- * @param {!proto.ondewo.nlu.RagCreateFileRequest} request The
2298
- * request proto
2299
- * @param {?Object<string, string>=} metadata User defined
2300
- * call metadata
2301
- * @return {!Promise<!proto.ondewo.nlu.RagFile>}
2302
- * Promise that resolves to the response
2303
- */
2304
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragCreateFile =
2305
- function(request, metadata) {
2306
- return this.client_.unaryCall(this.hostname_ +
2307
- '/ondewo.nlu.Rags/RagCreateFile',
2308
- request,
2309
- metadata || {},
2310
- methodDescriptor_Rags_RagCreateFile);
2311
- };
2312
-
2313
-
2314
- /**
2315
- * @const
2316
- * @type {!grpc.web.MethodDescriptor<
2317
- * !proto.ondewo.nlu.RagListFilesRequest,
2318
- * !proto.ondewo.nlu.RagListFilesResponse>}
2319
- */
2320
- const methodDescriptor_Rags_RagListFiles = new grpc.web.MethodDescriptor(
2321
- '/ondewo.nlu.Rags/RagListFiles',
2322
- grpc.web.MethodType.UNARY,
2323
- proto.ondewo.nlu.RagListFilesRequest,
2324
- proto.ondewo.nlu.RagListFilesResponse,
2325
- /**
2326
- * @param {!proto.ondewo.nlu.RagListFilesRequest} request
2327
- * @return {!Uint8Array}
2328
- */
2329
- function(request) {
2330
- return request.serializeBinary();
2331
- },
2332
- proto.ondewo.nlu.RagListFilesResponse.deserializeBinary
2333
- );
2334
-
2335
-
2336
- /**
2337
- * @param {!proto.ondewo.nlu.RagListFilesRequest} request The
2338
- * request proto
2339
- * @param {?Object<string, string>} metadata User defined
2340
- * call metadata
2341
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagListFilesResponse)}
2342
- * callback The callback function(error, response)
2343
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagListFilesResponse>|undefined}
2344
- * The XHR Node Readable Stream
2345
- */
2346
- proto.ondewo.nlu.RagsClient.prototype.ragListFiles =
2347
- function(request, metadata, callback) {
2348
- return this.client_.rpcCall(this.hostname_ +
2349
- '/ondewo.nlu.Rags/RagListFiles',
2350
- request,
2351
- metadata || {},
2352
- methodDescriptor_Rags_RagListFiles,
2353
- callback);
2354
- };
2355
-
2356
-
2357
- /**
2358
- * @param {!proto.ondewo.nlu.RagListFilesRequest} request The
2359
- * request proto
2360
- * @param {?Object<string, string>=} metadata User defined
2361
- * call metadata
2362
- * @return {!Promise<!proto.ondewo.nlu.RagListFilesResponse>}
2363
- * Promise that resolves to the response
2364
- */
2365
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragListFiles =
2366
- function(request, metadata) {
2367
- return this.client_.unaryCall(this.hostname_ +
2368
- '/ondewo.nlu.Rags/RagListFiles',
2369
- request,
2370
- metadata || {},
2371
- methodDescriptor_Rags_RagListFiles);
2372
- };
2373
-
2374
-
2375
- /**
2376
- * @const
2377
- * @type {!grpc.web.MethodDescriptor<
2378
- * !proto.ondewo.nlu.RagGetRootFolderRequest,
2379
- * !proto.ondewo.nlu.RagGetRootFolderResponse>}
2380
- */
2381
- const methodDescriptor_Rags_RagGetRootFolder = new grpc.web.MethodDescriptor(
2382
- '/ondewo.nlu.Rags/RagGetRootFolder',
2383
- grpc.web.MethodType.UNARY,
2384
- proto.ondewo.nlu.RagGetRootFolderRequest,
2385
- proto.ondewo.nlu.RagGetRootFolderResponse,
2386
- /**
2387
- * @param {!proto.ondewo.nlu.RagGetRootFolderRequest} request
2388
- * @return {!Uint8Array}
2389
- */
2390
- function(request) {
2391
- return request.serializeBinary();
2392
- },
2393
- proto.ondewo.nlu.RagGetRootFolderResponse.deserializeBinary
2394
- );
2395
-
2396
-
2397
- /**
2398
- * @param {!proto.ondewo.nlu.RagGetRootFolderRequest} request The
2399
- * request proto
2400
- * @param {?Object<string, string>} metadata User defined
2401
- * call metadata
2402
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagGetRootFolderResponse)}
2403
- * callback The callback function(error, response)
2404
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagGetRootFolderResponse>|undefined}
2405
- * The XHR Node Readable Stream
2406
- */
2407
- proto.ondewo.nlu.RagsClient.prototype.ragGetRootFolder =
2408
- function(request, metadata, callback) {
2409
- return this.client_.rpcCall(this.hostname_ +
2410
- '/ondewo.nlu.Rags/RagGetRootFolder',
2411
- request,
2412
- metadata || {},
2413
- methodDescriptor_Rags_RagGetRootFolder,
2414
- callback);
2415
- };
2416
-
2417
-
2418
- /**
2419
- * @param {!proto.ondewo.nlu.RagGetRootFolderRequest} request The
2420
- * request proto
2421
- * @param {?Object<string, string>=} metadata User defined
2422
- * call metadata
2423
- * @return {!Promise<!proto.ondewo.nlu.RagGetRootFolderResponse>}
2424
- * Promise that resolves to the response
2425
- */
2426
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragGetRootFolder =
2427
- function(request, metadata) {
2428
- return this.client_.unaryCall(this.hostname_ +
2429
- '/ondewo.nlu.Rags/RagGetRootFolder',
2430
- request,
2431
- metadata || {},
2432
- methodDescriptor_Rags_RagGetRootFolder);
2433
- };
2434
-
2435
-
2436
- /**
2437
- * @const
2438
- * @type {!grpc.web.MethodDescriptor<
2439
- * !proto.ondewo.nlu.RagGetParentFolderRequest,
2440
- * !proto.ondewo.nlu.RagGetParentFolderResponse>}
2441
- */
2442
- const methodDescriptor_Rags_RagGetParentFolder = new grpc.web.MethodDescriptor(
2443
- '/ondewo.nlu.Rags/RagGetParentFolder',
2444
- grpc.web.MethodType.UNARY,
2445
- proto.ondewo.nlu.RagGetParentFolderRequest,
2446
- proto.ondewo.nlu.RagGetParentFolderResponse,
2447
- /**
2448
- * @param {!proto.ondewo.nlu.RagGetParentFolderRequest} request
2449
- * @return {!Uint8Array}
2450
- */
2451
- function(request) {
2452
- return request.serializeBinary();
2453
- },
2454
- proto.ondewo.nlu.RagGetParentFolderResponse.deserializeBinary
2455
- );
2456
-
2457
-
2458
- /**
2459
- * @param {!proto.ondewo.nlu.RagGetParentFolderRequest} request The
2460
- * request proto
2461
- * @param {?Object<string, string>} metadata User defined
2462
- * call metadata
2463
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagGetParentFolderResponse)}
2464
- * callback The callback function(error, response)
2465
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagGetParentFolderResponse>|undefined}
2466
- * The XHR Node Readable Stream
2467
- */
2468
- proto.ondewo.nlu.RagsClient.prototype.ragGetParentFolder =
2469
- function(request, metadata, callback) {
2470
- return this.client_.rpcCall(this.hostname_ +
2471
- '/ondewo.nlu.Rags/RagGetParentFolder',
2472
- request,
2473
- metadata || {},
2474
- methodDescriptor_Rags_RagGetParentFolder,
2475
- callback);
2476
- };
2477
-
2478
-
2479
- /**
2480
- * @param {!proto.ondewo.nlu.RagGetParentFolderRequest} request The
2481
- * request proto
2482
- * @param {?Object<string, string>=} metadata User defined
2483
- * call metadata
2484
- * @return {!Promise<!proto.ondewo.nlu.RagGetParentFolderResponse>}
2485
- * Promise that resolves to the response
2486
- */
2487
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragGetParentFolder =
2488
- function(request, metadata) {
2489
- return this.client_.unaryCall(this.hostname_ +
2490
- '/ondewo.nlu.Rags/RagGetParentFolder',
2491
- request,
2492
- metadata || {},
2493
- methodDescriptor_Rags_RagGetParentFolder);
2494
- };
2495
-
2496
-
2497
- /**
2498
- * @const
2499
- * @type {!grpc.web.MethodDescriptor<
2500
- * !proto.ondewo.nlu.RagGetAllParentFoldersRequest,
2501
- * !proto.ondewo.nlu.RagGetAllParentFoldersResponse>}
2502
- */
2503
- const methodDescriptor_Rags_RagGetAllParentFolders = new grpc.web.MethodDescriptor(
2504
- '/ondewo.nlu.Rags/RagGetAllParentFolders',
2505
- grpc.web.MethodType.UNARY,
2506
- proto.ondewo.nlu.RagGetAllParentFoldersRequest,
2507
- proto.ondewo.nlu.RagGetAllParentFoldersResponse,
2508
- /**
2509
- * @param {!proto.ondewo.nlu.RagGetAllParentFoldersRequest} request
2510
- * @return {!Uint8Array}
2511
- */
2512
- function(request) {
2513
- return request.serializeBinary();
2514
- },
2515
- proto.ondewo.nlu.RagGetAllParentFoldersResponse.deserializeBinary
2516
- );
2517
-
2518
-
2519
- /**
2520
- * @param {!proto.ondewo.nlu.RagGetAllParentFoldersRequest} request The
2521
- * request proto
2522
- * @param {?Object<string, string>} metadata User defined
2523
- * call metadata
2524
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagGetAllParentFoldersResponse)}
2525
- * callback The callback function(error, response)
2526
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagGetAllParentFoldersResponse>|undefined}
2527
- * The XHR Node Readable Stream
2528
- */
2529
- proto.ondewo.nlu.RagsClient.prototype.ragGetAllParentFolders =
2530
- function(request, metadata, callback) {
2531
- return this.client_.rpcCall(this.hostname_ +
2532
- '/ondewo.nlu.Rags/RagGetAllParentFolders',
2533
- request,
2534
- metadata || {},
2535
- methodDescriptor_Rags_RagGetAllParentFolders,
2536
- callback);
2537
- };
2538
-
2539
-
2540
- /**
2541
- * @param {!proto.ondewo.nlu.RagGetAllParentFoldersRequest} request The
2542
- * request proto
2543
- * @param {?Object<string, string>=} metadata User defined
2544
- * call metadata
2545
- * @return {!Promise<!proto.ondewo.nlu.RagGetAllParentFoldersResponse>}
2546
- * Promise that resolves to the response
2547
- */
2548
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragGetAllParentFolders =
2549
- function(request, metadata) {
2550
- return this.client_.unaryCall(this.hostname_ +
2551
- '/ondewo.nlu.Rags/RagGetAllParentFolders',
2552
- request,
2553
- metadata || {},
2554
- methodDescriptor_Rags_RagGetAllParentFolders);
2555
- };
2556
-
2557
-
2558
- /**
2559
- * @const
2560
- * @type {!grpc.web.MethodDescriptor<
2561
- * !proto.ondewo.nlu.RagDeleteFilesRequest,
2562
- * !proto.google.protobuf.Empty>}
2563
- */
2564
- const methodDescriptor_Rags_RagDeleteFiles = new grpc.web.MethodDescriptor(
2565
- '/ondewo.nlu.Rags/RagDeleteFiles',
2566
- grpc.web.MethodType.UNARY,
2567
- proto.ondewo.nlu.RagDeleteFilesRequest,
2568
- google_protobuf_empty_pb.Empty,
2569
- /**
2570
- * @param {!proto.ondewo.nlu.RagDeleteFilesRequest} request
2571
- * @return {!Uint8Array}
2572
- */
2573
- function(request) {
2574
- return request.serializeBinary();
2575
- },
2576
- google_protobuf_empty_pb.Empty.deserializeBinary
2577
- );
2578
-
2579
-
2580
- /**
2581
- * @param {!proto.ondewo.nlu.RagDeleteFilesRequest} request The
2582
- * request proto
2583
- * @param {?Object<string, string>} metadata User defined
2584
- * call metadata
2585
- * @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
2586
- * callback The callback function(error, response)
2587
- * @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
2588
- * The XHR Node Readable Stream
2589
- */
2590
- proto.ondewo.nlu.RagsClient.prototype.ragDeleteFiles =
2591
- function(request, metadata, callback) {
2592
- return this.client_.rpcCall(this.hostname_ +
2593
- '/ondewo.nlu.Rags/RagDeleteFiles',
2594
- request,
2595
- metadata || {},
2596
- methodDescriptor_Rags_RagDeleteFiles,
2597
- callback);
2598
- };
2599
-
2600
-
2601
- /**
2602
- * @param {!proto.ondewo.nlu.RagDeleteFilesRequest} request The
2603
- * request proto
2604
- * @param {?Object<string, string>=} metadata User defined
2605
- * call metadata
2606
- * @return {!Promise<!proto.google.protobuf.Empty>}
2607
- * Promise that resolves to the response
2608
- */
2609
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragDeleteFiles =
2610
- function(request, metadata) {
2611
- return this.client_.unaryCall(this.hostname_ +
2612
- '/ondewo.nlu.Rags/RagDeleteFiles',
2613
- request,
2614
- metadata || {},
2615
- methodDescriptor_Rags_RagDeleteFiles);
2616
- };
2617
-
2618
-
2619
- /**
2620
- * @const
2621
- * @type {!grpc.web.MethodDescriptor<
2622
- * !proto.ondewo.nlu.RagRenameFileRequest,
2623
- * !proto.google.protobuf.Empty>}
2624
- */
2625
- const methodDescriptor_Rags_RagRenameFile = new grpc.web.MethodDescriptor(
2626
- '/ondewo.nlu.Rags/RagRenameFile',
2627
- grpc.web.MethodType.UNARY,
2628
- proto.ondewo.nlu.RagRenameFileRequest,
2629
- google_protobuf_empty_pb.Empty,
2630
- /**
2631
- * @param {!proto.ondewo.nlu.RagRenameFileRequest} request
2632
- * @return {!Uint8Array}
2633
- */
2634
- function(request) {
2635
- return request.serializeBinary();
2636
- },
2637
- google_protobuf_empty_pb.Empty.deserializeBinary
2638
- );
2639
-
2640
-
2641
- /**
2642
- * @param {!proto.ondewo.nlu.RagRenameFileRequest} request The
2643
- * request proto
2644
- * @param {?Object<string, string>} metadata User defined
2645
- * call metadata
2646
- * @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
2647
- * callback The callback function(error, response)
2648
- * @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
2649
- * The XHR Node Readable Stream
2650
- */
2651
- proto.ondewo.nlu.RagsClient.prototype.ragRenameFile =
2652
- function(request, metadata, callback) {
2653
- return this.client_.rpcCall(this.hostname_ +
2654
- '/ondewo.nlu.Rags/RagRenameFile',
2655
- request,
2656
- metadata || {},
2657
- methodDescriptor_Rags_RagRenameFile,
2658
- callback);
2659
- };
2660
-
2661
-
2662
- /**
2663
- * @param {!proto.ondewo.nlu.RagRenameFileRequest} request The
2664
- * request proto
2665
- * @param {?Object<string, string>=} metadata User defined
2666
- * call metadata
2667
- * @return {!Promise<!proto.google.protobuf.Empty>}
2668
- * Promise that resolves to the response
2669
- */
2670
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragRenameFile =
2671
- function(request, metadata) {
2672
- return this.client_.unaryCall(this.hostname_ +
2673
- '/ondewo.nlu.Rags/RagRenameFile',
2674
- request,
2675
- metadata || {},
2676
- methodDescriptor_Rags_RagRenameFile);
2677
- };
2678
-
2679
-
2680
- /**
2681
- * @const
2682
- * @type {!grpc.web.MethodDescriptor<
2683
- * !proto.ondewo.nlu.RagGetFileRequest,
2684
- * !proto.ondewo.nlu.RagFileChunk>}
2685
- */
2686
- const methodDescriptor_Rags_RagGetFile = new grpc.web.MethodDescriptor(
2687
- '/ondewo.nlu.Rags/RagGetFile',
2688
- grpc.web.MethodType.SERVER_STREAMING,
2689
- proto.ondewo.nlu.RagGetFileRequest,
2690
- proto.ondewo.nlu.RagFileChunk,
2691
- /**
2692
- * @param {!proto.ondewo.nlu.RagGetFileRequest} request
2693
- * @return {!Uint8Array}
2694
- */
2695
- function(request) {
2696
- return request.serializeBinary();
2697
- },
2698
- proto.ondewo.nlu.RagFileChunk.deserializeBinary
2699
- );
2700
-
2701
-
2702
- /**
2703
- * @param {!proto.ondewo.nlu.RagGetFileRequest} request The request proto
2704
- * @param {?Object<string, string>=} metadata User defined
2705
- * call metadata
2706
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagFileChunk>}
2707
- * The XHR Node Readable Stream
2708
- */
2709
- proto.ondewo.nlu.RagsClient.prototype.ragGetFile =
2710
- function(request, metadata) {
2711
- return this.client_.serverStreaming(this.hostname_ +
2712
- '/ondewo.nlu.Rags/RagGetFile',
2713
- request,
2714
- metadata || {},
2715
- methodDescriptor_Rags_RagGetFile);
2716
- };
2717
-
2718
-
2719
- /**
2720
- * @param {!proto.ondewo.nlu.RagGetFileRequest} request The request proto
2721
- * @param {?Object<string, string>=} metadata User defined
2722
- * call metadata
2723
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagFileChunk>}
2724
- * The XHR Node Readable Stream
2725
- */
2726
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragGetFile =
2727
- function(request, metadata) {
2728
- return this.client_.serverStreaming(this.hostname_ +
2729
- '/ondewo.nlu.Rags/RagGetFile',
2730
- request,
2731
- metadata || {},
2732
- methodDescriptor_Rags_RagGetFile);
2733
- };
2734
-
2735
-
2736
- /**
2737
- * @const
2738
- * @type {!grpc.web.MethodDescriptor<
2739
- * !proto.ondewo.nlu.RagMoveFileRequest,
2740
- * !proto.google.protobuf.Empty>}
2741
- */
2742
- const methodDescriptor_Rags_RagMoveFile = new grpc.web.MethodDescriptor(
2743
- '/ondewo.nlu.Rags/RagMoveFile',
2744
- grpc.web.MethodType.UNARY,
2745
- proto.ondewo.nlu.RagMoveFileRequest,
2746
- google_protobuf_empty_pb.Empty,
2747
- /**
2748
- * @param {!proto.ondewo.nlu.RagMoveFileRequest} request
2749
- * @return {!Uint8Array}
2750
- */
2751
- function(request) {
2752
- return request.serializeBinary();
2753
- },
2754
- google_protobuf_empty_pb.Empty.deserializeBinary
2755
- );
2756
-
2757
-
2758
- /**
2759
- * @param {!proto.ondewo.nlu.RagMoveFileRequest} request The
2760
- * request proto
2761
- * @param {?Object<string, string>} metadata User defined
2762
- * call metadata
2763
- * @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
2764
- * callback The callback function(error, response)
2765
- * @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
2766
- * The XHR Node Readable Stream
2767
- */
2768
- proto.ondewo.nlu.RagsClient.prototype.ragMoveFile =
2769
- function(request, metadata, callback) {
2770
- return this.client_.rpcCall(this.hostname_ +
2771
- '/ondewo.nlu.Rags/RagMoveFile',
2772
- request,
2773
- metadata || {},
2774
- methodDescriptor_Rags_RagMoveFile,
2775
- callback);
2776
- };
2777
-
2778
-
2779
- /**
2780
- * @param {!proto.ondewo.nlu.RagMoveFileRequest} request The
2781
- * request proto
2782
- * @param {?Object<string, string>=} metadata User defined
2783
- * call metadata
2784
- * @return {!Promise<!proto.google.protobuf.Empty>}
2785
- * Promise that resolves to the response
2786
- */
2787
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragMoveFile =
2788
- function(request, metadata) {
2789
- return this.client_.unaryCall(this.hostname_ +
2790
- '/ondewo.nlu.Rags/RagMoveFile',
2791
- request,
2792
- metadata || {},
2793
- methodDescriptor_Rags_RagMoveFile);
2794
- };
2795
-
2796
-
2797
- /**
2798
- * @const
2799
- * @type {!grpc.web.MethodDescriptor<
2800
- * !proto.ondewo.nlu.RagFileToDocumentRequest,
2801
- * !proto.ondewo.nlu.RagFileToDocumentList>}
2802
- */
2803
- const methodDescriptor_Rags_RagFileToDocument = new grpc.web.MethodDescriptor(
2804
- '/ondewo.nlu.Rags/RagFileToDocument',
2805
- grpc.web.MethodType.UNARY,
2806
- proto.ondewo.nlu.RagFileToDocumentRequest,
2807
- proto.ondewo.nlu.RagFileToDocumentList,
2808
- /**
2809
- * @param {!proto.ondewo.nlu.RagFileToDocumentRequest} request
2810
- * @return {!Uint8Array}
2811
- */
2812
- function(request) {
2813
- return request.serializeBinary();
2814
- },
2815
- proto.ondewo.nlu.RagFileToDocumentList.deserializeBinary
2816
- );
2817
-
2818
-
2819
- /**
2820
- * @param {!proto.ondewo.nlu.RagFileToDocumentRequest} request The
2821
- * request proto
2822
- * @param {?Object<string, string>} metadata User defined
2823
- * call metadata
2824
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagFileToDocumentList)}
2825
- * callback The callback function(error, response)
2826
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagFileToDocumentList>|undefined}
2827
- * The XHR Node Readable Stream
2828
- */
2829
- proto.ondewo.nlu.RagsClient.prototype.ragFileToDocument =
2830
- function(request, metadata, callback) {
2831
- return this.client_.rpcCall(this.hostname_ +
2832
- '/ondewo.nlu.Rags/RagFileToDocument',
2833
- request,
2834
- metadata || {},
2835
- methodDescriptor_Rags_RagFileToDocument,
2836
- callback);
2837
- };
2838
-
2839
-
2840
- /**
2841
- * @param {!proto.ondewo.nlu.RagFileToDocumentRequest} request The
2842
- * request proto
2843
- * @param {?Object<string, string>=} metadata User defined
2844
- * call metadata
2845
- * @return {!Promise<!proto.ondewo.nlu.RagFileToDocumentList>}
2846
- * Promise that resolves to the response
2847
- */
2848
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragFileToDocument =
2849
- function(request, metadata) {
2850
- return this.client_.unaryCall(this.hostname_ +
2851
- '/ondewo.nlu.Rags/RagFileToDocument',
2852
- request,
2853
- metadata || {},
2854
- methodDescriptor_Rags_RagFileToDocument);
2855
- };
2856
-
2857
-
2858
- /**
2859
- * @const
2860
- * @type {!grpc.web.MethodDescriptor<
2861
- * !proto.ondewo.nlu.RagDifyRetrievalRequest,
2862
- * !proto.ondewo.nlu.RagDifyRecordList>}
2863
- */
2864
- const methodDescriptor_Rags_RagDifyRetrieval = new grpc.web.MethodDescriptor(
2865
- '/ondewo.nlu.Rags/RagDifyRetrieval',
2866
- grpc.web.MethodType.UNARY,
2867
- proto.ondewo.nlu.RagDifyRetrievalRequest,
2868
- proto.ondewo.nlu.RagDifyRecordList,
2869
- /**
2870
- * @param {!proto.ondewo.nlu.RagDifyRetrievalRequest} request
2871
- * @return {!Uint8Array}
2872
- */
2873
- function(request) {
2874
- return request.serializeBinary();
2875
- },
2876
- proto.ondewo.nlu.RagDifyRecordList.deserializeBinary
2877
- );
2878
-
2879
-
2880
- /**
2881
- * @param {!proto.ondewo.nlu.RagDifyRetrievalRequest} request The
2882
- * request proto
2883
- * @param {?Object<string, string>} metadata User defined
2884
- * call metadata
2885
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagDifyRecordList)}
2886
- * callback The callback function(error, response)
2887
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagDifyRecordList>|undefined}
2888
- * The XHR Node Readable Stream
2889
- */
2890
- proto.ondewo.nlu.RagsClient.prototype.ragDifyRetrieval =
2891
- function(request, metadata, callback) {
2892
- return this.client_.rpcCall(this.hostname_ +
2893
- '/ondewo.nlu.Rags/RagDifyRetrieval',
2894
- request,
2895
- metadata || {},
2896
- methodDescriptor_Rags_RagDifyRetrieval,
2897
- callback);
2898
- };
2899
-
2900
-
2901
- /**
2902
- * @param {!proto.ondewo.nlu.RagDifyRetrievalRequest} request The
2903
- * request proto
2904
- * @param {?Object<string, string>=} metadata User defined
2905
- * call metadata
2906
- * @return {!Promise<!proto.ondewo.nlu.RagDifyRecordList>}
2907
- * Promise that resolves to the response
2908
- */
2909
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragDifyRetrieval =
2910
- function(request, metadata) {
2911
- return this.client_.unaryCall(this.hostname_ +
2912
- '/ondewo.nlu.Rags/RagDifyRetrieval',
2913
- request,
2914
- metadata || {},
2915
- methodDescriptor_Rags_RagDifyRetrieval);
2916
- };
2917
-
2918
-
2919
- /**
2920
- * @const
2921
- * @type {!grpc.web.MethodDescriptor<
2922
- * !proto.ondewo.nlu.RagAskRequest,
2923
- * !proto.ondewo.nlu.RagAskResponse>}
2924
- */
2925
- const methodDescriptor_Rags_RagAsk = new grpc.web.MethodDescriptor(
2926
- '/ondewo.nlu.Rags/RagAsk',
2927
- grpc.web.MethodType.SERVER_STREAMING,
2928
- proto.ondewo.nlu.RagAskRequest,
2929
- proto.ondewo.nlu.RagAskResponse,
2930
- /**
2931
- * @param {!proto.ondewo.nlu.RagAskRequest} request
2932
- * @return {!Uint8Array}
2933
- */
2934
- function(request) {
2935
- return request.serializeBinary();
2936
- },
2937
- proto.ondewo.nlu.RagAskResponse.deserializeBinary
2938
- );
2939
-
2940
-
2941
- /**
2942
- * @param {!proto.ondewo.nlu.RagAskRequest} request The request proto
2943
- * @param {?Object<string, string>=} metadata User defined
2944
- * call metadata
2945
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagAskResponse>}
2946
- * The XHR Node Readable Stream
2947
- */
2948
- proto.ondewo.nlu.RagsClient.prototype.ragAsk =
2949
- function(request, metadata) {
2950
- return this.client_.serverStreaming(this.hostname_ +
2951
- '/ondewo.nlu.Rags/RagAsk',
2952
- request,
2953
- metadata || {},
2954
- methodDescriptor_Rags_RagAsk);
2955
- };
2956
-
2957
-
2958
- /**
2959
- * @param {!proto.ondewo.nlu.RagAskRequest} request The request proto
2960
- * @param {?Object<string, string>=} metadata User defined
2961
- * call metadata
2962
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagAskResponse>}
2963
- * The XHR Node Readable Stream
2964
- */
2965
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragAsk =
2966
- function(request, metadata) {
2967
- return this.client_.serverStreaming(this.hostname_ +
2968
- '/ondewo.nlu.Rags/RagAsk',
2969
- request,
2970
- metadata || {},
2971
- methodDescriptor_Rags_RagAsk);
2972
- };
2973
-
2974
-
2975
- /**
2976
- * @const
2977
- * @type {!grpc.web.MethodDescriptor<
2978
- * !proto.ondewo.nlu.RagRelatedQuestionsRequest,
2979
- * !proto.ondewo.nlu.RagRelatedQuestionsResponse>}
2980
- */
2981
- const methodDescriptor_Rags_RagRelatedQuestions = new grpc.web.MethodDescriptor(
2982
- '/ondewo.nlu.Rags/RagRelatedQuestions',
2983
- grpc.web.MethodType.UNARY,
2984
- proto.ondewo.nlu.RagRelatedQuestionsRequest,
2985
- proto.ondewo.nlu.RagRelatedQuestionsResponse,
2986
- /**
2987
- * @param {!proto.ondewo.nlu.RagRelatedQuestionsRequest} request
2988
- * @return {!Uint8Array}
2989
- */
2990
- function(request) {
2991
- return request.serializeBinary();
2992
- },
2993
- proto.ondewo.nlu.RagRelatedQuestionsResponse.deserializeBinary
2994
- );
2995
-
2996
-
2997
- /**
2998
- * @param {!proto.ondewo.nlu.RagRelatedQuestionsRequest} request The
2999
- * request proto
3000
- * @param {?Object<string, string>} metadata User defined
3001
- * call metadata
3002
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagRelatedQuestionsResponse)}
3003
- * callback The callback function(error, response)
3004
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagRelatedQuestionsResponse>|undefined}
3005
- * The XHR Node Readable Stream
3006
- */
3007
- proto.ondewo.nlu.RagsClient.prototype.ragRelatedQuestions =
3008
- function(request, metadata, callback) {
3009
- return this.client_.rpcCall(this.hostname_ +
3010
- '/ondewo.nlu.Rags/RagRelatedQuestions',
3011
- request,
3012
- metadata || {},
3013
- methodDescriptor_Rags_RagRelatedQuestions,
3014
- callback);
3015
- };
3016
-
3017
-
3018
- /**
3019
- * @param {!proto.ondewo.nlu.RagRelatedQuestionsRequest} request The
3020
- * request proto
3021
- * @param {?Object<string, string>=} metadata User defined
3022
- * call metadata
3023
- * @return {!Promise<!proto.ondewo.nlu.RagRelatedQuestionsResponse>}
3024
- * Promise that resolves to the response
3025
- */
3026
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragRelatedQuestions =
3027
- function(request, metadata) {
3028
- return this.client_.unaryCall(this.hostname_ +
3029
- '/ondewo.nlu.Rags/RagRelatedQuestions',
3030
- request,
3031
- metadata || {},
3032
- methodDescriptor_Rags_RagRelatedQuestions);
3033
- };
3034
-
3035
-
3036
- /**
3037
- * @const
3038
- * @type {!grpc.web.MethodDescriptor<
3039
- * !proto.ondewo.nlu.RagChatbotCompletionRequest,
3040
- * !proto.ondewo.nlu.RagChatCompletionResponse>}
3041
- */
3042
- const methodDescriptor_Rags_RagChatbotCompletion = new grpc.web.MethodDescriptor(
3043
- '/ondewo.nlu.Rags/RagChatbotCompletion',
3044
- grpc.web.MethodType.SERVER_STREAMING,
3045
- proto.ondewo.nlu.RagChatbotCompletionRequest,
3046
- proto.ondewo.nlu.RagChatCompletionResponse,
3047
- /**
3048
- * @param {!proto.ondewo.nlu.RagChatbotCompletionRequest} request
3049
- * @return {!Uint8Array}
3050
- */
3051
- function(request) {
3052
- return request.serializeBinary();
3053
- },
3054
- proto.ondewo.nlu.RagChatCompletionResponse.deserializeBinary
3055
- );
3056
-
3057
-
3058
- /**
3059
- * @param {!proto.ondewo.nlu.RagChatbotCompletionRequest} request The request proto
3060
- * @param {?Object<string, string>=} metadata User defined
3061
- * call metadata
3062
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagChatCompletionResponse>}
3063
- * The XHR Node Readable Stream
3064
- */
3065
- proto.ondewo.nlu.RagsClient.prototype.ragChatbotCompletion =
3066
- function(request, metadata) {
3067
- return this.client_.serverStreaming(this.hostname_ +
3068
- '/ondewo.nlu.Rags/RagChatbotCompletion',
3069
- request,
3070
- metadata || {},
3071
- methodDescriptor_Rags_RagChatbotCompletion);
3072
- };
3073
-
3074
-
3075
- /**
3076
- * @param {!proto.ondewo.nlu.RagChatbotCompletionRequest} request The request proto
3077
- * @param {?Object<string, string>=} metadata User defined
3078
- * call metadata
3079
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagChatCompletionResponse>}
3080
- * The XHR Node Readable Stream
3081
- */
3082
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragChatbotCompletion =
3083
- function(request, metadata) {
3084
- return this.client_.serverStreaming(this.hostname_ +
3085
- '/ondewo.nlu.Rags/RagChatbotCompletion',
3086
- request,
3087
- metadata || {},
3088
- methodDescriptor_Rags_RagChatbotCompletion);
3089
- };
3090
-
3091
-
3092
- /**
3093
- * @const
3094
- * @type {!grpc.web.MethodDescriptor<
3095
- * !proto.ondewo.nlu.RagChatbotInfoRequest,
3096
- * !proto.ondewo.nlu.RagChatbotInfoResponse>}
3097
- */
3098
- const methodDescriptor_Rags_RagChatbotInfo = new grpc.web.MethodDescriptor(
3099
- '/ondewo.nlu.Rags/RagChatbotInfo',
3100
- grpc.web.MethodType.UNARY,
3101
- proto.ondewo.nlu.RagChatbotInfoRequest,
3102
- proto.ondewo.nlu.RagChatbotInfoResponse,
3103
- /**
3104
- * @param {!proto.ondewo.nlu.RagChatbotInfoRequest} request
3105
- * @return {!Uint8Array}
3106
- */
3107
- function(request) {
3108
- return request.serializeBinary();
3109
- },
3110
- proto.ondewo.nlu.RagChatbotInfoResponse.deserializeBinary
3111
- );
3112
-
3113
-
3114
- /**
3115
- * @param {!proto.ondewo.nlu.RagChatbotInfoRequest} request The
3116
- * request proto
3117
- * @param {?Object<string, string>} metadata User defined
3118
- * call metadata
3119
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagChatbotInfoResponse)}
3120
- * callback The callback function(error, response)
3121
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagChatbotInfoResponse>|undefined}
3122
- * The XHR Node Readable Stream
3123
- */
3124
- proto.ondewo.nlu.RagsClient.prototype.ragChatbotInfo =
3125
- function(request, metadata, callback) {
3126
- return this.client_.rpcCall(this.hostname_ +
3127
- '/ondewo.nlu.Rags/RagChatbotInfo',
3128
- request,
3129
- metadata || {},
3130
- methodDescriptor_Rags_RagChatbotInfo,
3131
- callback);
3132
- };
3133
-
3134
-
3135
- /**
3136
- * @param {!proto.ondewo.nlu.RagChatbotInfoRequest} request The
3137
- * request proto
3138
- * @param {?Object<string, string>=} metadata User defined
3139
- * call metadata
3140
- * @return {!Promise<!proto.ondewo.nlu.RagChatbotInfoResponse>}
3141
- * Promise that resolves to the response
3142
- */
3143
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragChatbotInfo =
3144
- function(request, metadata) {
3145
- return this.client_.unaryCall(this.hostname_ +
3146
- '/ondewo.nlu.Rags/RagChatbotInfo',
3147
- request,
3148
- metadata || {},
3149
- methodDescriptor_Rags_RagChatbotInfo);
3150
- };
3151
-
3152
-
3153
- /**
3154
- * @const
3155
- * @type {!grpc.web.MethodDescriptor<
3156
- * !proto.ondewo.nlu.RagAgentbotCompletionRequest,
3157
- * !proto.ondewo.nlu.RagAgentCompletionResponse>}
3158
- */
3159
- const methodDescriptor_Rags_RagAgentbotCompletion = new grpc.web.MethodDescriptor(
3160
- '/ondewo.nlu.Rags/RagAgentbotCompletion',
3161
- grpc.web.MethodType.SERVER_STREAMING,
3162
- proto.ondewo.nlu.RagAgentbotCompletionRequest,
3163
- proto.ondewo.nlu.RagAgentCompletionResponse,
3164
- /**
3165
- * @param {!proto.ondewo.nlu.RagAgentbotCompletionRequest} request
3166
- * @return {!Uint8Array}
3167
- */
3168
- function(request) {
3169
- return request.serializeBinary();
3170
- },
3171
- proto.ondewo.nlu.RagAgentCompletionResponse.deserializeBinary
3172
- );
3173
-
3174
-
3175
- /**
3176
- * @param {!proto.ondewo.nlu.RagAgentbotCompletionRequest} request The request proto
3177
- * @param {?Object<string, string>=} metadata User defined
3178
- * call metadata
3179
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagAgentCompletionResponse>}
3180
- * The XHR Node Readable Stream
3181
- */
3182
- proto.ondewo.nlu.RagsClient.prototype.ragAgentbotCompletion =
3183
- function(request, metadata) {
3184
- return this.client_.serverStreaming(this.hostname_ +
3185
- '/ondewo.nlu.Rags/RagAgentbotCompletion',
3186
- request,
3187
- metadata || {},
3188
- methodDescriptor_Rags_RagAgentbotCompletion);
3189
- };
3190
-
3191
-
3192
- /**
3193
- * @param {!proto.ondewo.nlu.RagAgentbotCompletionRequest} request The request proto
3194
- * @param {?Object<string, string>=} metadata User defined
3195
- * call metadata
3196
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagAgentCompletionResponse>}
3197
- * The XHR Node Readable Stream
3198
- */
3199
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragAgentbotCompletion =
3200
- function(request, metadata) {
3201
- return this.client_.serverStreaming(this.hostname_ +
3202
- '/ondewo.nlu.Rags/RagAgentbotCompletion',
3203
- request,
3204
- metadata || {},
3205
- methodDescriptor_Rags_RagAgentbotCompletion);
3206
- };
3207
-
3208
-
3209
- /**
3210
- * @const
3211
- * @type {!grpc.web.MethodDescriptor<
3212
- * !proto.ondewo.nlu.RagAgentbotInputsRequest,
3213
- * !proto.ondewo.nlu.RagAgentbotInputsResponse>}
3214
- */
3215
- const methodDescriptor_Rags_RagAgentbotInputs = new grpc.web.MethodDescriptor(
3216
- '/ondewo.nlu.Rags/RagAgentbotInputs',
3217
- grpc.web.MethodType.UNARY,
3218
- proto.ondewo.nlu.RagAgentbotInputsRequest,
3219
- proto.ondewo.nlu.RagAgentbotInputsResponse,
3220
- /**
3221
- * @param {!proto.ondewo.nlu.RagAgentbotInputsRequest} request
3222
- * @return {!Uint8Array}
3223
- */
3224
- function(request) {
3225
- return request.serializeBinary();
3226
- },
3227
- proto.ondewo.nlu.RagAgentbotInputsResponse.deserializeBinary
3228
- );
3229
-
3230
-
3231
- /**
3232
- * @param {!proto.ondewo.nlu.RagAgentbotInputsRequest} request The
3233
- * request proto
3234
- * @param {?Object<string, string>} metadata User defined
3235
- * call metadata
3236
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagAgentbotInputsResponse)}
3237
- * callback The callback function(error, response)
3238
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagAgentbotInputsResponse>|undefined}
3239
- * The XHR Node Readable Stream
3240
- */
3241
- proto.ondewo.nlu.RagsClient.prototype.ragAgentbotInputs =
3242
- function(request, metadata, callback) {
3243
- return this.client_.rpcCall(this.hostname_ +
3244
- '/ondewo.nlu.Rags/RagAgentbotInputs',
3245
- request,
3246
- metadata || {},
3247
- methodDescriptor_Rags_RagAgentbotInputs,
3248
- callback);
3249
- };
3250
-
3251
-
3252
- /**
3253
- * @param {!proto.ondewo.nlu.RagAgentbotInputsRequest} request The
3254
- * request proto
3255
- * @param {?Object<string, string>=} metadata User defined
3256
- * call metadata
3257
- * @return {!Promise<!proto.ondewo.nlu.RagAgentbotInputsResponse>}
3258
- * Promise that resolves to the response
3259
- */
3260
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragAgentbotInputs =
3261
- function(request, metadata) {
3262
- return this.client_.unaryCall(this.hostname_ +
3263
- '/ondewo.nlu.Rags/RagAgentbotInputs',
3264
- request,
3265
- metadata || {},
3266
- methodDescriptor_Rags_RagAgentbotInputs);
3267
- };
3268
-
3269
-
3270
- /**
3271
- * @const
3272
- * @type {!grpc.web.MethodDescriptor<
3273
- * !proto.ondewo.nlu.RagSearchbotAskRequest,
3274
- * !proto.ondewo.nlu.RagAskResponse>}
3275
- */
3276
- const methodDescriptor_Rags_RagSearchbotAsk = new grpc.web.MethodDescriptor(
3277
- '/ondewo.nlu.Rags/RagSearchbotAsk',
3278
- grpc.web.MethodType.SERVER_STREAMING,
3279
- proto.ondewo.nlu.RagSearchbotAskRequest,
3280
- proto.ondewo.nlu.RagAskResponse,
3281
- /**
3282
- * @param {!proto.ondewo.nlu.RagSearchbotAskRequest} request
3283
- * @return {!Uint8Array}
3284
- */
3285
- function(request) {
3286
- return request.serializeBinary();
3287
- },
3288
- proto.ondewo.nlu.RagAskResponse.deserializeBinary
3289
- );
3290
-
3291
-
3292
- /**
3293
- * @param {!proto.ondewo.nlu.RagSearchbotAskRequest} request The request proto
3294
- * @param {?Object<string, string>=} metadata User defined
3295
- * call metadata
3296
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagAskResponse>}
3297
- * The XHR Node Readable Stream
3298
- */
3299
- proto.ondewo.nlu.RagsClient.prototype.ragSearchbotAsk =
3300
- function(request, metadata) {
3301
- return this.client_.serverStreaming(this.hostname_ +
3302
- '/ondewo.nlu.Rags/RagSearchbotAsk',
3303
- request,
3304
- metadata || {},
3305
- methodDescriptor_Rags_RagSearchbotAsk);
3306
- };
3307
-
3308
-
3309
- /**
3310
- * @param {!proto.ondewo.nlu.RagSearchbotAskRequest} request The request proto
3311
- * @param {?Object<string, string>=} metadata User defined
3312
- * call metadata
3313
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagAskResponse>}
3314
- * The XHR Node Readable Stream
3315
- */
3316
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragSearchbotAsk =
3317
- function(request, metadata) {
3318
- return this.client_.serverStreaming(this.hostname_ +
3319
- '/ondewo.nlu.Rags/RagSearchbotAsk',
1485
+ '/ondewo.nlu.Rags/RagGetCrawlerResults',
3320
1486
  request,
3321
1487
  metadata || {},
3322
- methodDescriptor_Rags_RagSearchbotAsk);
1488
+ methodDescriptor_Rags_RagGetCrawlerResults);
3323
1489
  };
3324
1490
 
3325
1491
 
3326
1492
  /**
3327
1493
  * @const
3328
1494
  * @type {!grpc.web.MethodDescriptor<
3329
- * !proto.ondewo.nlu.RagSearchbotRetrievalRequest,
3330
- * !proto.ondewo.nlu.RagSearchbotRetrievalResponse>}
1495
+ * !proto.ondewo.nlu.RagAddCrawlerResultsToDatasetsRequest,
1496
+ * !proto.ondewo.nlu.Operation>}
3331
1497
  */
3332
- const methodDescriptor_Rags_RagSearchbotRetrieval = new grpc.web.MethodDescriptor(
3333
- '/ondewo.nlu.Rags/RagSearchbotRetrieval',
1498
+ const methodDescriptor_Rags_RagAddCrawlerResultsToDatasets = new grpc.web.MethodDescriptor(
1499
+ '/ondewo.nlu.Rags/RagAddCrawlerResultsToDatasets',
3334
1500
  grpc.web.MethodType.UNARY,
3335
- proto.ondewo.nlu.RagSearchbotRetrievalRequest,
3336
- proto.ondewo.nlu.RagSearchbotRetrievalResponse,
1501
+ proto.ondewo.nlu.RagAddCrawlerResultsToDatasetsRequest,
1502
+ ondewo_nlu_operations_pb.Operation,
3337
1503
  /**
3338
- * @param {!proto.ondewo.nlu.RagSearchbotRetrievalRequest} request
1504
+ * @param {!proto.ondewo.nlu.RagAddCrawlerResultsToDatasetsRequest} request
3339
1505
  * @return {!Uint8Array}
3340
1506
  */
3341
1507
  function(request) {
3342
1508
  return request.serializeBinary();
3343
1509
  },
3344
- proto.ondewo.nlu.RagSearchbotRetrievalResponse.deserializeBinary
1510
+ ondewo_nlu_operations_pb.Operation.deserializeBinary
3345
1511
  );
3346
1512
 
3347
1513
 
3348
1514
  /**
3349
- * @param {!proto.ondewo.nlu.RagSearchbotRetrievalRequest} request The
1515
+ * @param {!proto.ondewo.nlu.RagAddCrawlerResultsToDatasetsRequest} request The
3350
1516
  * request proto
3351
1517
  * @param {?Object<string, string>} metadata User defined
3352
1518
  * call metadata
3353
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagSearchbotRetrievalResponse)}
1519
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.Operation)}
3354
1520
  * callback The callback function(error, response)
3355
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagSearchbotRetrievalResponse>|undefined}
1521
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.Operation>|undefined}
3356
1522
  * The XHR Node Readable Stream
3357
1523
  */
3358
- proto.ondewo.nlu.RagsClient.prototype.ragSearchbotRetrieval =
1524
+ proto.ondewo.nlu.RagsClient.prototype.ragAddCrawlerResultsToDatasets =
3359
1525
  function(request, metadata, callback) {
3360
1526
  return this.client_.rpcCall(this.hostname_ +
3361
- '/ondewo.nlu.Rags/RagSearchbotRetrieval',
1527
+ '/ondewo.nlu.Rags/RagAddCrawlerResultsToDatasets',
3362
1528
  request,
3363
1529
  metadata || {},
3364
- methodDescriptor_Rags_RagSearchbotRetrieval,
1530
+ methodDescriptor_Rags_RagAddCrawlerResultsToDatasets,
3365
1531
  callback);
3366
1532
  };
3367
1533
 
3368
1534
 
3369
1535
  /**
3370
- * @param {!proto.ondewo.nlu.RagSearchbotRetrievalRequest} request The
1536
+ * @param {!proto.ondewo.nlu.RagAddCrawlerResultsToDatasetsRequest} request The
3371
1537
  * request proto
3372
1538
  * @param {?Object<string, string>=} metadata User defined
3373
1539
  * call metadata
3374
- * @return {!Promise<!proto.ondewo.nlu.RagSearchbotRetrievalResponse>}
1540
+ * @return {!Promise<!proto.ondewo.nlu.Operation>}
3375
1541
  * Promise that resolves to the response
3376
1542
  */
3377
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragSearchbotRetrieval =
1543
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragAddCrawlerResultsToDatasets =
3378
1544
  function(request, metadata) {
3379
1545
  return this.client_.unaryCall(this.hostname_ +
3380
- '/ondewo.nlu.Rags/RagSearchbotRetrieval',
1546
+ '/ondewo.nlu.Rags/RagAddCrawlerResultsToDatasets',
3381
1547
  request,
3382
1548
  metadata || {},
3383
- methodDescriptor_Rags_RagSearchbotRetrieval);
1549
+ methodDescriptor_Rags_RagAddCrawlerResultsToDatasets);
3384
1550
  };
3385
1551
 
3386
1552
 
3387
1553
  /**
3388
1554
  * @const
3389
1555
  * @type {!grpc.web.MethodDescriptor<
3390
- * !proto.ondewo.nlu.RagSearchbotRelatedQuestionsRequest,
3391
- * !proto.ondewo.nlu.RagRelatedQuestionsResponse>}
1556
+ * !proto.ondewo.nlu.RagRemoveCrawlerResultsFromDatasetsRequest,
1557
+ * !proto.ondewo.nlu.Operation>}
3392
1558
  */
3393
- const methodDescriptor_Rags_RagSearchbotRelatedQuestions = new grpc.web.MethodDescriptor(
3394
- '/ondewo.nlu.Rags/RagSearchbotRelatedQuestions',
1559
+ const methodDescriptor_Rags_RagRemoveCrawlerResultsFromDatasets = new grpc.web.MethodDescriptor(
1560
+ '/ondewo.nlu.Rags/RagRemoveCrawlerResultsFromDatasets',
3395
1561
  grpc.web.MethodType.UNARY,
3396
- proto.ondewo.nlu.RagSearchbotRelatedQuestionsRequest,
3397
- proto.ondewo.nlu.RagRelatedQuestionsResponse,
1562
+ proto.ondewo.nlu.RagRemoveCrawlerResultsFromDatasetsRequest,
1563
+ ondewo_nlu_operations_pb.Operation,
3398
1564
  /**
3399
- * @param {!proto.ondewo.nlu.RagSearchbotRelatedQuestionsRequest} request
1565
+ * @param {!proto.ondewo.nlu.RagRemoveCrawlerResultsFromDatasetsRequest} request
3400
1566
  * @return {!Uint8Array}
3401
1567
  */
3402
1568
  function(request) {
3403
1569
  return request.serializeBinary();
3404
1570
  },
3405
- proto.ondewo.nlu.RagRelatedQuestionsResponse.deserializeBinary
1571
+ ondewo_nlu_operations_pb.Operation.deserializeBinary
3406
1572
  );
3407
1573
 
3408
1574
 
3409
1575
  /**
3410
- * @param {!proto.ondewo.nlu.RagSearchbotRelatedQuestionsRequest} request The
1576
+ * @param {!proto.ondewo.nlu.RagRemoveCrawlerResultsFromDatasetsRequest} request The
3411
1577
  * request proto
3412
1578
  * @param {?Object<string, string>} metadata User defined
3413
1579
  * call metadata
3414
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagRelatedQuestionsResponse)}
1580
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.Operation)}
3415
1581
  * callback The callback function(error, response)
3416
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagRelatedQuestionsResponse>|undefined}
1582
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.Operation>|undefined}
3417
1583
  * The XHR Node Readable Stream
3418
1584
  */
3419
- proto.ondewo.nlu.RagsClient.prototype.ragSearchbotRelatedQuestions =
1585
+ proto.ondewo.nlu.RagsClient.prototype.ragRemoveCrawlerResultsFromDatasets =
3420
1586
  function(request, metadata, callback) {
3421
1587
  return this.client_.rpcCall(this.hostname_ +
3422
- '/ondewo.nlu.Rags/RagSearchbotRelatedQuestions',
1588
+ '/ondewo.nlu.Rags/RagRemoveCrawlerResultsFromDatasets',
3423
1589
  request,
3424
1590
  metadata || {},
3425
- methodDescriptor_Rags_RagSearchbotRelatedQuestions,
1591
+ methodDescriptor_Rags_RagRemoveCrawlerResultsFromDatasets,
3426
1592
  callback);
3427
1593
  };
3428
1594
 
3429
1595
 
3430
1596
  /**
3431
- * @param {!proto.ondewo.nlu.RagSearchbotRelatedQuestionsRequest} request The
1597
+ * @param {!proto.ondewo.nlu.RagRemoveCrawlerResultsFromDatasetsRequest} request The
3432
1598
  * request proto
3433
1599
  * @param {?Object<string, string>=} metadata User defined
3434
1600
  * call metadata
3435
- * @return {!Promise<!proto.ondewo.nlu.RagRelatedQuestionsResponse>}
1601
+ * @return {!Promise<!proto.ondewo.nlu.Operation>}
3436
1602
  * Promise that resolves to the response
3437
1603
  */
3438
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragSearchbotRelatedQuestions =
1604
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragRemoveCrawlerResultsFromDatasets =
3439
1605
  function(request, metadata) {
3440
1606
  return this.client_.unaryCall(this.hostname_ +
3441
- '/ondewo.nlu.Rags/RagSearchbotRelatedQuestions',
1607
+ '/ondewo.nlu.Rags/RagRemoveCrawlerResultsFromDatasets',
3442
1608
  request,
3443
1609
  metadata || {},
3444
- methodDescriptor_Rags_RagSearchbotRelatedQuestions);
1610
+ methodDescriptor_Rags_RagRemoveCrawlerResultsFromDatasets);
3445
1611
  };
3446
1612
 
3447
1613
 
3448
1614
  /**
3449
1615
  * @const
3450
1616
  * @type {!grpc.web.MethodDescriptor<
3451
- * !proto.ondewo.nlu.RagSearchbotDetailRequest,
3452
- * !proto.ondewo.nlu.RagSearchbotDetailResponse>}
1617
+ * !proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest,
1618
+ * !proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsResponse>}
3453
1619
  */
3454
- const methodDescriptor_Rags_RagSearchbotDetail = new grpc.web.MethodDescriptor(
3455
- '/ondewo.nlu.Rags/RagSearchbotDetail',
1620
+ const methodDescriptor_Rags_RagGetCrawlerAttachedDatasets = new grpc.web.MethodDescriptor(
1621
+ '/ondewo.nlu.Rags/RagGetCrawlerAttachedDatasets',
3456
1622
  grpc.web.MethodType.UNARY,
3457
- proto.ondewo.nlu.RagSearchbotDetailRequest,
3458
- proto.ondewo.nlu.RagSearchbotDetailResponse,
1623
+ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest,
1624
+ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsResponse,
3459
1625
  /**
3460
- * @param {!proto.ondewo.nlu.RagSearchbotDetailRequest} request
1626
+ * @param {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} request
3461
1627
  * @return {!Uint8Array}
3462
1628
  */
3463
1629
  function(request) {
3464
1630
  return request.serializeBinary();
3465
1631
  },
3466
- proto.ondewo.nlu.RagSearchbotDetailResponse.deserializeBinary
1632
+ proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsResponse.deserializeBinary
3467
1633
  );
3468
1634
 
3469
1635
 
3470
1636
  /**
3471
- * @param {!proto.ondewo.nlu.RagSearchbotDetailRequest} request The
1637
+ * @param {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} request The
3472
1638
  * request proto
3473
1639
  * @param {?Object<string, string>} metadata User defined
3474
1640
  * call metadata
3475
- * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagSearchbotDetailResponse)}
1641
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsResponse)}
3476
1642
  * callback The callback function(error, response)
3477
- * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagSearchbotDetailResponse>|undefined}
1643
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsResponse>|undefined}
3478
1644
  * The XHR Node Readable Stream
3479
1645
  */
3480
- proto.ondewo.nlu.RagsClient.prototype.ragSearchbotDetail =
1646
+ proto.ondewo.nlu.RagsClient.prototype.ragGetCrawlerAttachedDatasets =
3481
1647
  function(request, metadata, callback) {
3482
1648
  return this.client_.rpcCall(this.hostname_ +
3483
- '/ondewo.nlu.Rags/RagSearchbotDetail',
1649
+ '/ondewo.nlu.Rags/RagGetCrawlerAttachedDatasets',
3484
1650
  request,
3485
1651
  metadata || {},
3486
- methodDescriptor_Rags_RagSearchbotDetail,
1652
+ methodDescriptor_Rags_RagGetCrawlerAttachedDatasets,
3487
1653
  callback);
3488
1654
  };
3489
1655
 
3490
1656
 
3491
1657
  /**
3492
- * @param {!proto.ondewo.nlu.RagSearchbotDetailRequest} request The
1658
+ * @param {!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsRequest} request The
3493
1659
  * request proto
3494
1660
  * @param {?Object<string, string>=} metadata User defined
3495
1661
  * call metadata
3496
- * @return {!Promise<!proto.ondewo.nlu.RagSearchbotDetailResponse>}
1662
+ * @return {!Promise<!proto.ondewo.nlu.RagGetCrawlerAttachedDatasetsResponse>}
3497
1663
  * Promise that resolves to the response
3498
1664
  */
3499
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragSearchbotDetail =
1665
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragGetCrawlerAttachedDatasets =
3500
1666
  function(request, metadata) {
3501
1667
  return this.client_.unaryCall(this.hostname_ +
3502
- '/ondewo.nlu.Rags/RagSearchbotDetail',
1668
+ '/ondewo.nlu.Rags/RagGetCrawlerAttachedDatasets',
3503
1669
  request,
3504
1670
  metadata || {},
3505
- methodDescriptor_Rags_RagSearchbotDetail);
1671
+ methodDescriptor_Rags_RagGetCrawlerAttachedDatasets);
3506
1672
  };
3507
1673
 
3508
1674
 
3509
1675
  /**
3510
1676
  * @const
3511
1677
  * @type {!grpc.web.MethodDescriptor<
3512
- * !proto.ondewo.nlu.RagSearchbotMindmapRequest,
3513
- * !proto.google.protobuf.Struct>}
1678
+ * !proto.ondewo.nlu.RagDeleteCrawlersRequest,
1679
+ * !proto.ondewo.nlu.RagDeleteCrawlersResponse>}
3514
1680
  */
3515
- const methodDescriptor_Rags_RagSearchbotMindmap = new grpc.web.MethodDescriptor(
3516
- '/ondewo.nlu.Rags/RagSearchbotMindmap',
1681
+ const methodDescriptor_Rags_RagDeleteCrawlers = new grpc.web.MethodDescriptor(
1682
+ '/ondewo.nlu.Rags/RagDeleteCrawlers',
3517
1683
  grpc.web.MethodType.UNARY,
3518
- proto.ondewo.nlu.RagSearchbotMindmapRequest,
3519
- google_protobuf_struct_pb.Struct,
1684
+ proto.ondewo.nlu.RagDeleteCrawlersRequest,
1685
+ proto.ondewo.nlu.RagDeleteCrawlersResponse,
3520
1686
  /**
3521
- * @param {!proto.ondewo.nlu.RagSearchbotMindmapRequest} request
1687
+ * @param {!proto.ondewo.nlu.RagDeleteCrawlersRequest} request
3522
1688
  * @return {!Uint8Array}
3523
1689
  */
3524
1690
  function(request) {
3525
1691
  return request.serializeBinary();
3526
1692
  },
3527
- google_protobuf_struct_pb.Struct.deserializeBinary
1693
+ proto.ondewo.nlu.RagDeleteCrawlersResponse.deserializeBinary
3528
1694
  );
3529
1695
 
3530
1696
 
3531
1697
  /**
3532
- * @param {!proto.ondewo.nlu.RagSearchbotMindmapRequest} request The
1698
+ * @param {!proto.ondewo.nlu.RagDeleteCrawlersRequest} request The
3533
1699
  * request proto
3534
1700
  * @param {?Object<string, string>} metadata User defined
3535
1701
  * call metadata
3536
- * @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Struct)}
1702
+ * @param {function(?grpc.web.RpcError, ?proto.ondewo.nlu.RagDeleteCrawlersResponse)}
3537
1703
  * callback The callback function(error, response)
3538
- * @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Struct>|undefined}
1704
+ * @return {!grpc.web.ClientReadableStream<!proto.ondewo.nlu.RagDeleteCrawlersResponse>|undefined}
3539
1705
  * The XHR Node Readable Stream
3540
1706
  */
3541
- proto.ondewo.nlu.RagsClient.prototype.ragSearchbotMindmap =
1707
+ proto.ondewo.nlu.RagsClient.prototype.ragDeleteCrawlers =
3542
1708
  function(request, metadata, callback) {
3543
1709
  return this.client_.rpcCall(this.hostname_ +
3544
- '/ondewo.nlu.Rags/RagSearchbotMindmap',
1710
+ '/ondewo.nlu.Rags/RagDeleteCrawlers',
3545
1711
  request,
3546
1712
  metadata || {},
3547
- methodDescriptor_Rags_RagSearchbotMindmap,
1713
+ methodDescriptor_Rags_RagDeleteCrawlers,
3548
1714
  callback);
3549
1715
  };
3550
1716
 
3551
1717
 
3552
1718
  /**
3553
- * @param {!proto.ondewo.nlu.RagSearchbotMindmapRequest} request The
1719
+ * @param {!proto.ondewo.nlu.RagDeleteCrawlersRequest} request The
3554
1720
  * request proto
3555
1721
  * @param {?Object<string, string>=} metadata User defined
3556
1722
  * call metadata
3557
- * @return {!Promise<!proto.google.protobuf.Struct>}
1723
+ * @return {!Promise<!proto.ondewo.nlu.RagDeleteCrawlersResponse>}
3558
1724
  * Promise that resolves to the response
3559
1725
  */
3560
- proto.ondewo.nlu.RagsPromiseClient.prototype.ragSearchbotMindmap =
1726
+ proto.ondewo.nlu.RagsPromiseClient.prototype.ragDeleteCrawlers =
3561
1727
  function(request, metadata) {
3562
1728
  return this.client_.unaryCall(this.hostname_ +
3563
- '/ondewo.nlu.Rags/RagSearchbotMindmap',
1729
+ '/ondewo.nlu.Rags/RagDeleteCrawlers',
3564
1730
  request,
3565
1731
  metadata || {},
3566
- methodDescriptor_Rags_RagSearchbotMindmap);
1732
+ methodDescriptor_Rags_RagDeleteCrawlers);
3567
1733
  };
3568
1734
 
3569
1735