-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_old.html
2266 lines (2247 loc) · 257 KB
/
index_old.html
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="preconnect" href="https://js.hs-scripts.com/">
<link rel="preconnect" href="https://www.googletagmanager.com/">
<link rel="preload" href="/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2"
as="font" type="font/woff2" crossorigin class="nitro-font-preload">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
<title>E.D.D.I - Open Source Conversational AI Middleware</title>
<meta name="description"
content="EDDI: A cutting-edge Open Source Conversational AI middleware, focused on prompt and conversation management, transforming workflows and enhancing communication with powerful ChatGPT and conversational API integrations, while facilitating GDPR compliance through secure conversation storage.">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:title" content="E.D.D.I - Open Source Conversational AI Middleware">
<meta property="og:description"
content="EDDI: A cutting-edge Open Source Conversational AI middleware, focused on prompt and conversation management, transforming workflows and enhancing communication with powerful ChatGPT and conversational API integrations, while facilitating GDPR compliance through secure conversation storage.">
<meta property="og:url" content="/">
<meta property="og:site_name" content="E.D.D.I">
<meta property="article:publisher" content="https://www.facebook.com/eddilabsai/">
<meta property="article:modified_time" content="2021-07-21T12:57:44+00:00">
<meta property="og:image" content="/wp-content/uploads/2020/12/EDDI-Logo-Blue_1.png">
<meta property="og:image:width" content="1261">
<meta property="og:image:height" content="401">
<meta property="og:image:type" content="image/png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@eddi_labs">
<meta name="twitter:label1" content="Est. reading time">
<meta name="twitter:data1" content="5 minutes">
<meta name="msapplication-TileImage" content="/wp-content/uploads/2020/12/cropped-EDDI-Logo-Blue_1-270x270.png">
<link rel="alternate" type="application/json" href="/wp-json/wp/v2/pages/2401">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="/wp-includes/wlwmanifest.xml">
<link rel="shortlink" href="/">
<link rel="alternate" type="application/json+oembed" href="/wp-json/oembed/1.0/embed?url=https%3A%2F%2F%2F">
<link rel="alternate" type="text/xml+oembed" href="/wp-json/oembed/1.0/embed?url=https%3A%2F%2F%2F&format=xml">
</head>
<body data-cmplz="1" itemtype="https://schema.org/WebPage" itemscope="itemscope"
class="home page-template-default page page-id-2401 wp-custom-logo ehf-header ehf-footer ehf-template-astra ehf-stylesheet-astra ast-desktop ast-page-builder-template ast-no-sidebar astra-3.8.5 ast-header-custom-item-inside group-blog ast-single-post ast-inherit-site-logo-transparent elementor-default elementor-kit-5 elementor-page elementor-page-2401">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
style="visibility:hidden;position:absolute;left:-9999px;overflow:hidden;">
<defs>
<filter id="wp-duotone-dark-grayscale">
<fecolormatrix color-interpolation-filters="sRGB" type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 ">
<fecomponenttransfer color-interpolation-filters="sRGB">
<fefuncr type="table" tablevalues="0 0.49803921568627">
<fefuncg type="table" tablevalues="0 0.49803921568627">
<fefuncb type="table" tablevalues="0 0.49803921568627">
<fefunca type="table" tablevalues="1 1"></fefunca>
</fefuncb>
</fefuncg>
</fefuncr>
</fecomponenttransfer>
<fecomposite in2="SourceGraphic" operator="in"></fecomposite>
</fecolormatrix>
</filter>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
style="visibility:hidden;position:absolute;left:-9999px;overflow:hidden;">
<defs>
<filter id="wp-duotone-grayscale">
<fecolormatrix color-interpolation-filters="sRGB" type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 ">
<fecomponenttransfer color-interpolation-filters="sRGB">
<fefuncr type="table" tablevalues="0 1">
<fefuncg type="table" tablevalues="0 1">
<fefuncb type="table" tablevalues="0 1">
<fefunca type="table" tablevalues="1 1"></fefunca>
</fefuncb>
</fefuncg>
</fefuncr>
</fecomponenttransfer>
<fecomposite in2="SourceGraphic" operator="in"></fecomposite>
</fecolormatrix>
</filter>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
style="visibility:hidden;position:absolute;left:-9999px;overflow:hidden;">
<defs>
<filter id="wp-duotone-purple-yellow">
<fecolormatrix color-interpolation-filters="sRGB" type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 ">
<fecomponenttransfer color-interpolation-filters="sRGB">
<fefuncr type="table" tablevalues="0.54901960784314 0.98823529411765">
<fefuncg type="table" tablevalues="0 1">
<fefuncb type="table" tablevalues="0.71764705882353 0.25490196078431">
<fefunca type="table" tablevalues="1 1"></fefunca>
</fefuncb>
</fefuncg>
</fefuncr>
</fecomponenttransfer>
<fecomposite in2="SourceGraphic" operator="in"></fecomposite>
</fecolormatrix>
</filter>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
style="visibility:hidden;position:absolute;left:-9999px;overflow:hidden;">
<defs>
<filter id="wp-duotone-blue-red">
<fecolormatrix color-interpolation-filters="sRGB" type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 ">
<fecomponenttransfer color-interpolation-filters="sRGB">
<fefuncr type="table" tablevalues="0 1">
<fefuncg type="table" tablevalues="0 0.27843137254902">
<fefuncb type="table" tablevalues="0.5921568627451 0.27843137254902">
<fefunca type="table" tablevalues="1 1"></fefunca>
</fefuncb>
</fefuncg>
</fefuncr>
</fecomponenttransfer>
<fecomposite in2="SourceGraphic" operator="in"></fecomposite>
</fecolormatrix>
</filter>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
style="visibility:hidden;position:absolute;left:-9999px;overflow:hidden;">
<defs>
<filter id="wp-duotone-midnight">
<fecolormatrix color-interpolation-filters="sRGB" type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 ">
<fecomponenttransfer color-interpolation-filters="sRGB">
<fefuncr type="table" tablevalues="0 0">
<fefuncg type="table" tablevalues="0 0.64705882352941">
<fefuncb type="table" tablevalues="0 1">
<fefunca type="table" tablevalues="1 1"></fefunca>
</fefuncb>
</fefuncg>
</fefuncr>
</fecomponenttransfer>
<fecomposite in2="SourceGraphic" operator="in"></fecomposite>
</fecolormatrix>
</filter>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
style="visibility:hidden;position:absolute;left:-9999px;overflow:hidden;">
<defs>
<filter id="wp-duotone-magenta-yellow">
<fecolormatrix color-interpolation-filters="sRGB" type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 ">
<fecomponenttransfer color-interpolation-filters="sRGB">
<fefuncr type="table" tablevalues="0.78039215686275 1">
<fefuncg type="table" tablevalues="0 0.94901960784314">
<fefuncb type="table" tablevalues="0.35294117647059 0.47058823529412">
<fefunca type="table" tablevalues="1 1"></fefunca>
</fefuncb>
</fefuncg>
</fefuncr>
</fecomponenttransfer>
<fecomposite in2="SourceGraphic" operator="in"></fecomposite>
</fecolormatrix>
</filter>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
style="visibility:hidden;position:absolute;left:-9999px;overflow:hidden;">
<defs>
<filter id="wp-duotone-purple-green">
<fecolormatrix color-interpolation-filters="sRGB" type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 ">
<fecomponenttransfer color-interpolation-filters="sRGB">
<fefuncr type="table" tablevalues="0.65098039215686 0.40392156862745">
<fefuncg type="table" tablevalues="0 1">
<fefuncb type="table" tablevalues="0.44705882352941 0.4">
<fefunca type="table" tablevalues="1 1"></fefunca>
</fefuncb>
</fefuncg>
</fefuncr>
</fecomponenttransfer>
<fecomposite in2="SourceGraphic" operator="in"></fecomposite>
</fecolormatrix>
</filter>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
style="visibility:hidden;position:absolute;left:-9999px;overflow:hidden;">
<defs>
<filter id="wp-duotone-blue-orange">
<fecolormatrix color-interpolation-filters="sRGB" type="matrix"
values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 ">
<fecomponenttransfer color-interpolation-filters="sRGB">
<fefuncr type="table" tablevalues="0.098039215686275 1">
<fefuncg type="table" tablevalues="0 0.66274509803922">
<fefuncb type="table" tablevalues="0.84705882352941 0.41960784313725">
<fefunca type="table" tablevalues="1 1"></fefunca>
</fefuncb>
</fefuncg>
</fefuncr>
</fecomponenttransfer>
<fecomposite in2="SourceGraphic" operator="in"></fecomposite>
</fecolormatrix>
</filter>
</defs>
</svg>
<a class="skip-link screen-reader-text" href="#content" role="link" title="Skip to content"> Skip to content</a>
<div class="hfeed site" id="page">
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader"><p class="main-title bhf-hidden"
itemprop="headline"><a
href="/" title="E.D.D.I" rel="home">E.D.D.I</a></p>
<div data-elementor-type="wp-post" data-elementor-id="2564" class="elementor elementor-2564 elementor-658">
<div class="elementor-inner">
<div class="elementor-section-wrap">
<section
class="elementor-section elementor-top-section elementor-element elementor-element-b0305c3 elementor-section-boxed elementor-section-height-default elementor-section-height-default"
data-id="b0305c3" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-1c21ff7"
data-id="1c21ff7" data-element_type="column">
<div class="elementor-column-wrap">
<div class="elementor-widget-wrap"></div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-47c3920"
data-id="47c3920" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-d54253f elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-shortcode"
data-id="d54253f" data-element_type="widget"
data-widget_type="shortcode.default">
<div class="elementor-widget-container">
<div class="elementor-shortcode">
<div class="wpml-ls-statics-shortcode_actions wpml-ls wpml-ls-legacy-dropdown js-wpml-ls-legacy-dropdown">
<ul>
<li tabindex="0"
class="wpml-ls-slot-shortcode_actions wpml-ls-item wpml-ls-item-en wpml-ls-current-language wpml-ls-last-item wpml-ls-item-legacy-dropdown">
<a href="#"
class="js-wpml-ls-item-toggle wpml-ls-item-toggle">
<a href="/de/" class="wpml-ls-link"> <span
class="wpml-ls-native" lang="de">Deutsch</span></a></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-id="2425f55" data-element_type="section" id="backtotop"
class="elementor-section elementor-top-section elementor-element elementor-element-2425f55 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default nitro-stretch"
data-settings='{"stretch_section":"section-stretched"}'>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-6ef4324"
data-id="6ef4324" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-0217110 elementor-widget elementor-widget-site-logo"
data-id="0217110" data-element_type="widget"
data-settings="{"align":"left","width":{"unit":"%","size":65,"sizes":[]},"width_mobile":{"unit":"%","size":48,"sizes":[]},"width_tablet":{"unit":"%","size":18,"sizes":[]},"space":{"unit":"%","size":"","sizes":[]},"space_tablet":{"unit":"%","size":"","sizes":[]},"space_mobile":{"unit":"%","size":"","sizes":[]},"image_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_space":{"unit":"px","size":0,"sizes":[]},"caption_space_tablet":{"unit":"px","size":"","sizes":[]},"caption_space_mobile":{"unit":"px","size":"","sizes":[]}}"
data-widget_type="site-logo.default">
<div class="elementor-widget-container">
<div class="hfe-site-logo"><a data-elementor-open-lightbox=""
class="elementor-clickable" href="/">
<div class="hfe-site-logo-set">
<div class="hfe-site-logo-container"><img alt=""
nitro-lazy-src="/wp-content/uploads/2020/12/EDDI-Logo-White.svg"
class="hfe-site-logo-img elementor-animation- nitro-lazy"
nitro-lazy-empty
id="MTk5OjE0MA==-1"
src="data:image/svg+xml;nitro-empty-id=MTk5OjE0MA==-1;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTI1OSA0MDAiIHdpZHRoPSIxMjU5IiBoZWlnaHQ9IjQwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=">
</div>
</div>
</a></div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-c5f43b1"
data-id="c5f43b1" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<section
class="elementor-section elementor-inner-section elementor-element elementor-element-cd24c93 elementor-section-content-middle elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default"
data-id="cd24c93" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-d64d9c7"
data-id="d64d9c7" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-ad69b80 elementor-nav-menu__align-justify elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu"
data-id="ad69b80" data-element_type="widget"
data-settings="{"submenu_icon":{"value":"<i class=\"fas fa-chevron-down\"><\/i>","library":"fa-solid"},"layout":"horizontal","toggle":"burger"}"
data-widget_type="nav-menu.default">
<div class="elementor-widget-container">
<nav migration_allowed="1" migrated="0"
class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none">
<ul id="menu-1-ad69b80"
class="elementor-nav-menu">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2544">
<a href="#"
class="elementor-item elementor-item-anchor menu-link">Use
Cases</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2546">
<a href="/communicationprocesses/"
class="elementor-sub-item menu-link">Communication-processes</a>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2545">
<a href="/work-processes/"
class="elementor-sub-item menu-link">Workflow-processes</a>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2547">
<a href="/collaboration-in-educational-institutions/"
class="elementor-sub-item menu-link">Collaboration-processes</a>
</li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2548">
<a href="/pricing/"
class="elementor-item menu-link">Pricing</a>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2549">
<a href="/features/"
class="elementor-item menu-link">Features</a>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2550">
<a href="/blog/"
class="elementor-item menu-link">Resources</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2551">
<a href="/blog/#blog"
class="elementor-sub-item elementor-item-anchor menu-link">Blog</a>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2552">
<a href="/chatbot-technology/"
class="elementor-sub-item menu-link">Chatbot-technology</a>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2553">
<a href="/blog/#dokumentation"
class="elementor-sub-item elementor-item-anchor menu-link">Documentation</a>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2554">
<a href="/blog/#dokumentation"
class="elementor-sub-item elementor-item-anchor menu-link">Issues</a>
</li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2555">
<a href="/contact/"
class="elementor-item menu-link">Contact</a>
</li>
</ul>
</nav>
<div class="elementor-menu-toggle"
role="button" tabindex="0"
aria-label="Menu Toggle"
aria-expanded="false"><i
aria-hidden="true"
role="presentation"
class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i
aria-hidden="true"
role="presentation"
class="elementor-menu-toggle__icon--close eicon-close"></i>
<span class="elementor-screen-only">Menu</span>
</div>
<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container"
aria-hidden="true">
<ul id="menu-2-ad69b80"
class="elementor-nav-menu">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2544">
<a href="#"
class="elementor-item elementor-item-anchor menu-link"
tabindex="-1">Use Cases</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2546">
<a href="/communicationprocesses/"
class="elementor-sub-item menu-link"
tabindex="-1">Communication-processes</a>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2545">
<a href="/work-processes/"
class="elementor-sub-item menu-link"
tabindex="-1">Workflow-processes</a>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2547">
<a href="/collaboration-in-educational-institutions/"
class="elementor-sub-item menu-link"
tabindex="-1">Collaboration-processes</a>
</li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2548">
<a href="/pricing/"
class="elementor-item menu-link"
tabindex="-1">Pricing</a>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2549">
<a href="/features/"
class="elementor-item menu-link"
tabindex="-1">Features</a>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2550">
<a href="/blog/"
class="elementor-item menu-link"
tabindex="-1">Resources</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2551">
<a href="/blog/#blog"
class="elementor-sub-item elementor-item-anchor menu-link"
tabindex="-1">Blog</a>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2552">
<a href="/chatbot-technology/"
class="elementor-sub-item menu-link"
tabindex="-1">Chatbot-technology</a>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2553">
<a href="/blog/#dokumentation"
class="elementor-sub-item elementor-item-anchor menu-link"
tabindex="-1">Documentation</a>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2554">
<a href="/blog/#dokumentation"
class="elementor-sub-item elementor-item-anchor menu-link"
tabindex="-1">Issues</a>
</li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2555">
<a href="/contact/"
class="elementor-item menu-link"
tabindex="-1">Contact</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-944a3b1 elementor-hidden-tablet elementor-hidden-phone"
data-id="944a3b1" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-9aa77a7 elementor-align-left elementor-hidden-tablet elementor-widget elementor-widget-button"
data-id="9aa77a7" data-element_type="widget"
data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper"><a
href="/eddi-get-started/"
target="_blank"
class="elementor-button-link elementor-button elementor-size-sm elementor-animation-shrink"
role="button"> <span
class="elementor-button-content-wrapper"> <span
class="elementor-button-text">Get started</span> </span>
</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</header>
<div id="content" class="site-content">
<div class="ast-container">
<div id="primary" class="content-area primary">
<main id="main" class="site-main">
<article class="post-2401 page type-page status-publish ast-article-single" id="post-2401"
itemtype="https://schema.org/CreativeWork" itemscope="itemscope">
<header class="entry-header ast-header-without-markup"></header>
<div class="entry-content clear" itemprop="text">
<div data-elementor-type="wp-page" data-elementor-id="2401"
class="elementor elementor-2401 elementor-7">
<div class="elementor-inner">
<div class="elementor-section-wrap">
<section
class="elementor-section elementor-top-section elementor-element elementor-element-89f25de elementor-section-content-top elementor-section-boxed elementor-section-height-default elementor-section-height-default"
data-id="89f25de" data-element_type="section"
data-settings="{"background_background":"classic"}">
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-740987f"
data-id="740987f" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-bd4a85b elementor-widget elementor-widget-image"
data-id="bd4a85b" data-element_type="widget"
data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image"><img
decoding="async" width="300" height="95"
alt=""
sizes="(max-width: 300px) 100vw, 300px"
class="attachment-medium size-medium nitro-lazy"
nitro-lazy-empty id="MzMxOjUwMQ==-1"
src="data:image/svg+xml;nitro-empty-id=MzMxOjUwMQ==-1;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMzAwIDk1IiB3aWR0aD0iMzAwIiBoZWlnaHQ9Ijk1IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==">
</div>
</div>
</div>
<div class="elementor-element elementor-element-37af17fa elementor-widget elementor-widget-heading"
data-id="37af17fa" data-element_type="widget"
data-widget_type="heading.default">
<div class="elementor-widget-container"><h1
class="elementor-heading-title elementor-size-default">
Enhanced Dialog Driven Interface</h1></div>
</div>
<div class="elementor-element elementor-element-6f464ae elementor-widget elementor-widget-heading"
data-id="6f464ae" data-element_type="widget"
data-widget_type="heading.default">
<div class="elementor-widget-container"><h2
class="elementor-heading-title elementor-size-default">
Transform Workflows & Elevate Collaboration
through ChatGPT & Conversational APIs </h2>
</div>
</div>
<section
class="elementor-section elementor-inner-section elementor-element elementor-element-7133887 elementor-section-boxed elementor-section-height-default elementor-section-height-default"
data-id="7133887" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-afd4249"
data-id="afd4249"
data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-472705c elementor-mobile-align-right elementor-tablet-align-right elementor-widget elementor-widget-button"
data-id="472705c"
data-element_type="widget"
data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="#usecase"
class="elementor-button-link elementor-button elementor-size-lg elementor-animation-shrink"
role="button">
<span class="elementor-button-content-wrapper"> <span
class="elementor-button-text">USE CASES</span> </span>
</a></div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0ffa67a"
data-id="0ffa67a"
data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-6b89b84 elementor-mobile-align-left elementor-tablet-align-left elementor-widget elementor-widget-button"
data-id="6b89b84"
data-element_type="widget"
data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="/contact/"
class="elementor-button-link elementor-button elementor-size-lg elementor-animation-shrink"
role="button">
<span class="elementor-button-content-wrapper"> <span
class="elementor-button-text">CONTACT</span> </span>
</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-7256891"
data-id="7256891" data-element_type="column"
data-settings="{"background_background":"classic"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-background-overlay"></div>
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-0f96ca4 elementor-widget elementor-widget-image"
data-id="0f96ca4" data-element_type="widget"
data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image"><img
decoding="async" width="1024"
height="682"
alt="artificial intelligence"
sizes="(max-width: 1024px) 100vw, 1024px"
nitro-lazy-srcset="/wp-content/uploads/imageedit_12_4527144306-1024x682.jpg 1024w, /wp-content/uploads/imageedit_12_4527144306-300x200.jpg 300w, /wp-content/uploads/imageedit_12_4527144306-768x512.jpg 768w, /wp-content/uploads/imageedit_12_4527144306-1536x1024.jpg 1536w, /wp-content/uploads/imageedit_12_4527144306.jpg 1700w"
nitro-lazy-src="/wp-content/uploads/imageedit_12_4527144306-1024x682.jpg"
class="attachment-large size-large nitro-lazy"
nitro-lazy-empty id="MzkyOjY4NA==-1"
src="data:image/svg+xml;nitro-empty-id=MzkyOjY4NA==-1;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTAyNCA2ODIiIHdpZHRoPSIxMDI0IiBoZWlnaHQ9IjY4MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-5a86b6c elementor-section-boxed elementor-section-height-default elementor-section-height-default"
data-id="5a86b6c" data-element_type="section"
data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4626539"
data-id="4626539" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-4366ef7 elementor-widget elementor-widget-heading"
data-id="4366ef7" data-element_type="widget"
data-widget_type="heading.default">
<div class="elementor-widget-container"><h2
class="elementor-heading-title elementor-size-default">
Why E.D.D.I?</h2></div>
</div>
<div class="elementor-element elementor-element-b8a33fc elementor-widget elementor-widget-heading"
data-id="b8a33fc" data-element_type="widget"
data-widget_type="heading.default">
<div class="elementor-widget-container"><h3
class="elementor-heading-title elementor-size-default">
Digitization of workflows and human
communication</h3></div>
</div>
<section
class="elementor-section elementor-inner-section elementor-element elementor-element-94732de elementor-section-full_width elementor-section-height-default elementor-section-height-default"
data-id="94732de" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-4f55e66"
data-id="4f55e66"
data-element_type="column"
data-settings="{"background_background":"classic"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-c989042 elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box"
data-id="c989042"
data-element_type="widget"
data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-"> <i
aria-hidden="true"
class="fas fa-code"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h4 class="elementor-icon-box-title">
<span> Open Source </span>
</h4>
<p class="elementor-icon-box-description">
EDDI ist
Open Source,
developed in
Java,
provided
with Docker
and can thus
be used in
any modern
cloud
environment </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-54fa93a"
data-id="54fa93a"
data-element_type="column"
data-settings="{"background_background":"classic"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-c23dd0b elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box"
data-id="c23dd0b"
data-element_type="widget"
data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-"> <i
aria-hidden="true"
class="fas fa-wrench"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h4 class="elementor-icon-box-title">
<span> Easy configuration </span>
</h4>
<p class="elementor-icon-box-description">
The code is
self-explanatory
and easy to
extend. The
configuration
is open and
flexible. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-b5fd1f3"
data-id="b5fd1f3"
data-element_type="column"
data-settings="{"background_background":"classic"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-6137967 elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box"
data-id="6137967"
data-element_type="widget"
data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-"> <i
aria-hidden="true"
class="fas fa-pencil-ruler"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h4 class="elementor-icon-box-title">
<span> Skills in kit form </span>
</h4>
<p class="elementor-icon-box-description">
Ready-to-use
algorithms
for optimal
automation
of human
communication. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-18ec486"
data-id="18ec486"
data-element_type="column"
data-settings="{"background_background":"classic"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-45f982c elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box"
data-id="45f982c"
data-element_type="widget"
data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-"> <i
aria-hidden="true"
class="fas fa-award"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h4 class="elementor-icon-box-title">
<span> Red Hat certified </span>
</h4>
<p class="elementor-icon-box-description">
The only
Open Source
Chatbot
Technology
that is Red
Hat
OpenShift
certified
and
available on
the Red Hat
marketplace. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-e28cb11 elementor-section-boxed elementor-section-height-default elementor-section-height-default"
data-id="e28cb11" data-element_type="section"
data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-01b78b3"
data-id="01b78b3" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-6266bdf elementor-widget elementor-widget-menu-anchor"
data-id="6266bdf" data-element_type="widget"
data-widget_type="menu-anchor.default">
<div class="elementor-widget-container">
<div id="usecase"
class="elementor-menu-anchor"></div>
</div>
</div>
<div class="elementor-element elementor-element-8a0e4f5 elementor-widget elementor-widget-heading"
data-id="8a0e4f5" data-element_type="widget"
data-widget_type="heading.default">
<div class="elementor-widget-container"><h2
class="elementor-heading-title elementor-size-default">
Use Cases for E.D.D.I</h2></div>
</div>
<section
class="elementor-section elementor-inner-section elementor-element elementor-element-a421628 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default"
data-id="a421628" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-66 elementor-inner-column elementor-element elementor-element-8a9c345"
data-id="8a9c345"
data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-21934a1 elementor-widget elementor-widget-image"
data-id="21934a1"
data-element_type="widget"
data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img decoding="async"
width="640"
height="426"
alt="communication processes"
sizes="(max-width: 640px) 100vw, 640px"
nitro-lazy-srcset="/wp-content/uploads/2020/12/office-1209640_640-1.jpg 640w, /wp-content/uploads/2020/12/office-1209640_640-1-300x200.jpg 300w"
nitro-lazy-src="/wp-content/uploads/2020/12/office-1209640_640-1.jpg"
class="attachment-large size-large nitro-lazy"
nitro-lazy-empty
id="NTQ3OjQzNQ==-1"
src="data:image/svg+xml;nitro-empty-id=NTQ3OjQzNQ==-1;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNjQwIDQyNiIgd2lkdGg9IjY0MCIgaGVpZ2h0PSI0MjYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PC9zdmc+">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4075b5d"
data-id="4075b5d"
data-element_type="column"
data-settings="{"background_background":"classic"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-0681e6c elementor-widget elementor-widget-heading"
data-id="0681e6c"
data-element_type="widget"
data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">
Optimization of
communication
processes in
companies</h3></div>
</div>
<div class="elementor-element elementor-element-9185a3a elementor-widget-divider--view-line elementor-widget elementor-widget-divider"
data-id="9185a3a"
data-element_type="widget"
data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator"> </span>
</div>
</div>
</div>
<div class="elementor-element elementor-element-fab0cf4 elementor-align-left elementor-mobile-align-left elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list"
data-id="fab0cf4"
data-element_type="widget"
data-widget_type="icon-list.default">
<div class="elementor-widget-container">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon"> <i
aria-hidden="true"
class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Increase efficiency when working in distributed teams that are spread across multiple physical locations</span>
</li>
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon"> <i
aria-hidden="true"
class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Enhanc communication between your company and your customers as well as between employees</span>
</li>
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon"> <i
aria-hidden="true"
class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Relieve call-center workload in times of overload by customer inquiries</span>
</li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-97cf022 elementor-align-left elementor-mobile-align-center elementor-tablet-align-center elementor-widget elementor-widget-button"
data-id="97cf022"
data-element_type="widget"
data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="/communicationprocesses/"
class="elementor-button-link elementor-button elementor-size-md"
role="button">
<span class="elementor-button-content-wrapper"> <span
class="elementor-button-text">Learn more</span> </span>
</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="elementor-section elementor-inner-section elementor-element elementor-element-e6d634c elementor-section-content-middle elementor-reverse-tablet elementor-reverse-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default"
data-id="e6d634c" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-55e68a4"
data-id="55e68a4"
data-element_type="column"
data-settings="{"background_background":"classic"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-547fb7c elementor-widget elementor-widget-heading"
data-id="547fb7c"
data-element_type="widget"
data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">
Optimization of
workflow processes
in companies</h3>
</div>
</div>
<div class="elementor-element elementor-element-609a88c elementor-widget-divider--view-line elementor-widget elementor-widget-divider"
data-id="609a88c"
data-element_type="widget"
data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator"> </span>
</div>
</div>
</div>
<div class="elementor-element elementor-element-ad5648b elementor-align-left elementor-tablet-align-left elementor-mobile-align-left elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list"
data-id="ad5648b"
data-element_type="widget"
data-widget_type="icon-list.default">
<div class="elementor-widget-container">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon"> <i
aria-hidden="true"
class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Optimizeation of workflows by outsourcing recurring tasks to AI software</span>
</li>
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon"> <i
aria-hidden="true"
class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Reduced workload for employees and thus efficient completion of complex tasks</span>
</li>
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon"> <i
aria-hidden="true"
class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Increased employee satisfaction and raise productivity</span>
</li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-67c7516 elementor-align-right elementor-mobile-align-center elementor-tablet-align-center elementor-widget elementor-widget-button"
data-id="67c7516"
data-element_type="widget"