@docbrasil/api-systemmanager 1.1.81 → 1.1.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/ai/index.js +2 -2
- package/api/ai/sessions.js +98 -5
- package/api/dispatch.js +24 -0
- package/dist/bundle.cjs +139 -7
- package/dist/bundle.mjs +1 -1
- package/doc/api.md +91 -0
- package/docs/AISession.html +731 -1
- package/docs/Dispatch.html +271 -0
- package/docs/MyndAI.html +1 -1
- package/docs/ai_index.js.html +2 -2
- package/docs/ai_sessions.js.html +98 -5
- package/docs/dispatch.js.html +24 -0
- package/index.js +15 -0
- package/package.json +1 -1
package/docs/AISession.html
CHANGED
|
@@ -224,6 +224,736 @@
|
|
|
224
224
|
|
|
225
225
|
|
|
226
226
|
|
|
227
|
+
<h4 class="name" id="create">
|
|
228
|
+
<a class="href-link" href="#create">#</a>
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
<span class='tag'>async</span>
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
<span class="code-name">
|
|
235
|
+
|
|
236
|
+
create<span class="signature">(params, authorization)</span><span class="type-signature"> → {Promise.<object>|string|string}</span>
|
|
237
|
+
|
|
238
|
+
</span>
|
|
239
|
+
</h4>
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
<div class="description">
|
|
245
|
+
Create a new agent session.
|
|
246
|
+
Use this to create a session with full metadata before triggering execution.
|
|
247
|
+
</div>
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
<h5>Parameters:</h5>
|
|
259
|
+
|
|
260
|
+
<div class="table-container">
|
|
261
|
+
<table class="params table">
|
|
262
|
+
<thead>
|
|
263
|
+
<tr>
|
|
264
|
+
|
|
265
|
+
<th>Name</th>
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
<th>Type</th>
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
<th>Attributes</th>
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
<th class="last">Description</th>
|
|
277
|
+
</tr>
|
|
278
|
+
</thead>
|
|
279
|
+
|
|
280
|
+
<tbody>
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
<tr class="deep-level-0">
|
|
285
|
+
|
|
286
|
+
<td class="name"><code>params</code></td>
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
<td class="type">
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
<code class="param-type">object</code>
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
</td>
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
<td class="attributes">
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
</td>
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
<td class="description last">Parameters</td>
|
|
311
|
+
</tr>
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
<tr class="deep-level-1">
|
|
317
|
+
|
|
318
|
+
<td class="name"><code>agentType</code></td>
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
<td class="type">
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
<code class="param-type">string</code>
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
</td>
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
<td class="attributes">
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
</td>
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
<td class="description last">The agent type (e.g., 'doc-rlm-ingest')</td>
|
|
343
|
+
</tr>
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
<tr class="deep-level-1">
|
|
348
|
+
|
|
349
|
+
<td class="name"><code>config</code></td>
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
<td class="type">
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
<code class="param-type">object</code>
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
</td>
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
<td class="attributes">
|
|
363
|
+
|
|
364
|
+
<optional><br>
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
</td>
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
<td class="description last">Agent configuration options</td>
|
|
376
|
+
</tr>
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
<tr class="deep-level-1">
|
|
381
|
+
|
|
382
|
+
<td class="name"><code>metadata</code></td>
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
<td class="type">
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
<code class="param-type">object</code>
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
</td>
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
<td class="attributes">
|
|
396
|
+
|
|
397
|
+
<optional><br>
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
</td>
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
<td class="description last">Session metadata (documentId, pipelineVariant, analysisMode, etc.)</td>
|
|
409
|
+
</tr>
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
<tr class="deep-level-0">
|
|
418
|
+
|
|
419
|
+
<td class="name"><code>authorization</code></td>
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
<td class="type">
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
<code class="param-type">string</code>
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
</td>
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
<td class="attributes">
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
</td>
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
<td class="description last">Authorization token</td>
|
|
444
|
+
</tr>
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
</tbody>
|
|
449
|
+
</table>
|
|
450
|
+
</div>
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
<dl class="details">
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
<dt class="tag-author">Author:</dt>
|
|
476
|
+
<dd class="tag-author">
|
|
477
|
+
<ul>
|
|
478
|
+
<li><a href="mailto:augusto.pissarra@myndware.com">Myndware</a></li>
|
|
479
|
+
</ul>
|
|
480
|
+
</dd>
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
<p class="tag-source">
|
|
496
|
+
<a href="ai_sessions.js.html" class="button">View Source</a>
|
|
497
|
+
<span>
|
|
498
|
+
<a href="ai_sessions.js.html">ai/sessions.js</a>, <a href="ai_sessions.js.html#line183">line 183</a>
|
|
499
|
+
</span>
|
|
500
|
+
</p>
|
|
501
|
+
|
|
502
|
+
</dl>
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
<div class='columns method-parameter'>
|
|
522
|
+
<div class="column is-2"><label>Returns:</label></div>
|
|
523
|
+
<div class="column is-10">
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
<div class="columns">
|
|
528
|
+
|
|
529
|
+
<div class='param-desc column is-7'>data The created session</div>
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
<div class='column is-5 has-text-left'>
|
|
533
|
+
<label>Type: </label>
|
|
534
|
+
|
|
535
|
+
<code class="param-type">Promise.<object></code>
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
</div>
|
|
539
|
+
|
|
540
|
+
</div>
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
<div class="columns">
|
|
546
|
+
|
|
547
|
+
<div class='param-desc column is-7'>data.sessionId The session ID</div>
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
<div class='column is-5 has-text-left'>
|
|
551
|
+
<label>Type: </label>
|
|
552
|
+
|
|
553
|
+
<code class="param-type">string</code>
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
</div>
|
|
557
|
+
|
|
558
|
+
</div>
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
<div class="columns">
|
|
564
|
+
|
|
565
|
+
<div class='param-desc column is-7'>data.status The session status</div>
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
<div class='column is-5 has-text-left'>
|
|
569
|
+
<label>Type: </label>
|
|
570
|
+
|
|
571
|
+
<code class="param-type">string</code>
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
</div>
|
|
575
|
+
|
|
576
|
+
</div>
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
</div>
|
|
580
|
+
</div>
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
<h5>Example</h5>
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
<pre class="prettyprint"><code>const API = require('@docbrasil/api-systemmanager');
|
|
589
|
+
const api = new API();
|
|
590
|
+
const authorization = '...';
|
|
591
|
+
const params = {
|
|
592
|
+
agentType: 'doc-rlm-ingest',
|
|
593
|
+
metadata: {
|
|
594
|
+
documentId: 'doc-123',
|
|
595
|
+
documentName: 'Patient Report.pdf',
|
|
596
|
+
pipelineVariant: 'A',
|
|
597
|
+
analysisMode: 'full'
|
|
598
|
+
}
|
|
599
|
+
};
|
|
600
|
+
const retData = await api.ai.sessions.create(params, authorization);</code></pre>
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
</div>
|
|
605
|
+
|
|
606
|
+
<div class="member">
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
<h4 class="name" id="execute">
|
|
611
|
+
<a class="href-link" href="#execute">#</a>
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
<span class='tag'>async</span>
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
<span class="code-name">
|
|
618
|
+
|
|
619
|
+
execute<span class="signature">(params, authorization)</span><span class="type-signature"> → {Promise.<object>|string|string}</span>
|
|
620
|
+
|
|
621
|
+
</span>
|
|
622
|
+
</h4>
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
<div class="description">
|
|
628
|
+
Start execution on an existing agent session.
|
|
629
|
+
</div>
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
<h5>Parameters:</h5>
|
|
641
|
+
|
|
642
|
+
<div class="table-container">
|
|
643
|
+
<table class="params table">
|
|
644
|
+
<thead>
|
|
645
|
+
<tr>
|
|
646
|
+
|
|
647
|
+
<th>Name</th>
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
<th>Type</th>
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
<th>Attributes</th>
|
|
654
|
+
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
<th class="last">Description</th>
|
|
659
|
+
</tr>
|
|
660
|
+
</thead>
|
|
661
|
+
|
|
662
|
+
<tbody>
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
<tr class="deep-level-0">
|
|
667
|
+
|
|
668
|
+
<td class="name"><code>params</code></td>
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
<td class="type">
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
<code class="param-type">object</code>
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
</td>
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
<td class="attributes">
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
</td>
|
|
688
|
+
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
<td class="description last">Parameters</td>
|
|
693
|
+
</tr>
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
<tr class="deep-level-1">
|
|
699
|
+
|
|
700
|
+
<td class="name"><code>sessionId</code></td>
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
<td class="type">
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
<code class="param-type">string</code>
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
|
|
710
|
+
</td>
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
<td class="attributes">
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
</td>
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
<td class="description last">The session ID to execute</td>
|
|
725
|
+
</tr>
|
|
726
|
+
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
<tr class="deep-level-1">
|
|
730
|
+
|
|
731
|
+
<td class="name"><code>input</code></td>
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
<td class="type">
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
<code class="param-type">object</code>
|
|
738
|
+
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
</td>
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
<td class="attributes">
|
|
745
|
+
|
|
746
|
+
<optional><br>
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
</td>
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
<td class="description last">Execution input (documentId, options, etc.)</td>
|
|
758
|
+
</tr>
|
|
759
|
+
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
<tr class="deep-level-0">
|
|
767
|
+
|
|
768
|
+
<td class="name"><code>authorization</code></td>
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
<td class="type">
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
<code class="param-type">string</code>
|
|
775
|
+
|
|
776
|
+
|
|
777
|
+
|
|
778
|
+
</td>
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
<td class="attributes">
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
</td>
|
|
788
|
+
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
<td class="description last">Authorization token</td>
|
|
793
|
+
</tr>
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
</tbody>
|
|
798
|
+
</table>
|
|
799
|
+
</div>
|
|
800
|
+
|
|
801
|
+
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
|
|
805
|
+
<dl class="details">
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
<dt class="tag-author">Author:</dt>
|
|
825
|
+
<dd class="tag-author">
|
|
826
|
+
<ul>
|
|
827
|
+
<li><a href="mailto:augusto.pissarra@myndware.com">Myndware</a></li>
|
|
828
|
+
</ul>
|
|
829
|
+
</dd>
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
<p class="tag-source">
|
|
845
|
+
<a href="ai_sessions.js.html" class="button">View Source</a>
|
|
846
|
+
<span>
|
|
847
|
+
<a href="ai_sessions.js.html">ai/sessions.js</a>, <a href="ai_sessions.js.html#line226">line 226</a>
|
|
848
|
+
</span>
|
|
849
|
+
</p>
|
|
850
|
+
|
|
851
|
+
</dl>
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
|
|
869
|
+
|
|
870
|
+
<div class='columns method-parameter'>
|
|
871
|
+
<div class="column is-2"><label>Returns:</label></div>
|
|
872
|
+
<div class="column is-10">
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
<div class="columns">
|
|
877
|
+
|
|
878
|
+
<div class='param-desc column is-7'>data The execution data</div>
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
<div class='column is-5 has-text-left'>
|
|
882
|
+
<label>Type: </label>
|
|
883
|
+
|
|
884
|
+
<code class="param-type">Promise.<object></code>
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
</div>
|
|
888
|
+
|
|
889
|
+
</div>
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
<div class="columns">
|
|
895
|
+
|
|
896
|
+
<div class='param-desc column is-7'>data.executionId The execution ID</div>
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
<div class='column is-5 has-text-left'>
|
|
900
|
+
<label>Type: </label>
|
|
901
|
+
|
|
902
|
+
<code class="param-type">string</code>
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
</div>
|
|
906
|
+
|
|
907
|
+
</div>
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
|
|
912
|
+
<div class="columns">
|
|
913
|
+
|
|
914
|
+
<div class='param-desc column is-7'>data.status The execution status</div>
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
<div class='column is-5 has-text-left'>
|
|
918
|
+
<label>Type: </label>
|
|
919
|
+
|
|
920
|
+
<code class="param-type">string</code>
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
</div>
|
|
924
|
+
|
|
925
|
+
</div>
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
</div>
|
|
929
|
+
</div>
|
|
930
|
+
|
|
931
|
+
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
<h5>Example</h5>
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
<pre class="prettyprint"><code>const API = require('@docbrasil/api-systemmanager');
|
|
938
|
+
const api = new API();
|
|
939
|
+
const authorization = '...';
|
|
940
|
+
const params = {
|
|
941
|
+
sessionId: 'session-abc-123',
|
|
942
|
+
input: {
|
|
943
|
+
documentId: 'doc-123',
|
|
944
|
+
options: { pipelineVariant: 'A', analysisMode: 'full' }
|
|
945
|
+
}
|
|
946
|
+
};
|
|
947
|
+
const retData = await api.ai.sessions.execute(params, authorization);</code></pre>
|
|
948
|
+
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
</div>
|
|
952
|
+
|
|
953
|
+
<div class="member">
|
|
954
|
+
|
|
955
|
+
|
|
956
|
+
|
|
227
957
|
<h4 class="name" id="getByDocument">
|
|
228
958
|
<a class="href-link" href="#getByDocument">#</a>
|
|
229
959
|
|
|
@@ -403,7 +1133,7 @@ Returns session, execution, activities, pages, triples and summary.
|
|
|
403
1133
|
<p class="tag-source">
|
|
404
1134
|
<a href="ai_sessions.js.html" class="button">View Source</a>
|
|
405
1135
|
<span>
|
|
406
|
-
<a href="ai_sessions.js.html">ai/sessions.js</a>, <a href="ai_sessions.js.html#
|
|
1136
|
+
<a href="ai_sessions.js.html">ai/sessions.js</a>, <a href="ai_sessions.js.html#line73">line 73</a>
|
|
407
1137
|
</span>
|
|
408
1138
|
</p>
|
|
409
1139
|
|