-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataflow
936 lines (936 loc) · 89.9 KB
/
dataflow
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
<mxfile host="app.diagrams.net" modified="2023-04-14T07:42:35.560Z" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36" etag="OB9X9onp7VzhZfR6xBw3" version="21.1.7" type="github" pages="3">
<diagram name="流程图" id="pyuGfck4kLcA1176LxZJ">
<mxGraphModel dx="1674" dy="764" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="Wmscka8Yn_VIur-0aKvA-1" value="请求参数<br>query 用户问句<br>user_id&nbsp; &nbsp; 用户Id<br>session_id&nbsp; 会话id" style="shape=document;whiteSpace=wrap;html=1;boundedLbl=1;align=left;verticalAlign=top;size=0.09090909090909091;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="470" y="120" width="110" height="80" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-2" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-3" target="Wmscka8Yn_VIur-0aKvA-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-3" value="领域调整" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#bac8d3;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="270" y="60" width="116" height="40" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-4" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-5" target="Wmscka8Yn_VIur-0aKvA-48" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-5" value="导入用户历史对话状态信息<br>(2分钟内有效)" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#bac8d3;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="460" y="55" width="116" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-6" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-7" target="Wmscka8Yn_VIur-0aKvA-13" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-7" value="获取模型对问句解析的意图信息和语义信息" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="850" y="55" width="146" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-8" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-9" target="Wmscka8Yn_VIur-0aKvA-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-9" value="服务处理流程开始" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#ffe6cc;strokeColor=none;strokeWidth=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="90" y="55" width="120" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-10" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-11" target="Wmscka8Yn_VIur-0aKvA-25" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-11" value="图谱数据更新流程" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="510" y="410" width="120" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-12" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-13" target="Wmscka8Yn_VIur-0aKvA-15" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-13" value="根据阈值选出有效的语义解析信息" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#bac8d3;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1073" y="50" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-14" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-15" target="Wmscka8Yn_VIur-0aKvA-17" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-15" value="生成回复答案" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#d5e8d4;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1280" y="50" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-16" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-17" target="Wmscka8Yn_VIur-0aKvA-18" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-17" value="更新用户状态<br>" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#bac8d3;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1460" y="50" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-18" value="响应答案给用户" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#bac8d3;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1654" y="50" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-19" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-20" target="Wmscka8Yn_VIur-0aKvA-33" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-20" value="图谱数据模型向量预缓存" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="690" y="410" width="160" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-21" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-22" target="Wmscka8Yn_VIur-0aKvA-66" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-22" value="生成回复答案开始" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#d5e8d4;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1460" y="288" width="140" height="60" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-23" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-25" target="Wmscka8Yn_VIur-0aKvA-28" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-24" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-25" target="Wmscka8Yn_VIur-0aKvA-33" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-25" value="加载语义单元列表" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="510" y="540" width="120" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-26" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-28" target="Wmscka8Yn_VIur-0aKvA-30" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-27" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-28" target="Wmscka8Yn_VIur-0aKvA-36" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-28" value="加载知识点+动作列表" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="510" y="670" width="120" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-29" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-30" target="Wmscka8Yn_VIur-0aKvA-38" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-30" value="加载标准句列表" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="510" y="800" width="120" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-31" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-33" target="Wmscka8Yn_VIur-0aKvA-36" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-32" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-33" target="Wmscka8Yn_VIur-0aKvA-42" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-33" value="请求语义模型向量结果" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="690" y="540" width="160" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-34" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-36" target="Wmscka8Yn_VIur-0aKvA-38" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-35" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-36" target="Wmscka8Yn_VIur-0aKvA-44" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-36" value="请求知识点+动作<br>模型向量结果" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="690" y="670" width="160" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-37" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-38" target="Wmscka8Yn_VIur-0aKvA-46" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-38" value="请求标准句<br>模型向量结果" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="690" y="800" width="160" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-39" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-40" target="Wmscka8Yn_VIur-0aKvA-42" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-40" value="模型预测处理" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="920" y="410" width="160" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-41" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-42" target="Wmscka8Yn_VIur-0aKvA-44" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-42" value="计算问句的语义单元<br>匹配分数和召回结果" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="920" y="540" width="160" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-43" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-44" target="Wmscka8Yn_VIur-0aKvA-46" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-44" value="计算问句的知识点+动作<br>匹配分数和召回结果" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="920" y="670" width="160" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-45" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-46" target="Wmscka8Yn_VIur-0aKvA-64" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-46" value="计算问句的标准句<br>匹配分数和召回结果" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="920" y="800" width="160" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-47" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-48" target="Wmscka8Yn_VIur-0aKvA-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-48" value="问句预处理" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="650" y="55" width="116" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-49" value="" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-50" target="Wmscka8Yn_VIur-0aKvA-52" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-50" value="问句预处理开始" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="320" y="310" width="116" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-51" value="" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-52" target="Wmscka8Yn_VIur-0aKvA-55" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-52" value="问句识别出选项索引<br>第一个 -&gt; 0" style="whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=none;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="318" y="435" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-53" value="" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-55" target="Wmscka8Yn_VIur-0aKvA-57" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-54" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;dashed=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-55" target="Wmscka8Yn_VIur-0aKvA-58" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-55" value="合并上轮出答案的语义节点和标准句" style="whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=none;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="316" y="570" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-56" value="" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-57" target="Wmscka8Yn_VIur-0aKvA-60" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-57" value="根据选项索引获取对应选中的语义信息或标准句" style="whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=none;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="303" y="690" width="150" height="60" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-58" value="优先级:<br>语义信息&gt;标准句" style="shape=note;whiteSpace=wrap;html=1;backgroundOutline=1;fontColor=#000000;darkOpacity=0.05;fillColor=#FFF9B2;strokeColor=none;fillStyle=solid;direction=west;gradientDirection=north;gradientColor=#FFF2A1;shadow=1;size=20;pointerEvents=1;verticalAlign=top;align=left;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="130" y="572.5" width="120" height="55" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-59" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-60" target="Wmscka8Yn_VIur-0aKvA-61" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-60" value="使用选中信息重写问句" style="whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=none;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="308" y="800" width="140" height="60" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-61" value="问句预处理结束" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="320" y="900" width="116" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-62" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#dae8fc;strokeColor=#6c8ebf;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-63" target="Wmscka8Yn_VIur-0aKvA-40" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-63" value="获取模型对问句解析的意图信息和语义信息开始" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="927" y="310" width="146" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-64" value="获取模型对问句解析的意图信息和语义信息结束" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="927" y="890" width="146" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-65" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-66" target="Wmscka8Yn_VIur-0aKvA-69" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-66" value="当前问句添加到历史问句集合中" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#bac8d3;strokeColor=none;strokeWidth=0;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1460" y="377" width="140" height="43" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-67" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0;entryDx=180;entryDy=63.5;entryPerimeter=0;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-69" target="Wmscka8Yn_VIur-0aKvA-70" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-68" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-69" target="Wmscka8Yn_VIur-0aKvA-72" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-69" value="根据问句更新subDomain" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#bac8d3;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1460" y="475" width="140" height="35" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-70" value="包含 股票 -&gt;&nbsp; 股票个人业务<br>包含 基金 -&gt;&nbsp; 基金业务<br>包含 期货&nbsp;-&gt;&nbsp; 期货通业务<br>包含 黄金&nbsp;-&gt;&nbsp; 黄金TD业务<br>包含ifind&nbsp; -&gt;&nbsp; IFIND" style="shape=note;whiteSpace=wrap;html=1;backgroundOutline=1;fontColor=#000000;darkOpacity=0.05;fillColor=#FFF9B2;strokeColor=none;fillStyle=solid;direction=west;gradientDirection=north;gradientColor=#FFF2A1;shadow=1;size=20;pointerEvents=1;verticalAlign=top;align=left;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1636" y="449" width="180" height="107" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-71" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-72" target="Wmscka8Yn_VIur-0aKvA-74" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-72" value="当前轮次匹配到的标准句加入到用户记忆的<br>preRecalledStandsents" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#bac8d3;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1460" y="568" width="140" height="60" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-73" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-74" target="Wmscka8Yn_VIur-0aKvA-79" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-74" value="将当前轮次匹配的标准句对应的图谱节点加入<br>qaBeliefQueue" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#bac8d3;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1460" y="667" width="140" height="60" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-75" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-79" target="Wmscka8Yn_VIur-0aKvA-81" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-76" value="true" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontStyle=1" parent="Wmscka8Yn_VIur-0aKvA-75" vertex="1" connectable="0">
<mxGeometry x="-0.1885" y="-1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-77" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-79" target="Wmscka8Yn_VIur-0aKvA-84" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-78" value="false" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontStyle=1" parent="Wmscka8Yn_VIur-0aKvA-77" vertex="1" connectable="0">
<mxGeometry x="-0.328" y="3" relative="1" as="geometry">
<mxPoint x="-3" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-79" value="need_answer为false" style="rhombus;whiteSpace=wrap;html=1;rounded=1;fillColor=#bac8d3;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1465" y="770" width="130" height="80" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-80" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-81" target="Wmscka8Yn_VIur-0aKvA-98" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1535" y="1460" as="targetPoint" />
<Array as="points">
<mxPoint x="1370" y="1250" />
<mxPoint x="1530" y="1250" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-81" value="返回空答案" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#f8cecc;gradientColor=#ea6b66;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1310" y="1046" width="120" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-82" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-84" target="Wmscka8Yn_VIur-0aKvA-85" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-83" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;dashed=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-84" target="Wmscka8Yn_VIur-0aKvA-87" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-84" value="更新用户连续否定次数" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#bac8d3;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1465" y="890" width="130" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-85" value="用户问句解析的语义信息非空或用户意图不为否定意图,则重置否定次数" style="shape=note;whiteSpace=wrap;html=1;backgroundOutline=1;fontColor=#000000;darkOpacity=0.05;fillColor=#FFF9B2;strokeColor=none;fillStyle=solid;direction=west;gradientDirection=north;gradientColor=#FFF2A1;shadow=1;size=12;pointerEvents=1;verticalAlign=top;align=left;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1636" y="890" width="200" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-86" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-87" target="Wmscka8Yn_VIur-0aKvA-94" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-87" value="根据问句内容出答案" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#ffcc99;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1470" y="970" width="120" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-88" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-89" target="Wmscka8Yn_VIur-0aKvA-97" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-89" value="根据上一轮答案类型出答案" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#cce5ff;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1610" y="1080" width="150" height="40" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-90" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="1" source="Wmscka8Yn_VIur-0aKvA-98" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1530" y="1370" as="targetPoint" />
<Array as="points">
<mxPoint x="1530" y="1320" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-91" value="根据解析到的图谱节点出答案" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#ffcccc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1774" y="1150" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-92" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-94" target="Wmscka8Yn_VIur-0aKvA-89" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1670" y="1190" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-93" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-94" target="Wmscka8Yn_VIur-0aKvA-98" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1530" y="1300" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-94" value="对话答案非空" style="rhombus;whiteSpace=wrap;html=1;rounded=1;fillColor=#cdeb8b;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1480" y="1060" width="100" height="80" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-95" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-97" target="Wmscka8Yn_VIur-0aKvA-91" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-96" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fontStyle=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="1" source="Wmscka8Yn_VIur-0aKvA-97" target="Wmscka8Yn_VIur-0aKvA-98" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1670" y="1450.0000000000002" as="targetPoint" />
<Array as="points">
<mxPoint x="1685" y="1250" />
<mxPoint x="1530" y="1250" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-97" value="对话答案非空" style="rhombus;whiteSpace=wrap;html=1;rounded=1;fillColor=#cdeb8b;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1625" y="1151.25" width="120" height="57.5" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-102" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="Wmscka8Yn_VIur-0aKvA-103" target="Wmscka8Yn_VIur-0aKvA-104" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-103" value="根据上一轮答案类型出答案<br>开始" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#cce5ff;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="2290" y="250" width="150" height="40" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-104" value="根据上一轮答案类型出答案<br>结束" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#cce5ff;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="2290" y="660" width="150" height="40" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-4" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-1" target="ACq0HTz0HMzuJzOG_xSb-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-1" value="根据解析到的图谱节点出答案开始" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#ffcccc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="2970" y="320" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-2" value="根据解析到的图谱节点出答案结束" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#ffcccc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="2970" y="1255" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-6" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-3" target="ACq0HTz0HMzuJzOG_xSb-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-3" value="更新用户状态中的belief信息" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#ffcccc;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="2970" y="460" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-8" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-5" target="ACq0HTz0HMzuJzOG_xSb-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-5" value="将qabeliefQueue信息合并到belief中" style="whiteSpace=wrap;html=1;fillColor=#ffcccc;strokeColor=none;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="2970" y="600" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-10" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;strokeWidth=2;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-7" target="ACq0HTz0HMzuJzOG_xSb-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-52" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-7" target="ACq0HTz0HMzuJzOG_xSb-51" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-7" value="基于图谱推理的标准句检索(初召回)<br>preRecalledStds" style="whiteSpace=wrap;html=1;fillColor=#ffcccc;strokeColor=#36393d;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="2970" y="740" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-12" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-9" target="ACq0HTz0HMzuJzOG_xSb-11" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-9" value="更新history_belief" style="whiteSpace=wrap;html=1;fillColor=#ffcccc;strokeColor=none;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3255" y="625" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-16" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-11" target="ACq0HTz0HMzuJzOG_xSb-15" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-11" value="将相同父节点的其他子节点加入到nega_nodes" style="whiteSpace=wrap;html=1;fillColor=#ffcccc;strokeColor=none;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3255" y="740" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-14" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-13" target="ACq0HTz0HMzuJzOG_xSb-11" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-13" value="需要保证加入到nega_nodes中的节点和belief中的节点不构成"父子关系"" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3450" y="730" width="160" height="80" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-17" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.75;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;strokeWidth=2;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-15" target="ACq0HTz0HMzuJzOG_xSb-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-46" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;dashPattern=1 2;strokeWidth=2;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-15" target="ACq0HTz0HMzuJzOG_xSb-18" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-48" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;dashed=1;strokeWidth=1;endArrow=none;endFill=0;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-15" target="ACq0HTz0HMzuJzOG_xSb-47" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-15" value="标准句检索" style="whiteSpace=wrap;html=1;fillColor=#ffcccc;strokeColor=#36393d;rounded=1;shadow=1;fontStyle=1;" parent="1" vertex="1">
<mxGeometry x="3255" y="880" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-21" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#cdeb8b;strokeColor=none;shadow=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-18" target="ACq0HTz0HMzuJzOG_xSb-20" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-38" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;shadow=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-18" target="ACq0HTz0HMzuJzOG_xSb-20" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-18" value="标准句检索开始<br>preRecalledStds" style="whiteSpace=wrap;html=1;fillColor=#cdeb8b;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="1" vertex="1">
<mxGeometry x="3687.5" y="938" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-19" value="标准句检索结束" style="whiteSpace=wrap;html=1;fillColor=#cdeb8b;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="1" vertex="1">
<mxGeometry x="3687.5" y="1679" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-23" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#cdeb8b;strokeColor=none;shadow=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-20" target="ACq0HTz0HMzuJzOG_xSb-22" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-27" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.917;entryY=0.438;entryDx=0;entryDy=0;entryPerimeter=0;dashed=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-20" target="ACq0HTz0HMzuJzOG_xSb-24" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-39" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;shadow=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-20" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="3747.5" y="1135" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-20" value="获取从belief_nodes出发的所有满足条件的路径" style="whiteSpace=wrap;html=1;fillColor=#cdeb8b;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="1" vertex="1">
<mxGeometry x="3670" y="1036" width="155" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-29" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#cdeb8b;strokeColor=none;shadow=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-22" target="ACq0HTz0HMzuJzOG_xSb-28" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-40" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;shadow=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-22" target="ACq0HTz0HMzuJzOG_xSb-28" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-22" value="相同尾部节点只保留路径最短的一条" style="whiteSpace=wrap;html=1;fillColor=#cdeb8b;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="1" vertex="1">
<mxGeometry x="3670" y="1135" width="155" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-24" value="目前出来的路径长度都是3" style="shape=document;whiteSpace=wrap;html=1;boundedLbl=1;fillColor=#e51400;fontColor=#ffffff;strokeColor=#B20000;size=0.075;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3900" y="1031" width="160" height="80" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-32" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#cdeb8b;strokeColor=none;shadow=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-28" target="ACq0HTz0HMzuJzOG_xSb-31" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-41" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;shadow=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-28" target="ACq0HTz0HMzuJzOG_xSb-31" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-28" value="保留路径尾节点为标准句的路径" style="whiteSpace=wrap;html=1;fillColor=#cdeb8b;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="1" vertex="1">
<mxGeometry x="3652.5" y="1245" width="190" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-34" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#cdeb8b;strokeColor=none;shadow=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-31" target="ACq0HTz0HMzuJzOG_xSb-33" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-42" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;shadow=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-31" target="ACq0HTz0HMzuJzOG_xSb-33" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-31" value="计算路径分数" style="whiteSpace=wrap;html=1;fillColor=#cdeb8b;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="1" vertex="1">
<mxGeometry x="3652.5" y="1351" width="190" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-36" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#cdeb8b;strokeColor=none;shadow=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-33" target="ACq0HTz0HMzuJzOG_xSb-35" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-43" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;shadow=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-33" target="ACq0HTz0HMzuJzOG_xSb-35" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-33" value="计算标准句分数" style="whiteSpace=wrap;html=1;fillColor=#cdeb8b;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="1" vertex="1">
<mxGeometry x="3652.5" y="1463" width="190" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-37" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#cdeb8b;strokeColor=none;shadow=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-35" target="ACq0HTz0HMzuJzOG_xSb-19" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-45" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;shadow=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-35" target="ACq0HTz0HMzuJzOG_xSb-19" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-35" value="加和标准句分数" style="whiteSpace=wrap;html=1;fillColor=#cdeb8b;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="1" vertex="1">
<mxGeometry x="3652.5" y="1570" width="190" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-47" value="初召回标准句<br>219<br>如何增加K线周期" style="shape=document;whiteSpace=wrap;html=1;boundedLbl=1;fillColor=#e51400;fontColor=#ffffff;strokeColor=#B20000;size=0.075;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3340" y="998" width="160" height="80" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-54" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-51" target="ACq0HTz0HMzuJzOG_xSb-53" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-56" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-51" target="ACq0HTz0HMzuJzOG_xSb-55" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-51" value="belief语义信息为空且模型匹配结果为空" style="rhombus;whiteSpace=wrap;html=1;fillColor=#ffcccc;strokeColor=#36393d;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="2957.5" y="885" width="145" height="105" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-57" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-53" target="ACq0HTz0HMzuJzOG_xSb-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-53" value="生成repeatQuestion" style="whiteSpace=wrap;html=1;fillColor=#ffcccc;strokeColor=#36393d;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="2970" y="1092.5" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-58" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-55" target="ACq0HTz0HMzuJzOG_xSb-2" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="3230" y="1205" />
<mxPoint x="3030" y="1205" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-55" value="修改标准句检索逻辑" style="whiteSpace=wrap;html=1;fillColor=#008a00;strokeColor=#005700;rounded=1;shadow=1;fontColor=#ffffff;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3170" y="1105" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-62" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-59" target="ACq0HTz0HMzuJzOG_xSb-61" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-59" value="修改标准句检索逻辑<br>开始" style="whiteSpace=wrap;html=1;fillColor=#008a00;strokeColor=#005700;rounded=1;shadow=1;fontColor=#ffffff;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3340" y="1275" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-60" value="修改标准句检索逻辑<br>结束" style="whiteSpace=wrap;html=1;fillColor=#008a00;strokeColor=#005700;rounded=1;shadow=1;fontColor=#ffffff;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3340" y="2440" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-64" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-61" target="ACq0HTz0HMzuJzOG_xSb-63" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-61" value="根据知识点字面包含关系对belief预处理-降低约束<br>(仅处理concept)" style="whiteSpace=wrap;html=1;fillColor=#008a00;strokeColor=#005700;rounded=1;shadow=1;fontColor=#ffffff;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3320" y="1410" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-66" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-63" target="ACq0HTz0HMzuJzOG_xSb-65" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-63" value="用户语义信息预处理" style="whiteSpace=wrap;html=1;fillColor=#008a00;strokeColor=#005700;rounded=1;shadow=1;fontColor=#ffffff;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3320" y="1551" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-68" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-65" target="ACq0HTz0HMzuJzOG_xSb-67" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-65" value="知识澄清模块" style="whiteSpace=wrap;html=1;fillColor=#008a00;strokeColor=#005700;rounded=1;shadow=1;fontColor=#ffffff;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3320" y="1691" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-71" value="yes" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-67" target="ACq0HTz0HMzuJzOG_xSb-70" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-73" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1" parent="1" source="ACq0HTz0HMzuJzOG_xSb-67" target="ACq0HTz0HMzuJzOG_xSb-72" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-74" value="no" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontStyle=1" parent="ACq0HTz0HMzuJzOG_xSb-73" vertex="1" connectable="0">
<mxGeometry x="-0.1548" y="2" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-67" value="需要澄清" style="rhombus;whiteSpace=wrap;html=1;fillColor=#008a00;strokeColor=#005700;fontColor=#ffffff;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3360" y="1821" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-70" value="" style="whiteSpace=wrap;html=1;fillColor=#008a00;strokeColor=#005700;fontColor=#ffffff;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3340" y="1991" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-77" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="ACq0HTz0HMzuJzOG_xSb-72" target="ACq0HTz0HMzuJzOG_xSb-76" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-72" value="知识点后处理(父子节点)" style="whiteSpace=wrap;html=1;fillColor=#008a00;strokeColor=#005700;fontColor=#ffffff;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3060" y="1991" width="195" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-79" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="ACq0HTz0HMzuJzOG_xSb-76" target="ACq0HTz0HMzuJzOG_xSb-78" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-76" value="更新history_belief" style="whiteSpace=wrap;html=1;fillColor=#008a00;strokeColor=#005700;fontColor=#ffffff;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3060" y="2131" width="195" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-81" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="ACq0HTz0HMzuJzOG_xSb-78" target="ACq0HTz0HMzuJzOG_xSb-80" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-78" value="将相同父节点的其他子节点添加到<br>否定集合中" style="whiteSpace=wrap;html=1;fillColor=#008a00;strokeColor=#005700;fontColor=#ffffff;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3060" y="2271" width="195" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-83" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="ACq0HTz0HMzuJzOG_xSb-80" target="ACq0HTz0HMzuJzOG_xSb-82" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-80" value="上轮语义信息,本轮未召回的语义节点,添加到否定集合中" style="whiteSpace=wrap;html=1;fillColor=#008a00;strokeColor=#005700;fontColor=#ffffff;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3060" y="2411" width="195" height="60" as="geometry" />
</mxCell>
<mxCell id="ACq0HTz0HMzuJzOG_xSb-82" value="标准句检索<br>search_data" style="whiteSpace=wrap;html=1;fillColor=#d80073;strokeColor=#A50040;fontColor=#ffffff;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3060" y="2551" width="195" height="60" as="geometry" />
</mxCell>
<mxCell id="KQ8POCECwhqPFZ_KsOil-1" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="1740" y="1530" width="1040" height="950" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-39" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f5f5f5;strokeColor=#666666;fontColor=#333333;" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry width="1040" height="950" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-100" value="根据问句内容出答案开始" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#ffcc99;strokeColor=none;shadow=1;fontStyle=1" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="509.9699999999998" y="59" width="140" height="50" as="geometry" />
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-101" value="根据问句内容出答案结束" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#ffcc99;strokeColor=none;shadow=1;fontStyle=1" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="509.9699999999998" y="848" width="140" height="50" as="geometry" />
</mxCell>
<mxCell id="p6aVEhlmDk1M-Xea1w4w-1" value="问句为<br>"用户不说话"" style="rhombus;whiteSpace=wrap;html=1;fillColor=#ffcc99;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="524.9699999999998" y="159" width="110" height="80" as="geometry" />
</mxCell>
<mxCell id="p6aVEhlmDk1M-Xea1w4w-2" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="KQ8POCECwhqPFZ_KsOil-1" source="Wmscka8Yn_VIur-0aKvA-100" target="p6aVEhlmDk1M-Xea1w4w-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-1" value="主动询问用户意图话术" style="whiteSpace=wrap;html=1;fillColor=#ffcc99;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="324.9699999999998" y="169" width="140" height="60" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-2" value="是" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="KQ8POCECwhqPFZ_KsOil-1" source="p6aVEhlmDk1M-Xea1w4w-1" target="EBWFWxaTv1woo8PBMfLQ-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-17" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="KQ8POCECwhqPFZ_KsOil-1" target="Wmscka8Yn_VIur-0aKvA-101" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="589.9699999999998" y="799" as="targetPoint" />
<mxPoint x="110.02882352941174" y="398.9999999999998" as="sourcePoint" />
<Array as="points">
<mxPoint x="109.97000000000003" y="729" />
<mxPoint x="579.9699999999998" y="729" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-3" value="话术1<br>不好意思,我可能理解错了,能否简要描述下你的问题。" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#e51400;strokeColor=#B20000;fontColor=#ffffff;" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="30" y="344" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-6" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="KQ8POCECwhqPFZ_KsOil-1" source="EBWFWxaTv1woo8PBMfLQ-4" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="110" y="349" as="targetPoint" />
<Array as="points">
<mxPoint x="110" y="302" />
<mxPoint x="110" y="340" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-7" value="是" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="EBWFWxaTv1woo8PBMfLQ-6" vertex="1" connectable="0">
<mxGeometry x="-0.0691" y="3" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-4" value="isFinal" style="rhombus;whiteSpace=wrap;html=1;fillColor=#ffcc99;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="337.4699999999998" y="264" width="115" height="75" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-5" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="KQ8POCECwhqPFZ_KsOil-1" source="EBWFWxaTv1woo8PBMfLQ-1" target="EBWFWxaTv1woo8PBMfLQ-4" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-16" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="KQ8POCECwhqPFZ_KsOil-1" source="EBWFWxaTv1woo8PBMfLQ-8" target="Wmscka8Yn_VIur-0aKvA-101" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="209.9699999999998" y="729" />
<mxPoint x="579.9699999999998" y="729" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-8" value="话术2<br>不好意思,我可能理解错了,能否简要描述下你的问题。" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#e51400;strokeColor=#B20000;fontColor=#ffffff;" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="119.97000000000003" y="569" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-12" value="是" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="KQ8POCECwhqPFZ_KsOil-1" source="EBWFWxaTv1woo8PBMfLQ-10" target="EBWFWxaTv1woo8PBMfLQ-8" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-10" value="重复询问次数&lt;1" style="rhombus;whiteSpace=wrap;html=1;fillColor=#ffcc99;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="334.9699999999998" y="389" width="120" height="80" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-11" value="否" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="KQ8POCECwhqPFZ_KsOil-1" source="EBWFWxaTv1woo8PBMfLQ-4" target="EBWFWxaTv1woo8PBMfLQ-10" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-15" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="KQ8POCECwhqPFZ_KsOil-1" source="EBWFWxaTv1woo8PBMfLQ-13" target="Wmscka8Yn_VIur-0aKvA-101" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="394.9699999999998" y="729" />
<mxPoint x="579.9699999999998" y="729" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-13" value="询问一次后,第二次返回空结果" style="whiteSpace=wrap;html=1;fillColor=#ffcc99;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="309.9699999999998" y="569" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-14" value="否" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="KQ8POCECwhqPFZ_KsOil-1" source="EBWFWxaTv1woo8PBMfLQ-10" target="EBWFWxaTv1woo8PBMfLQ-13" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-27" value="否" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="KQ8POCECwhqPFZ_KsOil-1" target="EBWFWxaTv1woo8PBMfLQ-26" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="579.9699999999998" y="371" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-20" value="再说一遍<br>在说一遍<br>没听清<br>听不清<br>没有听清<br>重说一遍" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f0a30a;fontColor=#000000;strokeColor=#BD7000;fontStyle=1" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="859.9699999999998" y="204" width="120" height="115" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-38" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="KQ8POCECwhqPFZ_KsOil-1" source="EBWFWxaTv1woo8PBMfLQ-22" target="Wmscka8Yn_VIur-0aKvA-101" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="909.9699999999998" y="729" />
<mxPoint x="579.9699999999998" y="729" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-22" value="给出最近一次回复<br>用户的话术<br>robotText" style="whiteSpace=wrap;html=1;fillColor=#ffcc99;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="849.9699999999998" y="529" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-36" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="KQ8POCECwhqPFZ_KsOil-1" source="EBWFWxaTv1woo8PBMfLQ-26" target="Wmscka8Yn_VIur-0aKvA-101" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-26" value="问句包含转人工客服的<br>相关词汇" style="rhombus;whiteSpace=wrap;html=1;fillColor=#ffcc99;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="509.9699999999998" y="441" width="140" height="80" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-29" value="问句含有要求<br style="border-color: var(--border-color);">重复的词汇" style="rhombus;whiteSpace=wrap;html=1;fillColor=#ffcc99;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="524.9699999999998" y="291" width="110" height="80" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-30" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="KQ8POCECwhqPFZ_KsOil-1" source="p6aVEhlmDk1M-Xea1w4w-1" target="EBWFWxaTv1woo8PBMfLQ-29" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-21" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;exitX=-0.008;exitY=0.383;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0;entryDx=0;entryDy=0;" parent="KQ8POCECwhqPFZ_KsOil-1" source="EBWFWxaTv1woo8PBMfLQ-20" target="EBWFWxaTv1woo8PBMfLQ-29" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="619.9699999999998" y="311" as="targetPoint" />
<Array as="points">
<mxPoint x="719.9699999999998" y="248" />
<mxPoint x="719.9699999999998" y="249" />
<mxPoint x="607.9699999999998" y="249" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-23" value="是" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="KQ8POCECwhqPFZ_KsOil-1" source="EBWFWxaTv1woo8PBMfLQ-29" target="EBWFWxaTv1woo8PBMfLQ-22" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="639.9699999999998" y="341" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-37" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="KQ8POCECwhqPFZ_KsOil-1" source="EBWFWxaTv1woo8PBMfLQ-32" target="Wmscka8Yn_VIur-0aKvA-101" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-32" value="faq<br>转人工" style="whiteSpace=wrap;html=1;fillColor=#ffcc99;strokeColor=none;rounded=1;shadow=1;fontStyle=1;" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="699.9699999999998" y="529" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-33" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="KQ8POCECwhqPFZ_KsOil-1" source="EBWFWxaTv1woo8PBMfLQ-26" target="EBWFWxaTv1woo8PBMfLQ-32" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-35" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0;entryDx=0;entryDy=0;dashed=1;" parent="KQ8POCECwhqPFZ_KsOil-1" source="EBWFWxaTv1woo8PBMfLQ-34" target="EBWFWxaTv1woo8PBMfLQ-26" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="614.9699999999998" y="397" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="EBWFWxaTv1woo8PBMfLQ-34" value="1.人工<br>2.不包含&nbsp; 电话 号码 券商<br>包含联系/要/转+客服<br>3.用户否定客服答案大于等于3次,转人工" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#e3c800;fontColor=#000000;strokeColor=#B09500;fontStyle=1" parent="KQ8POCECwhqPFZ_KsOil-1" vertex="1">
<mxGeometry x="659.9699999999998" y="344" width="160" height="105" as="geometry" />
</mxCell>
<mxCell id="KQ8POCECwhqPFZ_KsOil-5" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="KQ8POCECwhqPFZ_KsOil-2" target="KQ8POCECwhqPFZ_KsOil-4" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="KQ8POCECwhqPFZ_KsOil-2" value="标准句检索开始<br>search_data" style="whiteSpace=wrap;html=1;fillColor=#d80073;strokeColor=#A50040;fontColor=#ffffff;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3760" y="2080" width="195" height="60" as="geometry" />
</mxCell>
<mxCell id="KQ8POCECwhqPFZ_KsOil-3" value="标准句检索结束<br>search_data" style="whiteSpace=wrap;html=1;fillColor=#d80073;strokeColor=#A50040;fontColor=#ffffff;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3750" y="2690" width="195" height="60" as="geometry" />
</mxCell>
<mxCell id="KQ8POCECwhqPFZ_KsOil-8" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="KQ8POCECwhqPFZ_KsOil-4" target="KQ8POCECwhqPFZ_KsOil-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="KQ8POCECwhqPFZ_KsOil-4" value="降低搜索约束" style="whiteSpace=wrap;html=1;fillColor=#d80073;strokeColor=#A50040;fontColor=#ffffff;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3760" y="2191" width="195" height="60" as="geometry" />
</mxCell>
<mxCell id="KQ8POCECwhqPFZ_KsOil-6" value="1.根据字符串包含关系-降低约束<br>2.去除nega_nodes" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;" parent="1" vertex="1">
<mxGeometry x="4010" y="2221" width="210" height="59" as="geometry" />
</mxCell>
<mxCell id="KQ8POCECwhqPFZ_KsOil-10" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="KQ8POCECwhqPFZ_KsOil-7" target="KQ8POCECwhqPFZ_KsOil-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="KQ8POCECwhqPFZ_KsOil-7" value="删除belief和nega_nodes<br>相交集部分" style="whiteSpace=wrap;html=1;fillColor=#d80073;strokeColor=#A50040;fontColor=#ffffff;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3760" y="2300" width="195" height="60" as="geometry" />
</mxCell>
<mxCell id="KQ8POCECwhqPFZ_KsOil-9" value="选择匹配的标准句" style="whiteSpace=wrap;html=1;fillColor=#d80073;strokeColor=#A50040;fontColor=#ffffff;rounded=1;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="3760" y="2411" width="195" height="60" as="geometry" />
</mxCell>
<mxCell id="p04LPXNj4fEb7tHgvSnF-1" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontStyle=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" edge="1" parent="1" source="Wmscka8Yn_VIur-0aKvA-91" target="Wmscka8Yn_VIur-0aKvA-98">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1530" y="1460" as="targetPoint" />
<Array as="points">
<mxPoint x="1834" y="1250" />
<mxPoint x="1530" y="1250" />
</Array>
<mxPoint x="1834" y="1275" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="Wmscka8Yn_VIur-0aKvA-98" value="生成回复答案结束" style="whiteSpace=wrap;html=1;rounded=1;fillColor=#d5e8d4;strokeColor=none;shadow=1;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="1470" y="1315" width="120" height="60" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="IdMtrjbNK0MRECx6h2MH" name="模型预测和回测脚本设计">
<mxGraphModel dx="1684" dy="764" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="EtlSbs0D6bVPmtSwsVGW-1" value="<strong style="color: rgb(255, 0, 0); font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, Oxygen, Ubuntu, &quot;Fira Sans&quot;, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, sans-serif; font-size: 14px; text-align: left; background-color: rgb(255, 255, 255);">模型预测和回测脚本</strong>" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="90" y="60" width="170" height="60" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="QRUtMEhKn_A4IZStQdnu" name="数据图">
<mxGraphModel dx="3088" dy="764" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="O373jaeq29Wku_P_zjq2-1" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="O373jaeq29Wku_P_zjq2-2" target="O373jaeq29Wku_P_zjq2-3">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-2" value="图谱平台" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="110" y="40" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-3" value="图谱数据" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="110" y="180" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-4" value="data" style="rounded=1;whiteSpace=wrap;html=1;verticalAlign=top;align=center;" vertex="1" parent="1">
<mxGeometry x="260" y="530" width="240" height="300" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-5" value="total" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="275" y="560" width="85" height="30" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-6" value="limit" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="385" y="560" width="95" height="30" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-7" value="graph_relation_list" style="rounded=1;whiteSpace=wrap;html=1;verticalAlign=top;" vertex="1" parent="1">
<mxGeometry x="270" y="600" width="220" height="210" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-8" value="type" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="332.5" y="630" width="95" height="20" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-9" value="start_node" style="rounded=1;whiteSpace=wrap;html=1;verticalAlign=top;" vertex="1" parent="1">
<mxGeometry x="275" y="660" width="85" height="130" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-10" value="end_node" style="rounded=1;whiteSpace=wrap;html=1;verticalAlign=top;" vertex="1" parent="1">
<mxGeometry x="390" y="658" width="90" height="132" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-11" value="name" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="287.5" y="687" width="60" height="26" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-12" value="labels" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="287.5" y="719" width="60" height="26" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-13" value="上一轮对话生成回复答案的语义节点集合" style="shape=note;whiteSpace=wrap;html=1;backgroundOutline=1;fontColor=#000000;darkOpacity=0.05;fillColor=#FFF9B2;strokeColor=none;fillStyle=solid;direction=west;gradientDirection=north;gradientColor=#FFF2A1;shadow=1;size=20;pointerEvents=1;verticalAlign=top;align=left;" vertex="1" parent="1">
<mxGeometry x="-620" y="344" width="140" height="50" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-14" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="O373jaeq29Wku_P_zjq2-16" target="O373jaeq29Wku_P_zjq2-18">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-15" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="O373jaeq29Wku_P_zjq2-16" target="O373jaeq29Wku_P_zjq2-20">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-16" value="用户对话记忆" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-180" y="154" width="120" height="80" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-17" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;entryPerimeter=0;dashed=1;" edge="1" parent="1" source="O373jaeq29Wku_P_zjq2-18" target="O373jaeq29Wku_P_zjq2-13">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-18" value="<span style="text-align: left">last_res_nodes</span>" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-360" y="234" width="120" height="80" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-19" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;entryPerimeter=0;dashed=1;" edge="1" parent="1" source="O373jaeq29Wku_P_zjq2-20" target="O373jaeq29Wku_P_zjq2-21">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-20" value="<span style="text-align: left">last_res_stds&nbsp;</span>" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-240" y="319" width="120" height="80" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-21" value="上一轮对话生成回复答案的标准句集合" style="shape=note;whiteSpace=wrap;html=1;backgroundOutline=1;fontColor=#000000;darkOpacity=0.05;fillColor=#FFF9B2;strokeColor=none;fillStyle=solid;direction=west;gradientDirection=north;gradientColor=#FFF2A1;shadow=1;size=20;pointerEvents=1;verticalAlign=top;align=left;" vertex="1" parent="1">
<mxGeometry x="-375" y="454" width="150" height="50" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-22" value="properties" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="287.5" y="751" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-23" value="name" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="405" y="685" width="60" height="26" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-24" value="labels" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="405" y="717" width="60" height="26" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-25" value="properties" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="405" y="751" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-26" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="O373jaeq29Wku_P_zjq2-28">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-950" y="859" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-27" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="O373jaeq29Wku_P_zjq2-28" target="O373jaeq29Wku_P_zjq2-44">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-28" value="adj_table.json" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-940" y="730" width="120" height="70" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-29" value="startNodeName" style="rounded=1;whiteSpace=wrap;html=1;verticalAlign=top;" vertex="1" parent="1">
<mxGeometry x="-1020" y="861" width="120" height="229" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-30" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="O373jaeq29Wku_P_zjq2-36" target="O373jaeq29Wku_P_zjq2-37">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-31" value="relation_name" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" vertex="1" connectable="0" parent="O373jaeq29Wku_P_zjq2-30">
<mxGeometry x="-0.2644" y="-3" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-32" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="O373jaeq29Wku_P_zjq2-36" target="O373jaeq29Wku_P_zjq2-38">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-33" value="relation_name" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" vertex="1" connectable="0" parent="O373jaeq29Wku_P_zjq2-32">
<mxGeometry x="-0.3638" y="2" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-34" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" edge="1" parent="1" source="O373jaeq29Wku_P_zjq2-36" target="O373jaeq29Wku_P_zjq2-39">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-35" value="relation_name" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" vertex="1" connectable="0" parent="O373jaeq29Wku_P_zjq2-34">
<mxGeometry x="-0.4119" y="4" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-36" value="图谱名<br>thskefukg" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-850" y="467" width="120" height="80" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-37" value="包含" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-1060" y="597" width="120" height="80" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-38" value="实例化" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-870" y="622" width="120" height="80" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-39" value="属性关系" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-670" y="612" width="120" height="80" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-40" value="" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-1010" y="900" width="100" height="160" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-41" value="name<br>(endNodeName)" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-1007" y="912" width="94" height="30" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-42" value="direction<br>(in)" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-1007" y="960.5" width="94" height="30" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-43" value="type<br>(endNodeType)" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-1007" y="1010" width="94" height="40" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-44" value="endNodeName" style="rounded=1;whiteSpace=wrap;html=1;verticalAlign=top;" vertex="1" parent="1">
<mxGeometry x="-870" y="861" width="120" height="229" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-45" value="" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-860" y="900" width="100" height="160" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-46" value="name<br>(startNodeName)" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-857" y="912" width="94" height="30" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-47" value="direction<br>(out)" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-857" y="960.5" width="94" height="29.5" as="geometry" />
</mxCell>
<mxCell id="O373jaeq29Wku_P_zjq2-48" value="type<br>(startNodeType)" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-857" y="1010" width="94" height="40" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
</mxfile>