-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocs.json
More file actions
1057 lines (1056 loc) · 81.2 KB
/
Copy pathdocs.json
File metadata and controls
1057 lines (1056 loc) · 81.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "https://mintlify.com/docs.json",
"theme": "mint",
"name": "Kore.ai Docs",
"css": "/custom-css/style.css",
"colors":
{
"primary": "#16A34A",
"light": "#07C983",
"dark": "#15803D"
},
"favicon":
{
"light": "/assets/favicon-light.svg",
"dark": "/assets/favicon-dark.png"
},
"navigation":
{
"tabs":
[
{
"tab": "Home",
"pages":
[
"/home"
]
},
{
"tab": "Guide",
"pages":
[
{
"group": "Get Started",
"pages":
[
"/agent-platform/index",
{
"group": "Core Concepts",
"pages":
[
"/agent-platform/abl",
"/agent-platform/arch-ai",
"/agent-platform/dual-brain-architecture",
"/agent-platform/concepts"
]
},
"/agent-platform/getting-started",
"/agent-platform/tutorials",
"/agent-platform/release-notes/recent-updates"
]
},
{
"group": "Build",
"pages":
[
"/agent-platform/projects",
"/agent-platform/create-agents",
"/agent-platform/orchestrate",
"/agent-platform/workflows",
"/agent-platform/knowledge",
{
"group": "Tools",
"pages":
[
"/agent-platform/tools-overview",
"/agent-platform/tools/code",
"/agent-platform/tools/http",
"/agent-platform/tools/mcp"
]
},
"/agent-platform/memory-and-state",
"/agent-platform/gather-data",
"/agent-platform/prompts"
]
},
{
"group": "Test and Evaluate",
"pages":
[
"/agent-platform/testing",
"/agent-platform/evals",
"/agent-platform/optimize",
"/agent-platform/safety-and-guardrails"
]
},
{
"group": "Deploy",
"pages":
[
"/agent-platform/deployment",
"/agent-platform/inbox",
"/agent-platform/transfer-sessions",
"/agent-platform/external-agent",
"/agent-platform/runtime"
]
},
{
"group": "Analytics and Insights",
"pages":
[
"/agent-platform/analytics-and-insights",
"/agent-platform/analytics-insights/executive-dashboard-usage",
"/agent-platform/analytics-insights/performance-quality",
"/agent-platform/analytics-insights/customer-insight",
"/agent-platform/analytics-insights/voice-analytics",
"/agent-platform/analytics-insights/agent-transfer",
"/agent-platform/analytics-insights/custom-dashboards",
"/agent-platform/analytics-insights/analytics-pipelines",
"/agent-platform/sessions"
]
},
{
"group": "Administration",
"pages":
[
"/agent-platform/administration/workspace-and-team",
"/agent-platform/administration/ai-configuration",
{
"group": "Project Settings",
"pages":
[
"/agent-platform/administration/project-settings-overview",
"/agent-platform/administration/general-settings",
"/agent-platform/administration/integrations-settings",
"/agent-platform/administration/agent-behavior-settings",
"/agent-platform/administration/security-observability-settings",
"/agent-platform/administration/catalog-settings",
"/agent-platform/administration/advanced-settings"
]
},
"/agent-platform/administration/workspace-analytics",
"/agent-platform/administration/workspace-account"
]
},
{
"group": "References",
"pages":
[
"/agent-platform/mcp-server",
"/agent-platform/sdks",
"/agent-platform/faq",
"/agent-platform/glossary"
]
}
]
},
{
"tab": "ABL",
"pages":
[
"/agent-platform/abl-reference/language-overview",
"/agent-platform/abl-reference/agent-declaration",
"/agent-platform/abl-reference/multi-agent-and-supervisor",
"/agent-platform/abl-reference/behavior-profiles",
"/agent-platform/abl-reference/flow",
"/agent-platform/abl-reference/tools",
"/agent-platform/abl-reference/gather",
"/agent-platform/abl-reference/memory-and-constraints",
"/agent-platform/abl-reference/guardrails",
"/agent-platform/abl-reference/nlu",
"/agent-platform/abl-reference/data-types-and-utilities",
"/agent-platform/abl-reference/rich-content-and-expressions",
"/agent-platform/abl-reference/lifecycle-and-hooks"
]
},
{
"tab": "Solutions",
"pages":
[
{
"group": "Business Solutions",
"pages":
[
"/agent-platform/solutions-overview",
{
"group": "AI for Service",
"pages":
[
"/ai-for-service/index",
"/ai-for-service/getting-started",
"/ai-for-service/flows/create-and-manage-flows",
"/ai-for-service/release-notes",
"/ai-for-service/getting-started/upgrade-guide",
{
"group": "Modules",
"pages":
[
{
"group": "Automation AI",
"pages": [
"/ai-for-service/automationai",
"/ai-for-service/automation/dialoggpt",
"/ai-for-service/automation/agent-flows",
{
"group": "Nodes",
"pages": [
"/ai-for-service/automation/dialogs/node-types/overview",
"/ai-for-service/automation/dialogs/node-types/node-connections",
"/ai-for-service/automation/dialogs/prompt-editor"
]
},
{
"group": "Testing",
"pages": [
"/ai-for-service/automation/testing/playground",
"ai-for-service/automation/testing/batch-testing-dialoggpt"
]
},
{
"group": "Conversation Settings",
"pages": [
"/ai-for-service/automation/intelligence/events",
"/ai-for-service/automation/intelligence/conversation-management",
"/ai-for-service/manage-assistant/feedback-survey"
]
},
{
"group": "Advanced Topics",
"pages": [
"/ai-for-service/automation/dynamic-routing",
"/ai-for-service/automation/manage-assistant/collaborative-development",
"/ai-for-service/automation/natural-language/nlp-topics"
]
},
"/ai-for-service/automation/how-tos/guide"
]
},
{
"group": "Search AI",
"pages": [
"/ai-for-service/searchai",
"/ai-for-service/searchai/content-sources",
"/ai-for-service/searchai/index-configuration",
"/ai-for-service/searchai/retrieval-answer-configuration",
"/ai-for-service/searchai/agentic-rag-and-business-rules",
"/ai-for-service/searchai/testing-and-debugging",
"/ai-for-service/searchai/advance-config-and-dev-tools",
"/ai-for-service/searchai/tips-and-faqs"
]
},
{
"group": "Contact Center AI",
"pages": [
"/ai-for-service/contact-center",
{
"group": "Flows and Routing",
"pages": [
"/ai-for-service/contact-center/flows-and-routing/conditional-and-waiting-flows",
"/ai-for-service/contact-center/routing-queues-skills"
]
},
{
"group": "Configurations",
"pages": [
"/ai-for-service/contact-center/configurations/operational-configurations",
"/ai-for-service/contact-center/configurations/settings/configuration-settings",
"/ai-for-service/contact-center/performance-management/slas-and-alerts"
]
},
"/ai-for-service/contact-center/agent-console",
"/ai-for-service/contact-center/supervisor",
"/ai-for-service/contact-center/campaigns"
]
},
{
"group": "Agent AI",
"pages": [
"/ai-for-service/agent-ai",
"/ai-for-service/agentai/agent-experience",
"/ai-for-service/agentai/agent-experience/agent-realtime-coaching",
"/ai-for-service/agentai/agent-experience/playbook",
"/ai-for-service/agentai/configurations",
"/ai-for-service/agentai/integrations"
]
},
{
"group": "Quality AI",
"pages": [
"/ai-for-service/quality",
"/ai-for-service/quality-ai/configurations",
"/ai-for-service/quality-ai/analyze",
"ai-for-service/quality-ai/coaching"
]
}
]
},
{
"group": "Platform Services",
"pages": [
{
"group": "GenAI Tools",
"pages": [
"/ai-for-service/generative-ai-tools/overview",
{
"group": "Models Library",
"pages": [
"/ai-for-service/generative-ai-tools/llm-integration",
"/ai-for-service/generative-ai-tools/xo-gpt-module"
]
},
"/ai-for-service/generative-ai-tools/prompts-library",
"ai-for-service/generative-ai-tools/genai-features",
"ai-for-service/generative-ai-tools/model-context-protocol",
{
"group": "Safeguards",
"pages": [
"/ai-for-service/generative-ai-tools/data-anonymization",
"/ai-for-service/generative-ai-tools/guardrails"
]
}
]
},
{
"group": "Integrations",
"pages": [
"/ai-for-service/integrations/overview",
"/ai-for-service/contact-center/integrations/overview"
]
},
"/ai-for-service/channels",
"/ai-for-service/deployment/overview",
"/ai-for-service/analytics/overview"
]
},
{
"group": "Administration",
"pages": [
"/ai-for-service/manage-assistant/plan-and-usage/accounts-or-workspace-overview",
"/ai-for-service/user-management/users-and-role",
"/ai-for-service/app-settings",
"/ai-for-service/manage-assistant/plan-and-usage/billing-and-payments",
"/ai-for-service/administration/overview"
]
},
{
"group": "References",
"pages": [
{
"group": "APIs",
"pages": [
"/ai-for-service/apis/automation/api-introduction",
"/ai-for-service/apis/rate-limit",
"/ai-for-service/apis/api-list"
]
},
{
"group": "SDKs",
"pages": [
"/ai-for-service/sdk/bot-sdk-introduction",
"/ai-for-service/sdk/web-sdk",
"/ai-for-service/sdk/botkit-sdk"
]
},
"/ai-for-service/apis/automation/koreutil-libraries"
]
}
]
},
{
"group": "AI for Work",
"pages":
[
"/ai-for-work/index",
"/ai-for-work/getting-started",
"/ai-for-work/getting-started/how-to-use",
"/ai-for-work/release-notes/release-updates",
{
"group": "Agents",
"pages": [
"/ai-for-work/custom-agents/enterprise-knowledge",
"/ai-for-work/pre-built-agents",
"/ai-for-work/custom-agents",
"/ai-for-work/custom-agents/agent-management/",
"/ai-for-work/getting-started/marketplace"
]
},
{
"group": "Platform Services",
"pages": [
"/ai-for-work/assistant-configurations",
"/ai-for-work/llm-configuration",
"/ai-for-work/channels",
"/ai-for-work/analytics"
]
},
{
"group": "Administration",
"pages": [
"/ai-for-work/administration/account-and-workspace",
"/ai-for-work/administration/user-management",
"/ai-for-work/administration/security-and-control",
"/ai-for-work/administration/audit-log",
"/ai-for-work/integration/amazon-q"
]
}
]
},
{
"group": "AI for Process",
"pages":
[
"/ai-for-process/index",
"/ai-for-process/getting-started",
"/ai-for-process/release-notes/recent-updates",
{
"group": "Building Workflows",
"pages":
[
{
"group": "Workflows",
"pages":
[
"/ai-for-process/workflows/overview",
"/ai-for-process/workflows/workflow-builder",
"/ai-for-process/workflows/triggers-and-access",
"/ai-for-process/workflows/workflow-management",
"/ai-for-process/workflows/context-object",
"/ai-for-process/workflows/monitor-and-debug"
]
},
"/ai-for-process/nodes",
"/ai-for-process/inbox"
]
},
{
"group": "Platform Services",
"pages":
[
"ai-for-process/prompts",
{
"group": "Models",
"pages":
[
"/ai-for-process/models",
"/ai-for-process/models/external-models",
"/ai-for-process/models/fine-tuned-model",
"/ai-for-process/models/open-source-models",
"/ai-for-process/models/supported-models"
]
},
"/ai-for-process/guardrails"
]
},
{
"group": "Administration",
"pages": [
"/ai-for-process/admin-settings",
{
"group": "User and Role Management",
"pages": [
"/ai-for-process/settings/user-management",
"/ai-for-process/settings/role-management"
]
},
"/ai-for-process/settings/monitoring-overview",
{
"group": "Browser Automation",
"pages": [
"/ai-for-process/settings/deployment",
"/ai-for-process/settings/playground"
]
},
"/ai-for-process/settings/security-control",
"/ai-for-process/settings/billing-and-usage"
]
},
{
"group": "References",
"pages": [
"/ai-for-process/settings/manage-dataset",
"/ai-for-process/settings/integrations",
"/ai-for-process/apis/apis"
]
}
]
},
{
"group": "Agent Platform v1",
"pages":
[
"/agent-platform/v1/index",
"/agent-platform/v1/concepts",
"/agent-platform/v1/getting-started",
"/agent-platform/v1/release-notes/recent-updates",
{
"group": "Building Agents",
"pages": [
"/agent-platform/v1/agents/agentic-apps/create-an-app",
{
"group": "Agents",
"pages":
[
"/agent-platform/v1/agents",
"/agent-platform/v1/agents/create-an-agent",
"/agent-platform/v1/agents/agent-management"
]
},
{
"group": "Orchestration",
"pages":
[
"/agent-platform/v1/orchestrate",
"/agent-platform/v1/orchestration/single-agent",
"/agent-platform/v1/orchestration/supervisor",
"/agent-platform/v1/orchestration/adaptive-network"
]
},
{
"group": "Tools",
"pages":
[
"/agent-platform/v1/tools",
"/agent-platform/v1/tools/workflow",
"/agent-platform/v1/tools/nodes",
"/agent-platform/v1/tools/code",
"/agent-platform/v1/tools/mcp",
"/agent-platform/v1/tools/calling",
"/agent-platform/v1/tools/context-object"
]
},
"/agent-platform/v1/knowledge",
"/agent-platform/v1/memory",
"/agent-platform/v1/agents/agentic-apps/settings",
"/agent-platform/v1/deploy/diagnostics",
"/agent-platform/v1/agents/agentic-apps/simulation-and-testing",
{
"group": "Deployment",
"pages":
[
"/agent-platform/v1/deploy-apps",
"/agent-platform/v1/deploy/import-export"
]
}
]
},
{
"group": "Platform Services",
"pages": [
{
"group": "Models",
"pages":
[
"/agent-platform/v1/models",
"/agent-platform/v1/models/external-models",
"/agent-platform/v1/models/open-source-models",
"/agent-platform/v1/models/fine-tuned-models",
"/agent-platform/v1/models/supported-models"
]
},
{
"group": "Prompts",
"pages":
[
"/agent-platform/v1/prompts",
"/agent-platform/v1/prompts/using-prompt-studio",
"/agent-platform/v1/prompts/advanced-features"
]
},
{
"group": "Evaluation",
"pages":
[
"/agent-platform/v1/evaluation",
"/agent-platform/v1/evaluation/model-evaluation",
"/agent-platform/v1/evaluation/agentic-evaluation"
]
},
"/agent-platform/v1/guardrails",
"/agent-platform/v1/analytics"
]
},
{
"group": "Administration",
"pages":
[
"/agent-platform/v1/administration/overview",
{
"group": "User and Role Management",
"pages":
[
"/agent-platform/v1/administration/user-management",
"/agent-platform/v1/administration/role-management"
]
},
"/agent-platform/v1/administration/monitoring",
"/agent-platform/v1/administration/manage-custom-scripts",
"/agent-platform/v1/administration/security-and-control",
"/agent-platform/v1/administration/billing-and-usage"
]
},
{
"group": "References",
"pages": [
{
"group": "Business Solutions",
"pages": [
"/agent-platform/v1/agents/ai-for-service",
"/agent-platform/v1/agents/ai-for-work"
]
},
"/agent-platform/v1/agents/agentic-apps/marketplace",
"/agent-platform/v1/administration/manage-datasets",
"/agent-platform/v1/administration/integrations",
"/agent-platform/v1/apis",
"/agent-platform/v1/sdk-overview",
"/agent-platform/v1/how-to-guides"
]
}
]
}
]
}
]
}
]
},
"logo":
{
"light": "/assets/koreailogo-black.svg",
"dark": "/assets/koreailogo-white.svg"
},
"navbar":
{
"links":
[
{ "label": "Academy", "href": "https://academy.kore.ai/", "icon": "book-open" },
{ "label": "Community", "href": "https://community.kore.ai/", "icon": "message" },
{ "label": "Support", "href": "https://support.kore.ai/", "icon": "life-ring" }
]
},
"contextual":
{
"options": [ "copy", "view", "chatgpt", "claude" ]
},
"redirects":
[
{ "source": "/agent-platform/abl-reference/full-specification", "destination": "/agent-platform/abl-reference/language-overview" },
{ "source": "/ai-for-work/administration", "destination": "/ai-for-work/administration/account-and-workspace" },
{ "source": "/ai-for-service/quality-ai/analyze/conversation-intelligence", "destination": "/ai-for-service/quality-ai/analyze/cx-insights" },
{ "source": "/ai-for-service/apis/agent-ai/hooks-api-for-internal-transfers", "destination": "/ai-for-service/apis/agent-ai/webhook-api-for-conversation-events" },
{ "source": "/ai-for-service/agentai/agent-experience/access-custom-data-in-agent-ai", "destination": "/ai-for-service/agentai/agent-experience" },
{ "source": "/agent-platform/models/open-source-models/importing-models/", "destination": "/agent-platform/v1/models/open-source-models#import-a-local-model"},
{ "source": "/agent-platform/models/open-source-models/model-optimization/", "destination": "/agent-platform/v1/models/open-source-models#optimization-techniques"},
{ "source": "/agent-platform/models/external-models/add-an-external-model-using-api-integration/", "destination": "/agent-platform/v1/models/external-models#add-a-model-via-api-integration"},
{ "source": "/agent-platform/models/external-models/managing-external-models/", "destination": "/agent-platform/v1/models/external-models"},
{ "source": "/agent-platform/models/fine-tune-models/deploy-a-fine-tuned-model/", "destination": "/agent-platform/v1/models/fine-tuned-models#deploy-a-fine-tuned-model"},
{ "source": "/agent-platform/prompts/accessing-prompt-studio/", "destination": "/agent-platform/v1/prompts/using-prompt-studio"},
{ "source": "/agent-platform/prompts/options-prompt-canvas/", "destination": "/agent-platform/v1/prompts/using-prompt-studio#use-prompt-canvas"},
{ "source": "/agent-platform/evaluation/model-evaluation/configure-evaluator/", "destination": "/agent-platform/v1/evaluation/model-evaluation#configure-evaluators"},
{ "source": "/agent-platform/evaluation/agentic-evaluation/analyze-evaluation/", "destination": "/agent-platform/v1/evaluation/agentic-evaluation#analyze-evaluation-results"},
{ "source": "/agent-platform/evaluation/model-evaluation/overview/", "destination": "/agent-platform/v1/evaluation/model-evaluation"},
{ "source": "/agent-platform/settings/security-and-control/api-scopes/", "destination": "/agent-platform/v1/administration/security-and-control#api-scopes"},
{ "source": "/agent-platform/settings/security-and-control/single-sign-on/", "destination": "/agent-platform/v1/administration/security-and-control#single-sign-on-sso"},
{ "source": "/agent-platform/settings/manage-custom-scripts/custom-scripts/", "destination": "/agent-platform/v1/administration/security-and-control#custom-scripts"},
{ "source": "/agent-platform/settings/security-and-control/authorization-profile/", "destination": "/agent-platform/v1/administration/security-and-control#authorization-profiles"},
{ "source": "/agent-platform/settings/billing/managing-usage-limits/", "destination": "/agent-platform/v1/administration/billing-and-usage"},
{ "source": "/agent-platform/settings/integrations/integrate-with-s3-bucket/", "destination": "/agent-platform/v1/administration/integrations#aws-s3-bucket"},
{ "source": "/agent-platform/settings/user-management/invite-a-user/", "destination": "/agent-platform/v1/administration/user-management"},
{ "source": "/agent-platform/settings/user-management/users/", "destination": "/agent-platform/v1/administration/user-management"},
{ "source": "/agent-platform/sdk/getting-started/installation", "destination": "/agent-platform/v1/sdk-overview#3-installation-and-setup"},
{ "source": "/agent-platform/sdk/getting-started/quickstart", "destination": "/agent-platform/v1/sdk-overview"},
{ "source": "/agent-platform/sdk/getting-started/concepts", "destination": "/agent-platform/v1/sdk-overview"},
{ "source": "/agent-platform/sdk/api/designtime", "destination": "/agent-platform/v1/sdk/architecture"},
{ "source": "/agent-platform/sdk/api/runtime", "destination": "/agent-platform/v1/sdk/architecture"},
{ "source": "/agent-platform/sdk/cli", "destination": "/agent-platform/v1/sdk/api-reference"},
{ "source": "/agent-platform/sdk/examples/banking-assistant", "destination": "/agent-platform/v1/sdk/examples"},
{ "source": "/agent-platform/sdk/examples/multi-agent", "destination": "/agent-platform/v1/sdk-overview"},
{ "source": "/agent-platform/ai-agents/agentic-apps/howto/pass-uploaded-documents-to-external-systems/", "destination": "/agent-platform/v1/howto/pass-uploaded-documents-to-external-systems" },
{ "source": "/agent-platform/ai-agents/tools/import-a-tool/", "destination": "/agent-platform/v1/tools#creating-tools" },
{ "source": "/agent-platform/ai-agents/agentic-apps/deployment/app-deployment/", "destination": "/agent-platform/v1/deploy-apps#app-deployment" },
{ "source": "/agent-platform/ai-agents/tools/tool-flows/perform-other-actions-on-the-flow-builder/manage-input-and-output/", "destination": "/agent-platform/v1/tools/workflow#manage-input-and-output" },
{ "source": "/agent-platform/ai-agents/knowledge/manage-knowledge-tools/", "destination": "/agent-platform/v1/knowledge" },
{ "source": "/agent-platform/ai-agents/agentic-apps/agentic-app-setup-guide/", "destination": "/agent-platform/v1/getting-started#agentic-app-setup-guide" },
{ "source": "/agent-platform/ai-agents/agentic-apps/analytics-dashboard/", "destination": "/agent-platform/v1/analytics" },
{ "source": "/agent-platform/ai-agents/agentic-apps/app-analytics/", "destination": "/agent-platform/v1/analytics" },
{ "source": "/agent-platform/ai-agents/agentic-apps/export/", "destination": "/agent-platform/v1/deploy/import-export" },
{ "source": "/agent-platform/ai-agents/agentic-apps/import/", "destination": "/agent-platform/v1/deploy/import-export" },
{ "source": "/agent-platform/ai-agents/tools/create-a-new-api-key/", "destination": "/agent-platform/v1/administration/security-and-control#create-an-api-key" },
{ "source": "/agent-platform/ai-agents/tools/tool-templates/", "destination": "/agent-platform/v1/tools/workflow#tool-templates" },
{ "source": "/agent-platform/ai-agents/agentic-apps/api-keys/", "destination": "/agent-platform/v1/apis" },
{ "source": "/agent-platform/ai-agents/agentic-apps/app-testing/", "destination": "/agent-platform/v1/agents/agentic-apps/simulation-and-testing" },
{ "source": "/agent-platform/ai-agents/agentic-apps/settings/events/", "destination": "/agent-platform/v1/agents/agentic-apps/settings/events" },
{ "source": "/agent-platform/ai-agents/tools/create-a-code-tool/", "destination": "/agent-platform/v1/tools/code" },
{ "source": "/agent-platform/ai-agents/tools/tool-calling/", "destination": "/agent-platform/v1/tools/calling" },
{ "source": "/agent-platform/ai-agents/tools/code-tools/", "destination": "/agent-platform/v1/tools/code" },
{ "source": "/agent-platform/ai-agents/agentic-apps/app-profile/", "destination": "/agent-platform/v1/agents/agentic-apps/create-an-app#app-profile" },
{ "source": "/agent-platform/ai-agents/agentic-apps/memory-stores", "destination": "/agent-platform/v1/memory" },
{ "source": "/agent-platform/ai-agents/agentic-apps/settings/app-configurations", "destination": "/agent-platform/v1/agents/agentic-apps/settings/app-configurations" },
{ "source": "/agent-platform/ai-agents/tools/configure-mcp-server/", "destination": "/agent-platform/v1/tools/mcp" },
{ "source": "/agent-platform/ai-agents/agentic-apps/real-time-voice-integration/", "destination": "/agent-platform/v1/orchestrate#voice-to-voice-interactions" },
{ "source": "/agent-platform/ai-agents/agentic-apps/settings/guardrails/", "destination": "/agent-platform/v1/guardrails" },
{ "source": "/agent-platform/ai-agents/agentic-apps/settings/variables/", "destination": "/agent-platform/v1/agents/agentic-apps/settings/variables" },
{ "source": "/agent-platform/ai-agents/realtime-multimodal/", "destination": "/agent-platform/v1/orchestration/realtime-multimodal" },
{ "source": "/agent-platform/ai-agents/ai-for-service", "destination": "/agent-platform/v1/agents/ai-for-service/index" },
{ "source": "/agent-platform/ai-agents/external-agents", "destination": "/agent-platform/v1/agents/external-agents" },
{ "source": "/agent-platform/ai-agents/tools/create-a-new-tool", "destination": "/agent-platform/v1/tools#creating-tools" },
{ "source": "/agent-platform/ai-agents/ai-for-work", "destination": "/agent-platform/v1/agents/ai-for-work" },
{ "source": "/agent-platform/ai-agents/agentic-apps/howto/voice-interactions", "destination": "/agent-platform/v1/howto/voice-interactions" },
{ "source": "/agent-platform/ai-agents/agentic-apps/howto/pass-data-from-AIforService-AgentPlatform", "destination": "/agent-platform/v1/howto/pass-data-from-ai-for-service-to-agent-platform" },
{ "source": "/agent-platform/ai-agents/agentic-apps/settings/sharing-permissions", "destination": "/agent-platform/v1/agents/agentic-apps/settings/sharing-permissions" },
{ "source": "/agent-platform/ai-agents/tools/tool-flows/types-of-nodes/api-node", "destination": "/agent-platform/v1/tools/nodes#api-node" },
{ "source": "/agent-platform/ai-agents/agentic-apps/howto/initiate-live-agent-handoff", "destination": "/agent-platform/v1/howto/initiate-live-agent-handoff" },
{ "source": "/agent-platform/ai-agents/multi-agent-system/", "destination": "/agent-platform/v1/orchestration/supervisor" },
{ "source": "/agent-platform/ai-agents/overview/", "destination": "/agent-platform/v1/agents" },
{ "source": "/agent-platform/ai-agents/adaptive-network/", "destination": "/agent-platform/v1/orchestration/adaptive-network" },
{ "source": "/agent-platform/ai-agents/single-agent/", "destination": "/agent-platform/v1/orchestration/single-agent" },
{ "source": "/agent-platform/ai-agents/tools/workflow-tools/", "destination": "/agent-platform/v1/tools/workflow" },
{ "source": "/agent-platform/ai-agents/tools/mcp-tools/", "destination": "/agent-platform/v1/tools/mcp" },
{ "source": "/agent-platform/ai-agents/tools/overview/", "destination": "/agent-platform/v1/tools" },
{ "source": "/agent-platform/ai-agents/agentic-apps/create-app/", "destination": "/agent-platform/v1/agents/agentic-apps/create-an-app" },
{ "source": "/agent-platform/ai-agents/agentic-apps/overview/", "destination": "/agent-platform/v1/concepts" },
{ "source": "/agent-platform/ai-agents/supervisor/", "destination": "/agent-platform/v1/orchestration/supervisor" },
{ "source": "/agent-platform/ai-agents/create-agent/", "destination": "/agent-platform/v1/agents/create-an-agent" },
{ "source": "/agent-platform/ai-agents/knowledge/overview/", "destination": "/ai-for-service/searchai" },
{ "source": "/agent-platform/ai-agents/tools/tool-flows/perform-other-actions-on-the-flow-builder/run-the-flow", "destination": "/agent-platform/v1/tools/workflow#running-and-testing-flows" },
{ "source": "/agent-platform/ai-agents/agentic-apps/audit-logs", "destination": "/agent-platform/v1/analytics#audit-logs" },
{ "source": "/agent-platform/ai-agents/tools/tool-flows/types-of-nodes/ai-node", "destination": "/agent-platform/v1/tools/nodes#ai-nodes" },
{ "source": "/agent-platform/ai-agents/tools/manage-user-roles-and-permissions", "destination": "/agent-platform/v1/tools/workflow#sharing-and-permissions"},
{ "source": "/agent-platform/ai-agents/agentic-apps/howto/share-context-with-AIforService", "destination": "/agent-platform/v1/howto/share-context-with-ai-for-service" },
{ "source": "/agent-platform/ai-agents/tools/tool-audit-log", "destination": "/agent-platform/v1/tools/workflow#audit-logs" },
{ "source": "/agent-platform/ai-agents/agentic-apps/orchestrator", "destination": "/agent-platform/v1/orchestrate"},
{ "source": "/agent-platform/ai-agents/tools/tool-flows/manage-flow-nodes/", "destination": "/agent-platform/v1/tools/nodes"},
{ "source": "/agent-platform/ai-agents/tools/tool-flows/types-of-nodes/audio-to-text-node/", "destination": "/agent-platform/v1/tools/nodes"},
{ "source": "/agent-platform/ai-agents/tools/tool-flows/types-of-nodes/condition-node/", "destination": "/agent-platform/v1/tools/nodes"},
{ "source": "/agent-platform/ai-agents/tools/tool-flows/types-of-nodes/function-node/", "destination": "/agent-platform/v1/tools/nodes"},
{ "source": "/agent-platform/ai-agents/tools/tool-flows/types-of-nodes/image-to-text-node/", "destination": "/agent-platform/v1/tools/nodes"},
{ "source": "/agent-platform/ai-agents/tools/tool-flows/types-of-nodes/integration-node/", "destination": "/agent-platform/v1/tools/nodes"},
{ "source": "/agent-platform/ai-agents/tools/tool-flows/types-of-nodes/loop-node/", "destination": "/agent-platform/v1/tools/nodes"},
{ "source": "/agent-platform/ai-agents/tools/tool-flows/types-of-nodes/text-to-image-node/", "destination": "/agent-platform/v1/tools/nodes"},
{ "source": "/agent-platform/ai-agents/tools/tool-flows/types-of-nodes/text-to-text-node/", "destination": "/agent-platform/v1/tools/nodes"},
{ "source": "/agent-platform/ai-agents/context-object/", "destination": "/agent-platform/v1/tools/context-object"},
{ "source": "/agent-platform/guardrails/test-guardrail/", "destination": "/agent-platform/v1/guardrails" },
{ "source": "/agent-platform/guardrails/overview/", "destination": "/agent-platform/v1/guardrails" },
{ "source": "/agent-platform/apis/agentic-apps/overview/", "destination": "/agent-platform/v1/apis" },
{ "source": "/agent-platform/apis/list-of-apis/", "destination": "/agent-platform/v1/apis" },
{ "source": "/agent-platform/prompts/overview/", "destination": "/agent-platform/v1/prompts" },
{ "source": "/agent-platform/settings/integrations/about-integrations/", "destination": "/agent-platform/v1/administration/integrations" },
{ "source": "/agent-platform/models/overview/", "destination": "/agent-platform/v1/models" },
{ "source": "/agent-platform/dialog-agents/dialoggpt/", "destination": "/agent-platform/index" },
{ "source": "/agent-platform/models/fine-tune-models/create-a-fine-tuned-model", "destination": "/agent-platform/v1/models/fine-tuned-models"},
{ "source": "/agent-platform/apis/overview/", "destination": "/agent-platform/v1/apis" },
{ "source": "/agent-platform/models/external-models/add-an-external-model-using-easy-integration/", "destination": "/agent-platform/v1/models/external-models#add-a-model-via-easy-integration" },
{ "source": "/agent-platform/models/open-source-models/view-the-generated-api-endpoint/", "destination": "/agent-platform/v1/models/open-source-models#manage-deployed-models" },
{ "source": "/agent-platform/settings/user-management/role-management/", "destination": "/agent-platform/v1/administration/role-management" },
{ "source": "/agent-platform/evaluation/agentic-evaluation/overview/", "destination": "/agent-platform/v1/evaluation/agentic-evaluation" },
{ "source": "/agent-platform/sdk/", "destination": "/agent-platform/v1/sdk-overview" },
{ "source": "/agent-platform/apis/apis-list/upload-file-api/", "destination": "/agent-platform/v1/apis/agentic-apps/upload" },
{ "source": "/agent-platform/models/external-models/configuring-aws/", "destination": "/agent-platform/v1/models/external-models#add-a-model-via-easy-integration" },
{ "source": "/agent-platform/getting-started/outbound-ip-address", "destination": "/agent-platform/v1/getting-started#allowlist-ips" },
{ "source": "/agent-platform/getting-started/sign-up-sign-in", "destination": "/agent-platform/v1/getting-started" },
{ "source": "/agent-platform/getting-started/introduction/", "destination": "/agent-platform/v1/concepts" },
{ "source": "/agent-platform/core-ai/overview/", "destination": "/agent-platform/index" },
{ "source": "/agent-platform/evaluation/overview/", "destination": "/agent-platform/v1/evaluation" },
{ "source": "/agent-platform/home/", "destination": "/agent-platform/index" },
{ "source": "/agent-platform/home", "destination": "/agent-platform/index"},
{ "source": "/ai-for-service/automation/intelligence/event-overview", "destination": "/ai-for-service/automation/intelligence/events" },
{ "source": "/ai-for-service/agentai/configuration/widget-theming-layout-customization/summary-settings", "destination": "/ai-for-service/agentai/configuration/summary-settings" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-types/nodes-transitions", "destination": "/ai-for-service/automation/dialogs/node-types/overview#how-do-nodes-and-transitions-work" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/dialog-tasks-overview", "destination": "/ai-for-service/automation/agent-flows#dialog-tasks" },
{ "source": "/ai-for-service/searchai/language-support", "destination": "/ai-for-service/searchai/tips-and-faqs#multilingual-support" },
{ "source": "/ai-for-service/generative-ai-tools/dgpt-faq", "destination": "/ai-for-service/automation/dialoggpt" },
{ "source": "/ai-for-service/app-settings/dev-tools/bot-authorization/bot-authentication", "destination": "/ai-for-service/app-settings#dev-tools" },
{ "source": "/ai-for-service/searchai/workbench/api-stage", "destination": "/ai-for-service/searchai/index-configuration#content-enrichment-using-workbench" },
{ "source": "/ai-for-service/contactcenter/configurations/settings/llm-based-conversation-summary", "destination": "/ai-for-service/contact-center/configurations/settings/configuration-settings#llm-based-conversation-summary"},
{ "source": "/ai-for-work/assist-configuration/announcements", "destination": "/ai-for-work/assistant-configurations#announcements"},
{ "source": "/ai-for-service/integrations/actions/asana/using-the-asana-action-templates", "destination": "/ai-for-service/integrations/actions/configuring-the-asana-action"},
{ "source": "/ai-for-process/models/fine-tune-models/generate-an-api-key", "destination": "/ai-for-process/models/fine-tuned-model#generate-an-api-key" },
{ "source": "/gale/home", "destination": "/agent-platform/index" },
{ "source": "/ai-for-service/release-notes/current-limitations", "destination": "/ai-for-service/release-notes"},
{ "source": "/ai-for-service/quality-management/connectors/amazon-s3", "destination": "/ai-for-service/quality-ai/connectors/aws-s3-connector-setup-guide" },
{ "source": "/ai-for-service/automation/intelligence/conversation-management/manage-interruptions", "destination": "/ai-for-service/automation/intelligence/conversation-management#manage-interruptions" },
{ "source": "/ai-for-service/flows/node-types/introduction-to-flow-nodes/", "destination": "/ai-for-service/flows/create-and-manage-flows#flow-nodes-and-node-types" },
{ "source": "/ai-for-service/automation/intelligence/sentiment-management/sentiment-management-overview/", "destination": "/ai-for-service/automation/intelligence/intelligence-overview#sentiment-management" },
{ "source": "/ai-for-service/automation/intelligence/sentiment-management/tone-analysis/", "destination": "/ai-for-service/automation/intelligence/events#tone-analysis" },
{ "source": "/ai-for-service/automation/intelligence/conversation-management/standard-responses/", "destination": "/ai-for-service/automation/intelligence/conversation-management" },
{ "source": "/ai-for-service/automation/intelligence/conversation-management/conversation-events/", "destination": "/ai-for-service/automation/intelligence/conversation-management" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-types/working-with-the-agent-transfer-node/", "destination": "/ai-for-service/automation/dialogs/node-types/agent-transfer-node" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-types/working-with-the-dialog-node/", "destination": "/ai-for-service/automation/dialogs/node-types/dialog-node" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-types/working-with-the-logic-node/", "destination": "/ai-for-service/automation/dialogs/node-types/logic-node" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-types/working-with-the-script-node/", "destination": "/ai-for-service/automation/dialogs/node-types/script-node" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-connections/nodes-conditions/", "destination": "/ai-for-service/automation/dialogs/node-types/node-connections" },
{ "source": "/ai-for-service/automation/agent-node/best-practices/", "destination": "/ai-for-service/automation/agent-node#best-practices" },
{ "source": "/ai-for-service/getting-started/glossary/concepts-and-terminology/", "destination": "/ai-for-service/index" },
{ "source": "/ai-for-service/getting-started/key-differences-between-xo11-and-xo10/", "destination": "/ai-for-service/getting-started/benefits-xo11" },
{ "source": "/ai-for-service/searchai/content-sources/racl-support/", "destination": "/ai-for-service/searchai/connectors/testrail#racl-support" },
{ "source": "/ai-for-service/searchai/content-sources/connectors/", "destination": "/ai-for-service/searchai/content-sources#connectors" },
{ "source": "/ai-for-service/manage-assistant/feedbacksurvey/", "destination": "/ai-for-service/manage-assistant/feedback-survey" },
{ "source": "/ai-for-service/how-tos/access-original-pii-data/", "destination": "/ai-for-service/automation/how-tos/access-original-pii-data" },
{ "source": "/ai-for-service/how-tos/zendesk/create-a-ticket-in-zendesk/", "destination": "/ai-for-service/automation/how-tos/zendesk/create-a-ticket-in-zendesk" },
{ "source": "/ai-for-service/how-tos/share-metadata-ais-to-agent-platform/", "destination": "/ai-for-service/automation/how-tos/share-metadata-ais-to-agent-platform" },
{ "source": "/ai-for-service/how-tos/salesforce/lead-capture-in-salesforce-crm/", "destination": "/ai-for-service/automation/how-tos/salesforce/lead-capture-in-salesforce-crm" },
{ "source": "/ai-for-service/release-notes/11.x/deprecations/", "destination": "/ai-for-service/release-notes/deprecations" },
{ "source": "/ai-for-work/getting-started/setup-guide/", "destination": "/ai-for-work/getting-started" },
{ "source": "/ai-for-process/workflows/export-a-workflow", "destination": "/ai-for-process/workflows/import-export-workflows" },
{ "source": "/ai-for-process/workflows/manage-user-roles-and-permissions", "destination": "/ai-for-process/workflows/workflow-management#collaborate-on-workflows" },
{ "source": "/ai-for-process/workflows/import-a-workflow", "destination": "/ai-for-process/workflows/import-export-workflows" },
{ "source": "/ai-for-service/searchai/auto-migration", "destination": "/ai-for-service/getting-started/searchassist-to-searchai-migration" },
{ "source": "/ai-for-service/searchai/migration", "destination": "/ai-for-service/getting-started/searchassist-to-searchai-migration" },
{ "source": "/ai-for-service/app-settings/integrations/agents/agent-transfer-integrations/", "destination": "/ai-for-service/integrations/agents/agent-transfer-integrations" },
{ "source": "/ai-for-process/settings/browser-automation/playground/", "destination": "/ai-for-process/admin-settings" },
{ "source": "/ai-for-service/searchai/answer-configuration", "destination": "/ai-for-service/searchai/retrieval-answer-configuration" },
{ "source": "/ai-for-service/manage-assistant/collaborative-development", "destination": "/ai-for-service/automation/manage-assistant/collaborative-development#collaborative-development" },
{ "source": "/ai-for-service/console/agent-console-introduction", "destination": "/ai-for-service/contact-center/agent-console#agent-console" },
{ "source": "/ai-for-service/administration/data/data-services", "destination": "/ai-for-service/administration/data/data-tables-and-views" },
{ "source": "/ai-for-service/how-tos/using-nlmeta", "destination": "/ai-for-service/automation/how-tos/using-nlmeta#using-nlmeta" },
{ "source": "/ai-for-service/searchai/workbench/llm-stage", "destination": "/ai-for-service/searchai/index-configuration#stage-management" },
{ "source": "/ai-for-service/automation/agent-node/faqs", "destination": "/ai-for-service/automation/agent-node" },
{ "source": "/ai-for-service/contactcenter/campaigns/about-campaigns", "destination": "/ai-for-service/contact-center/campaigns#campaigns" },
{ "source": "/ai-for-service/automation/use-cases/alert-tasks", "destination": "/ai-for-service/automation/intelligence/context-management#alert-tasks" },
{ "source": "/ai-for-service/kb/new-and-returning-users", "destination": "/ai-for-service/automation/how-tos/new-and-returning-users" },
{ "source": "/ai-for-service/contactcenter/campaigns/frequently-asked-questions", "destination": "/ai-for-service/contact-center/campaigns#faq" },
{ "source": "/ai-for-service/searchai/advanced-configurations/advanced-configurations", "destination": "/ai-for-service/searchai/advance-config-and-dev-tools#advanced-configuration" },
{ "source": "/ai-for-service/flows/navigate-the-flow-designer", "destination": "/ai-for-service/flows/create-and-manage-flows#navigate-the-flow-designer" },
{ "source": "/ai-for-service/getting-started/accessing-the-platform", "destination": "/ai-for-work/getting-started#platform-access" },
{ "source": "/ai-for-service/administration/adminconsole-new-admin-console", "destination": "/ai-for-service/administration/overview#admin-console-overview" },
{ "source": "/ai-for-service/getting-started/navigating-the-platform", "destination": "/ai-for-service/getting-started#navigate-the-platform" },
{ "source": "/ai-for-service/apis/automation/rate-limit-ccai", "destination": "/ai-for-service/apis/contact-center/rate-limit-ccai#contact-center-ai-api-rate-limits" },
{ "source": "/ai-for-service/contactcenter/campaigns/settings/global-settings", "destination": "/ai-for-service/contact-center/campaigns#global-settings" },
{ "source": "/ai-for-service/searchai/best-practices/data-ingestion", "destination": "/ai-for-service/searchai/tips-and-faqs#1-data-ingestion" },
{ "source": "/ai-for-service/console/interacting-with-customers", "destination": "/ai-for-service/contact-center/agent-console#live-interaction-pane" },
{ "source": "/ai-for-service/administration/data/app-definition", "destination": "/ai-for-service/administration/data/data-tables-and-views#app-definition" },
{ "source": "/ai-for-work/Administration/account-hub/", "destination": "/ai-for-work/administration/account-and-workspace#account-hub" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-types/genai-prompt/", "destination": "/ai-for-service/automation/dialogs/node-types/genai-prompt" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/entity-types/", "destination": "/ai-for-service/automation/dialogs/node-types/entity-node#entity-types" },
{ "source": "/ai-for-service/channels/IVR-integration/", "destination": "/ai-for-service/channels/ivr-integration" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-types/working-with-the-service-node/", "destination": "/ai-for-service/automation/dialogs/node-types/service-node" },
{ "source": "/ai-for-service/administration/data/data-table/", "destination": "/ai-for-service/administration/data/data-tables-and-views" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/entity-rules/", "destination": "/ai-for-service/automation/dialogs/node-types/entity-node#entity-rules" },
{ "source": "/ai-for-service/contactcenter/integrations/voice-automation-nice-cxone-sip-integration/nice-cxone-sip-integration/", "destination": "/ai-for-service/contact-center/integrations/voice-automation-nice-cxone-sip-integration/nice-cxone-sip-integration" },
{ "source": "/ai-for-service/contactcenter/routing/contact-center-ai-routing/", "destination": "/ai-for-service/contact-center/routing-queues-skills#routing-queues-and-skills" },
{ "source": "/ai-for-service/flows/create-flows/", "destination": "/ai-for-service/flows/create-and-manage-flows" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-types/working-with-the-entity-node/", "destination": "/ai-for-service/automation/dialogs/node-types/entity-node" },
{ "source": "/ai-for-service/automation/intelligence/event-handling/", "destination": "/ai-for-service/app-settings/managing-namespace#event-handlers" },
{ "source": "/ai-for-service/searchai/rag-agents/", "destination": "/ai-for-service/searchai/agentic-rag-and-business-rules" },
{ "source": "/ai-for-service/contactcenter/configurations/languages-and-speech/configure-languages-and-speech/", "destination": "/ai-for-service/contact-center/configurations/operational-configurations" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-types/voice-call-properties/", "destination": "/ai-for-service/automation/agent-flows#voice-call-properties" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-types/dynamic-intent-node/", "destination": "/ai-for-service/automation/dialogs/node-types/dynamic-intent-node" },
{ "source": "/ai-for-service/app-settings/integrations/agents/configuring-the-salesforce-agent/", "destination": "/ai-for-service/integrations/agents/configuring-the-salesforce-agent" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/using-the-dialog-builder-tool/", "destination": "/ai-for-service/flows#dialog-builder" },
{ "source": "/ai-for-service/contactcenter/campaigns/campaign-management/voice-campaigns/", "destination": "/ai-for-service/contact-center/campaigns#voice-campaigns" },
{ "source": "/ai-for-service/deploy/bot-management/", "destination": "/ai-for-service/administration/bot-management" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-types/working-with-the-web-hook-node/", "destination": "/ai-for-service/automation/dialogs/node-types/web-hook-node" },
{ "source": "/ai-for-service/app-settings/integrations/agents/configuring-the-genesys-agent/", "destination": "/ai-for-service/integrations/agents/configuring-the-genesys-agent" },
{ "source": "/ai-for-work/custom-agents/api-agents/", "destination": "/ai-for-work/custom-agents#api-agents" },
{ "source": "/ai-for-work/custom-agents/agentic-flows/", "destination": "/ai-for-work/custom-agents#agentic-flow-agents" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/prompt-editor/", "destination": "/ai-for-service/automation/dialogs/prompt-editor" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-types/working-with-the-message-nodes/", "destination": "/ai-for-service/automation/dialogs/node-types/message-nodes#message-nodes" },
{ "source": "/ai-for-service/manage-assistant/plan-and-usage/trial-overview/", "destination": "/ai-for-service/getting-started#trial-plans" },
{ "source": "/ai-for-service/analytics/contact-center/interactions/", "destination": "/ai-for-service/analytics/overview/conversations" },
{ "source": "/ai-for-work/analytics/overview", "destination": "/ai-for-work/analytics" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-types/working-with-the-searchai-node/", "destination": "/ai-for-service/automation/dialogs/node-types/searchai-node" },
{ "source": "/ai-for-service/generative-ai-tools/configure-llm-integration/", "destination": "/ai-for-service/generative-ai-tools/llm-integration" },
{ "source": "/ai-for-service/contactcenter/campaigns/templates/sms-templates/", "destination": "/ai-for-service/contact-center/campaigns#sms-templates" },
{ "source": "/ai-for-service/contactcenter/flows-and-routing/debugging-and-troubleshooting/", "destination": "/ai-for-service/contact-center/flows-and-routing/conditional-and-waiting-flows#debug-and-troubleshoot" },
{ "source": "/ai-for-process/workflows/workflow-builder/types-of-nodes/human-node/", "destination": "/ai-for-process/workflows/workflow-builder" },
{ "source": "/ai-for-service/automation/use-cases/dialogs/node-types/working-with-the-user-intent-node/", "destination": "/ai-for-service/automation/dialogs/node-types/user-intent-node" },
{ "source": "/ai-for-service/getting-started/outbound-ip-address/", "destination": "/ai-for-service/getting-started#outbound-ip-addresses" },
{ "source": "/ai-for-process/workflows/workflow-builder/types-of-nodes/ai-node/", "destination": "/ai-for-process/workflows/workflow-builder" },
{ "source": "/ai-for-service/automation/use-cases/small-talk/", "destination": "/ai-for-service/automation/intelligence/conversation-management#small-talk" },
{ "source": "/ai-for-work/audit-log/audit-log-management/", "destination": "/ai-for-work/administration/audit-log" },
{ "source": "/ai-for-service/searchai/chunk-browser/", "destination": "/ai-for-service/searchai/index-configuration#content-browser" },
{ "source": "/ai-for-service/searchai/content-sources/connectors/connector-directory/", "destination": "/ai-for-service/searchai/content-sources#supported-connectors" },
{ "source": "/ai-for-service/searchai/content-sources/connectors/custom-connector/", "destination": "/ai-for-service/searchai/content-sources#custom-connector" },
{ "source": "/ai-for-work/Administration/workspace", "destination": "/ai-for-work/administration/account-and-workspace#workspaces" },
{ "source": "/ai-for-work/Administration/overview", "destination": "/ai-for-work/administration/account-and-workspace" },
{ "source": "/ai-for-work/Administration", "destination": "/ai-for-work/administration/account-and-workspace" },
{ "source": "/ai-for-work/security/saml", "destination": "/ai-for-work/administration/security-and-control#saml" },
{ "source": "/ai-for-work/security/oidc", "destination": "/ai-for-work/administration/security-and-control#openid-connect-oidc" },
{ "source": "/ai-for-work/security/sso-overview", "destination": "/ai-for-work/administration/security-and-control#single-sign-on-sso" },
{ "source": "/ai-for-work/channels/microsoft-teams", "destination": "/ai-for-work/channels#microsoft-teams" },
{ "source": "/ai-for-work/security/data-settings", "destination": "/ai-for-work/administration/security-and-control#data-settings" },
{ "source": "/ai-for-work/security/enterprise-encryption", "destination": "/ai-for-work/administration/security-and-control#enterprise-encryption" },
{ "source": "/ai-for-work/security/service-accounts", "destination": "/ai-for-work/administration/security-and-control#service-accounts" },
{ "source": "/ai-for-work/analytics/data-view", "destination": "/ai-for-work/analytics#data-view" },
{ "source": "/ai-for-work/analytics/dashboard-view", "destination": "/ai-for-work/analytics#dashboard-view" },
{ "source": "/ai-for-work/custom-agents/alert-task", "destination": "/ai-for-work/custom-agents/agent-management#handling-alert-tasks" },
{ "source": "/ai-for-work/assist-configuration/orchestration-settings", "destination": "/ai-for-work/assistant-configurations#orchestration-settings" },
{ "source": "/ai-for-work/llm-configuration/business-rules", "destination": "/ai-for-work/llm-configuration#business-rules" },
{ "source": "/ai-for-work/llm-configuration/general-purpose", "destination": "/ai-for-work/llm-configuration#general-purpose-llms" },
{ "source": "/ai-for-work/user-management/user-enrollments", "destination": "/ai-for-work/administration/user-management#user-enrollment" },
{ "source": "/ai-for-work/custom-agents/prompt-agents", "destination": "/ai-for-work/custom-agents#prompt-agents" },
{ "source": "/ai-for-work/custom-agents/work-agent", "destination": "/ai-for-work/custom-agents/enterprise-knowledge#work-agentic-search" },
{ "source": "/ai-for-service/searchai/introduction-to-answers", "destination": "/ai-for-service/searchai" },
{ "source": "/ai-for-service/searchai/answer-generation", "destination": "/ai-for-service/searchai/retrieval-answer-configuration#answer-generation" },
{ "source": "/ai-for-service/searchai/howto/use-images-for-answer-generation", "destination": "/ai-for-service/searchai/howto/image-based-document-extraction" },
{ "source": "/ai-for-service/searchai/retrieval", "destination": "/ai-for-service/searchai/retrieval-answer-configuration" },
{ "source": "/ai-for-service/searchai/content-sources/directory", "destination": "/ai-for-service/searchai/content-sources#documents" },
{ "source": "/ai-for-service/searchai/feedback", "destination": "/ai-for-service/searchai/tips-and-faqs#user-feedback-handling" },
{ "source": "/ai-for-process/getting-started/accessing-ai-for-process", "destination": "/ai-for-process/getting-started" },
{ "source": "/ai-for-process/workflows/deploy-a-workflow", "destination": "/ai-for-process/workflows/overview#deploy-a-workflow" },
{ "source": "/ai-for-process/models/open-source-models/importing-models", "destination": "/ai-for-process/models/open-source-models#import-a-model" },
{ "source": "/ai-for-process/prompts/about-prompt-studio", "destination": "/ai-for-process/prompts" },
{ "source": "/ai-for-process/prompts/advanced-features", "destination": "/ai-for-process/prompts#advanced-features" },
{ "source": "/ai-for-process/settings/billing/managing-usage-limits", "destination": "/ai-for-process/settings/billing-and-usage" },
{ "source": "/ai-for-process/settings/security-and-control/api-scopes", "destination": "/ai-for-process/settings/security-control#implement-api-scoping" },
{ "source": "/ai-for-process/workflows/workflow-builder/types-of-nodes/docsearch-node", "destination": "/ai-for-process/nodes#docsearch-node" },
{ "source": "/ai-for-process/models/fine-tune-models/view-the-generated-api-endpoint", "destination": "/ai-for-process/models/fine-tuned-model#view-the-api-endpoint" },
{ "source": "/ai-for-process/workflows/workflow-builder/types-of-nodes/text-to-text-node", "destination": "/ai-for-process/nodes#text-to-text" },
{ "source": "/ai-for-process/settings/integrations/enable-hugging-face", "destination": "/ai-for-process/settings/integrations" },
{ "source": "/ai-for-process/workflows/workflow-builder/perform-other-actions-on-the-flow-builder/run-the-flow", "destination": "/ai-for-process/workflows/workflow-builder#test-a-workflow" },
{ "source": "/ai-for-process/settings/user-management/users", "destination": "/ai-for-process/settings/user-management" },
{ "source": "/ai-for-process/workflows/inbox", "destination": "/ai-for-process/inbox#inbox-for-human-in-the-loop-requests" },
{ "source": "/ai-for-process/settings/security-and-control/authorization-profile", "destination": "/ai-for-process/settings/security-control#authorization-profiles" },
{ "source": "/ai-for-process/workflows/workflow-builder/types-of-nodes/start-node", "destination": "/ai-for-process/nodes#start-node" },
{ "source": "/ai-for-process/settings/monitoring/analytics/model-traces", "destination": "/ai-for-process/settings/monitoring/model-traces" },
{ "source": "/ai-for-service/release-notes/11.x/automation-ai", "destination": "/ai-for-service/release-notes/automation-ai" },
{ "source": "/ai-for-service/release-notes/11.x/platform-services/", "destination": "/ai-for-service/release-notes/platform-services" },
{ "source": "/ai-for-service/release-notes/11.x/voice-gateway/", "destination": "/ai-for-service/release-notes/voice-gateway" },
{ "source": "/ai-for-service/release-notes/11.x/search-ai/", "destination": "/ai-for-service/release-notes/search-ai" },
{ "source": "/ai-for-service/release-notes/11.x/contact-center-ai/", "destination": "/ai-for-service/release-notes/contact-center-ai" },
{ "source": "/ai-for-service/release-notes/11.x/agent-ai/", "destination": "/ai-for-service/release-notes/agent-ai" },
{ "source": "/ai-for-service/release-notes/11.x/quality-ai/", "destination": "/ai-for-service/release-notes/quality-ai" },
{ "source": "/ai-for-service/home/", "destination": "/ai-for-service/index" },
{ "source": "/ai-for-service/home", "destination": "/ai-for-service/index"},
{ "source": "/ai-for-work/home", "destination": "/ai-for-work/index" },
{ "source": "/ai-for-process/home", "destination": "/ai-for-process/index" },
{ "source": "/ai-for-work/home/", "destination": "/ai-for-work/index" },
{ "source": "/ai-for-process/home/", "destination": "/ai-for-process/index" },
{ "source": "/ai-for-service/automation/about-automation-ai/", "destination": "/ai-for-service/automationai" },
{ "source": "/ai-for-service/contactcenter/about-contact-center-ai", "destination": "/ai-for-service/contact-center" },
{ "source": "/ai-for-service/searchai/about-search-ai", "destination": "/ai-for-service/searchai" },
{ "source": "/ai-for-service/app-settings/integrations/about-integration/", "destination": "/ai-for-service/integrations/overview" },
{ "source": "/ai-for-service/getting-started/about-xo-platform", "destination": "/ai-for-service/index" },
{ "source": "/ai-for-service/agentai/about-agent-ai", "destination": "/ai-for-service/agent-ai" },
{ "source": "/ai-for-service/analytics/introduction/", "destination": "/ai-for-service/analytics/overview" },
{ "source": "/ai-for-service/automation/agent-node/working-with-agent-node/", "destination": "/ai-for-service/automation/agent-node" },
{ "source": "/ai-for-service/quality-ai/about-quality-ai/", "destination": "/ai-for-service/quality" },
{ "source": "/ai-for-service/automation/dialog-gpt-based-orchestration/", "destination": "/ai-for-service/automation/dialoggpt" },
{ "source": "/ai-for-service/getting-started/whats-new-in-xo-platform/", "destination": "/ai-for-service/getting-started/benefits-xo11" },
{ "source": "/ai-for-service/generative-ai-tools/introduction/", "destination": "/ai-for-service/generative-ai-tools/overview" },
{ "source": "/ai-for-service/automation/agent-node/prompt-setup/", "destination": "/ai-for-service/automation/agent-node#prompt-setup" },
{ "source": "/ai-for-service/getting-started/dialoggpt-app-setup-guide/", "destination": "/ai-for-service/automationai#build-an-ai-agent" },
{ "source": "/ai-for-service/generative-ai-tools/dgpt-conversation-orchestration/", "destination": "/ai-for-service/automation/dialoggpt#configuration" },
{ "source": "/ai-for-service/manage-assistant/plan-and-usage/usage-plans/", "destination": "/ai-for-service/manage-assistant/plan-and-usage/billing-and-payments" },
{ "source": "/ai-for-service/searchai/setup-search-ai/", "destination": "/ai-for-service/searchai/index-configuration" },
{ "source": "/ai-for-service/searchai/content-sources/web-crawl/", "destination": "/ai-for-service/searchai/content-sources" },
{ "source": "/ai-for-work/getting-started/introduction/", "destination": "/ai-for-work/index" },
{ "source": "/ai-for-service/contactcenter/agent-and-supervisors/agent-management/agent-management/", "destination": "/ai-for-service/contact-center/supervisor" },
{ "source": "/ai-for-service/automation/intelligence/context-object/", "destination": "/ai-for-service/automation/intelligence/context-management" },
{ "source": "/ai-for-service/automation/natural-language/llm-and-generative-ai/", "destination": "/ai-for-service/generative-ai-tools/overview" },
{ "source": "/ai-for-service/generative-ai-tools/llm-tokens/", "destination": "/ai-for-service/generative-ai-tools/overview#free-tokens" },
{ "source": "/ai-for-service/generative-ai-tools/models-library/", "destination": "/ai-for-service/generative-ai-tools/llm-integration" },
{ "source": "/ai-for-service/automation/use-cases/using-session-and-context-variables/", "destination": "/ai-for-service/automation/testing/playground#session-context-and-variables" },
{ "source": "/ai-for-service/contactcenter/routing/queues/queue-management/", "destination": "/ai-for-service/contact-center/routing-queues-skills" },
{ "source": "/ai-for-service/flows/introduction-to-flows/", "destination": "/ai-for-service/flows/create-and-manage-flows" },
{ "source": "/ai-for-service/searchai/content-sources/introduction/", "destination": "/ai-for-service/searchai/content-sources" },
{ "source": "/ai-for-service/console/conversation-tray/", "destination": "/ai-for-service/contact-center/agent-console#conversation-tray" },
{ "source": "/ai-for-service/searchai/content-extraction/extraction/", "destination": "/ai-for-service/searchai/index-configuration" },
{ "source": "/ai-for-service/searchai/search-results", "destination": "/ai-for-service/searchai/retrieval-answer-configuration#search-results" },
{ "source": "/ai-for-service/contact-center/configurations/configurations", "destination": "/ai-for-service/contact-center/configurations/operational-configurations" },
{ "source": "/ai-for-service/agentai/integration/amazon-connect-voice-automation/amazon-connect-integration-using-voice-automation", "destination": "/ai-for-service/contact-center/integrations/amazon-connect-voice-automation/amazon-connect-integration-using-voice-automation"},
{ "source": "/ai-for-service/administration/adminconsole", "destination": "/ai-for-service/administration/overview" },
{ "source": "/ai-for-service/administration/dashboard-bac", "destination": "/ai-for-service/administration/dashboard" },
{ "source": "/ai-for-service/administration/user-management/managing-your-users", "destination": "/ai-for-service/administration/user-management" },
{ "source": "/ai-for-service/administration/user-management/managing-your-groups", "destination": "/ai-for-service/administration/groups-management" },
{ "source": "/ai-for-service/administration/user-management/role-management", "destination": "/ai-for-service/administration/role-management" },
{ "source": "/ai-for-service/administration/enrollment/synchronizing-users-from-active-directory", "destination": "/ai-for-service/administration/directory-synchronization" },
{ "source": "/ai-for-service/administration/security-and-control/using-single-sign-on", "destination": "/ai-for-service/administration/single-sign-on" },
{ "source": "/ai-for-service/administration/security-and-control/two-factor-authentication-for-platform-access", "destination": "/ai-for-service/administration/two-factor-authentication" },
{ "source": "/ai-for-service/administration/security-and-control/enterprise-key", "destination": "/ai-for-service/administration/enterprise-key" },
{ "source": "/ai-for-service/administration/security-and-control/byok-aws-integration", "destination": "/ai-for-service/administration/byok-aws-integration" },
{ "source": "/ai-for-service/administration/security-and-control/byok-azure-integration", "destination": "/ai-for-service/administration/byok-azure-integration" },
{ "source": "/ai-for-service/administration/security-and-control/api-scopes", "destination": "/ai-for-service/administration/api-scopes" },
{ "source": "/ai-for-service/administration/security-and-control/security-settings", "destination": "/ai-for-service/administration/security-settings" },
{ "source": "/ai-for-service/administration/bot-management", "destination": "/ai-for-service/administration/apps-management" },
{ "source": "/ai-for-service/administration/analytics", "destination": "/ai-for-service/administration/overview" },
{ "source": "/ai-for-service/administration/user-management/users-module-overview", "destination": "/ai-for-service/administration/overview" },
{ "source": "/ai-for-service/administration/enrollment/enrolling-a-new-user", "destination": "/ai-for-service/administration/overview" },
{ "source": "/ai-for-service/administration/enrollment/enrolling-many-users", "destination": "/ai-for-service/administration/overview" },
{ "source": "/ai-for-service/administration/enrollment/importing-users-and-user-data", "destination": "/ai-for-service/administration/overview" },
{ "source": "/agent-platform/api-reference/:slug*", "destination": "/agent-platform/index"},
{ "source": "/xo/searchai/content-sources/connectors/:slug*", "destination": "/ai-for-service/searchai/connectors/:slug*"},
{ "source": "/ai-for-service/searchai/content-sources/connectors/:slug*", "destination": "/ai-for-service/searchai/connectors/:slug*"},
{ "source": "/agent-platform/getting-started/tutorials/:slug*", "destination": "/agent-platform/v1/getting-started#quick-start-video-tutorials" },
{ "source": "/ai-for-service/automation/use-cases/digital-skills/:slug*", "destination": "/ai-for-service/index" }
],
"footer":
{
"socials":
{
"github": "https://github.com/Koredotcom",
"linkedin": "https://www.linkedin.com/company/kore-inc",
"facebook": "https://www.facebook.com/KoreDotAI"
},
"links":
[
{
"header": " ",
"items":
[
{
"label": "Acceptable Use",
"href": "https://www.kore.ai/acceptable-use-policy/"
},
{
"label": "Terms of Service",
"href": "https://www.kore.ai/terms-of-service/"
}
]