-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.out
More file actions
2229 lines (1533 loc) · 84.9 KB
/
Copy pathtest.out
File metadata and controls
2229 lines (1533 loc) · 84.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
warn: ⚠️ Flow validation passed with 6 warnings
warn: ⚠️ Flow "PaymentRetryEscalation" has 1 warnings:
warn: • SWITCH step "handle-escalation-choice" in flow "PaymentRetryEscalation" missing "default" branch - recommended for error handling
warn: ⚠️ Flow "ApiTestingFlow" has 1 warnings:
warn: • Circular flow reference detected: api-testing-flow-v1.0 → api-testing-flow-restart-v1.0 → api-testing-flow-v1.0
warn: ⚠️ Flow "UserAccessControl" has 1 warnings:
warn: • Circular flow reference detected: user-access-control-v1.0 → user-access-control-restart-v1.0 → user-access-control-v1.0
warn: ⚠️ Flow "SmartOnFailUnrecoverableTest" has 1 warnings:
warn: • CALL-TOOL step "failing-payment-call" argument "amount" may not match expected type number
warn: ⚠️ Flow "SimpleSelfRetryDemo" has 1 warnings:
warn: • Circular flow reference detected: simple-self-retry-demo-v1.0 → simple-self-retry-demo-v1.0
warn: ⚠️ Flow "SmartSelfRetryDemo" has 1 warnings:
warn: • Circular flow reference detected: smart-self-retry-demo-v1.0 → smart-self-retry-demo-v1.0
🚀 Running ALL test scenarios (42 total) in en
================================================================================
[1/42] 🧪 Running: weatherMappingTest
📝 Inputs (2): What's the weather in London? → London
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: e47e1952-bc0e-4d85-893c-229308650985
Running 2 simulated inputs...
============================================================
You: What's the weather in London? [SIMULATED]
🤖 AI: Processing Weather Check - You can also 'cancel flow' or request 'help'.
Enter the city name to get current weather information
You: London [SIMULATED]
🤖 AI: Current weather in London, : Partly cloudy at 17°C (63% humidity)
Last updated: 2025-08-26T06:01:16.309Z
👋 Ending simulation. Session summary:
Interactions: 3
Session duration: 11148ms
Simulated inputs processed: 2/2
✅ [1/42] weatherMappingTest - PASSED
[2/42] 🧪 Running: paymentWorkflowTest
📝 Inputs (3): I need to make a payment → 123456 → 50.00
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 3 simulated inputs...
============================================================
You: I need to make a payment [SIMULATED]
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
🤖 Processing Make a payment
Please enter your account number (6-12 digits)
You: 123456 [SIMULATED]
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
What amount would you like to pay? (minimum $0.01, maximum $10,000)
You: 50.00 [SIMULATED]
🤖 AI: Payment link generated successfully: https://pay.example.com/123456/50.00?id=5c44dd60-d56f-4127-8ab0-d530d6e1f2fa
Payment ID: 5c44dd60-d56f-4127-8ab0-d530d6e1f2fa
Expires: 2025-08-26T07:01:19.929Z
👋 Ending simulation. Session summary:
Interactions: 4
Session duration: 14769ms
Simulated inputs processed: 3/3
✅ [2/42] paymentWorkflowTest - PASSED
[3/42] 🧪 Running: multiWeatherTest
📝 Inputs (6): What's the weather in New York? → New York → What's the weather in Tokyo? → Tokyo → What's the weather in London? → London
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 6 simulated inputs...
============================================================
You: What's the weather in New York? [SIMULATED]
🤖 AI: Processing Weather Check - You can also 'cancel flow' or request 'help'.
Enter the city name to get current weather information
You: New York [SIMULATED]
🤖 AI: Current weather in Weehawken, : Clear at 24°C (41% humidity)
Last updated: 2025-08-26T06:01:23.392Z
You: What's the weather in Tokyo? [SIMULATED]
🤖 AI: Processing Weather Check - You can also 'cancel flow' or request 'help'.
Enter the city name to get current weather information
You: Tokyo [SIMULATED]
🤖 AI: Current weather in Shikinejima, : Clear at 27°C (85% humidity)
Last updated: 2025-08-26T06:01:39.431Z
You: What's the weather in London? [SIMULATED]
🤖 AI: Processing Weather Check - You can also 'cancel flow' or request 'help'.
Enter the city name to get current weather information
You: London [SIMULATED]
🤖 AI: Current weather in London, : Partly cloudy at 17°C (63% humidity)
Last updated: 2025-08-26T06:04:34.111Z
👋 Ending simulation. Session summary:
Interactions: 7
Session duration: 208952ms
Simulated inputs processed: 6/6
✅ [3/42] multiWeatherTest - PASSED
[4/42] 🧪 Running: multiPaymentTest
📝 Inputs (6): I need to make a payment → 123456 → 25.50 → I want to make another payment → 123456 → 100.00
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 6 simulated inputs...
============================================================
You: I need to make a payment [SIMULATED]
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
🤖 Processing Make a payment
Please enter your account number (6-12 digits)
You: 123456 [SIMULATED]
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
What amount would you like to pay? (minimum $0.01, maximum $10,000)
You: 25.50 [SIMULATED]
🤖 AI: Payment link generated successfully: https://pay.example.com/123456/25.50?id=dc6060f3-2521-475a-a63f-2400cd797271
Payment ID: dc6060f3-2521-475a-a63f-2400cd797271
Expires: 2025-08-26T07:04:37.861Z
You: I want to make another payment [SIMULATED]
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
🤖 Processing Make a payment
Please enter your account number (6-12 digits)
You: 123456 [SIMULATED]
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
What amount would you like to pay? (minimum $0.01, maximum $10,000)
You: 100.00 [SIMULATED]
🤖 AI: Payment link generated successfully: https://pay.example.com/123456/100.00?id=0b5d9f51-b619-4420-a5ad-3eea74245e11
Payment ID: 0b5d9f51-b619-4420-a5ad-3eea74245e11
Expires: 2025-08-26T07:04:40.659Z
👋 Ending simulation. Session summary:
Interactions: 7
Session duration: 215498ms
Simulated inputs processed: 6/6
✅ [4/42] multiPaymentTest - PASSED
[5/42] 🧪 Running: invalidAccountTest
📝 Inputs (3): I need to make a payment → 999999 → cancel
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 3 simulated inputs...
============================================================
You: I need to make a payment [SIMULATED]
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
🤖 Processing Make a payment
Please enter your account number (6-12 digits)
You: 999999 [SIMULATED]
warn: Error executing tool VerifyAccountTool: Invalid account number
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
Account verification failed. Please ensure you entered a valid 6-12 digit account number.
You: cancel [SIMULATED]
🤖 AI: ✅ Successfully exited MakePayment. How can I help you with something else?
👋 Ending simulation. Session summary:
Interactions: 4
Session duration: 217787ms
Simulated inputs processed: 3/3
✅ [5/42] invalidAccountTest - PASSED
[6/42] 🧪 Running: interruptionTest
📝 Inputs (5): I need to make a payment → 123456 → cancel → What's the weather in Paris? → Paris
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 5 simulated inputs...
============================================================
You: I need to make a payment [SIMULATED]
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
🤖 Processing Make a payment
Please enter your account number (6-12 digits)
You: 123456 [SIMULATED]
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
What amount would you like to pay? (minimum $0.01, maximum $10,000)
You: cancel [SIMULATED]
🤖 AI: ✅ Successfully exited MakePayment. How can I help you with something else?
You: What's the weather in Paris? [SIMULATED]
🤖 AI: Processing Weather Check - You can also 'cancel flow' or request 'help'.
Enter the city name to get current weather information
You: Paris [SIMULATED]
🤖 AI: Current weather in Paris, : Clear at 18°C (60% humidity)
Last updated: 2025-08-26T06:04:46.758Z
👋 Ending simulation. Session summary:
Interactions: 6
Session duration: 221598ms
Simulated inputs processed: 5/5
✅ [6/42] interruptionTest - PASSED
[7/42] 🧪 Running: businessFlowsTest
📝 Inputs (5): What's the weather in Tokyo? → Tokyo → I need to make a payment → 123456 → 99.99
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 5 simulated inputs...
============================================================
You: What's the weather in Tokyo? [SIMULATED]
🤖 AI: Processing Weather Check - You can also 'cancel flow' or request 'help'.
Enter the city name to get current weather information
You: Tokyo [SIMULATED]
🤖 AI: Current weather in Shikinejima, : Sunny at 31°C (75% humidity)
Last updated: 2025-08-26T06:07:55.699Z
You: I need to make a payment [SIMULATED]
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
🤖 Processing Make a payment
Please enter your account number (6-12 digits)
You: 123456 [SIMULATED]
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
What amount would you like to pay? (minimum $0.01, maximum $10,000)
You: 99.99 [SIMULATED]
warn: fetchAiResponse error: AI call timed out after 2000ms
warn: Error: AI call timed out after 2000ms
at Timeout._onTimeout (file:///Users/ronpinkas1/git/jsfe/dist/index.js:2075:20)
at listOnTimeout (node:internal/timers:581:17)
at process.processTimers (node:internal/timers:519:7)
error: fetchAiTask error: AI communication failed: AI call timed out after 2000ms
warn: Intent analysis error:
🤖 AI: Payment link generated successfully: https://pay.example.com/123456/99.99?id=8731d0be-0e4a-4bf8-9055-8102d53ccc57
Payment ID: 8731d0be-0e4a-4bf8-9055-8102d53ccc57
Expires: 2025-08-26T07:07:59.748Z
👋 Ending simulation. Session summary:
Interactions: 6
Session duration: 414587ms
Simulated inputs processed: 5/5
✅ [7/42] businessFlowsTest - PASSED
[8/42] 🧪 Running: cryptoPriceTest
📝 Inputs (1): What's the current Bitcoin price?
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 1 simulated inputs...
============================================================
You: What's the current Bitcoin price? [SIMULATED]
🤖 AI: 🤖 Processing Check cryptocurrency prices
I will check the price of bitcoin
I found this info: {"crypto_name":"BITCOIN","price":110227,"change_24h":-1.8327542993413308,"currency":"USD"}
💰 BITCOIN Price is $110227 - 24h Change: -1.8327542993413308% - Last Updated: 8/25/2025, 11:08:00 PM
👋 Ending simulation. Session summary:
Interactions: 2
Session duration: 415754ms
Simulated inputs processed: 1/1
✅ [8/42] cryptoPriceTest - PASSED
[9/42] 🧪 Running: apiIntegrationTest
📝 Inputs (2): I want to test REST API functionality → 1
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 2 simulated inputs...
============================================================
You: I want to test REST API functionality [SIMULATED]
🤖 AI: Processing REST API demonstration - You can also 'cancel flow' or request 'help'.
This demo shows REST API capabilities. Enter a user ID (1-10) to fetch user data:
You: 1 [SIMULATED]
🤖 AI: User Info:
Name: Leanne Graham
Email: Sincere@april.biz
Phone: 1-770-736-8031 x56442
Website: hildegard.org
👋 Ending simulation. Session summary:
Interactions: 3
Session duration: 416933ms
Simulated inputs processed: 2/2
✅ [9/42] apiIntegrationTest - PASSED
[10/42] 🧪 Running: responseMappingTest
📝 Inputs (2): I want to test response mapping → 1
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 2 simulated inputs...
============================================================
You: I want to test response mapping [SIMULATED]
🤖 AI: Processing Response mapping tests - You can also 'cancel flow' or request 'help'.
Testing Response Mapping System
Choose test type:
1. JSONPath mapping
2. Array processing
3. Template formatting
4. Comprehensive mapping
Enter your choice:
You: 1 [SIMULATED]
🤖 AI: Response Mapping Tests Complete!
Result: {"location":{"name":"New York","country":"United States","coordinates":"40.7128, -74.0060"},"current":{"temperature":22,"condition":"Partly cloudy","humidity":65},"forecast":{"hourly_count":3}}
👋 Ending simulation. Session summary:
Interactions: 3
Session duration: 418022ms
Simulated inputs processed: 2/2
✅ [10/42] responseMappingTest - PASSED
[11/42] 🧪 Running: httpToolsTest
📝 Inputs (6): API testing suite → 1 → API testing suite → 2 → API testing suite → 3
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 6 simulated inputs...
============================================================
You: API testing suite [SIMULATED]
🤖 AI: Processing API testing suite - You can also 'cancel flow' or request 'help'.
API Testing Suite
Choose test type:
1. JSON API
2. Form Data
3. XML/SOAP
Enter your choice:
You: 1 [SIMULATED]
🤖 AI: JSON API Test Complete!
Result: active
User: Bret
Name: Leanne Graham
You: API testing suite [SIMULATED]
🤖 AI: Processing API testing suite - You can also 'cancel flow' or request 'help'.
API Testing Suite
Choose test type:
1. JSON API
2. Form Data
3. XML/SOAP
Enter your choice:
You: 2 [SIMULATED]
🤖 AI: Form Data Test Complete!
Result: success
Endpoint: https://httpbin.org/post
Method: POST
You: API testing suite [SIMULATED]
🤖 AI: Processing API testing suite - You can also 'cancel flow' or request 'help'.
API Testing Suite
Choose test type:
1. JSON API
2. Form Data
3. XML/SOAP
Enter your choice:
You: 3 [SIMULATED]
🤖 AI: XML/RSS Feed Test Complete!
Result: <?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title><![CDATA[BBC News]]></title>
<description><![CDATA[BBC News - News Front Page]]></description>
<link>https://www.bbc.co.uk/news</link>
<image>
<url>https://news.bbcimg.co.uk/nol/shared/img/bbc_news_120x60.gif</url>
<title>BBC News</title>
<link>https://www.bbc.co.uk/news</link>
</image>
<generator>RSS for Node</generator>
<lastBuildDate>Tue, 26 Aug 2025 06:08:06 GMT</lastBuildDate>
<atom:link href="https://feeds.bbci.co.uk/news/rss.xml" rel="self" type="application/rss+xml"/>
<copyright><![CDATA[Copyright: (C) British Broadcasting Corporation, see https://www.bbc.co.uk/usingthebbc/terms-of-use/#15metadataandrssfeeds for terms and conditions of reuse.]]></copyright>
<language><![CDATA[en-gb]]></language>
<ttl>15</ttl>
<item>
<title><![CDATA[Minister admits domestic abuse screening tool doesn't work]]></title>
<description><![CDATA[The safeguarding minister says the Dash questionnaire has "obvious problems" but is the best authorities have for now.]]></description>
<link>https://www.bbc.com/news/articles/cr4e7yrxkgvo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/cr4e7yrxkgvo#0</guid>
<pubDate>Tue, 26 Aug 2025 05:02:04 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/3f94/live/dbec64b0-81bd-11f0-83cc-c5da98c419b8.jpg"/>
</item>
<item>
<title><![CDATA[Schools, care homes and sports clubs sold off to pay spiralling council debt]]></title>
<description><![CDATA[Hundreds of council-owned buildings being sold as local authorities seek to reduce debts of £122bn.]]></description>
<link>https://www.bbc.com/news/articles/cq87497v8ypo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/cq87497v8ypo#0</guid>
<pubDate>Mon, 25 Aug 2025 23:03:28 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/22bd/live/6a974100-81d5-11f0-ab3e-bd52082cd0ae.jpg"/>
</item>
<item>
<title><![CDATA[Three dead and one injured as helicopter crashes during flying lesson]]></title>
<description><![CDATA[One person remains in hospital in a serious condition after the incident near Shanklin.]]></description>
<link>https://www.bbc.com/news/articles/c87e22ryerlo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/c87e22ryerlo#0</guid>
<pubDate>Mon, 25 Aug 2025 17:41:43 GMT</pubDate>
<media:thumbnail width="240" height="134" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/a1c0/live/1bb649e0-81f4-11f0-ab3e-bd52082cd0ae.jpg"/>
</item>
<item>
<title><![CDATA[Child sex abuse victim begs Elon Musk to remove links to her images]]></title>
<description><![CDATA[BBC investigation finds US victim's images are traded globally by an operator based in Indonesia.]]></description>
<link>https://www.bbc.com/news/articles/cq587wv4d5go?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/cq587wv4d5go#0</guid>
<pubDate>Mon, 25 Aug 2025 23:17:45 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/b0a0/live/9b341db0-7cee-11f0-83cc-c5da98c419b8.png"/>
</item>
<item>
<title><![CDATA[Gazan students granted approval to study in UK]]></title>
<description><![CDATA[British government approves arrival of around 40 students with funded scholarships, pending Israeli approval.]]></description>
<link>https://www.bbc.com/news/articles/cgqnjqgp719o?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/cgqnjqgp719o#0</guid>
<pubDate>Tue, 26 Aug 2025 00:00:00 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/7e84/live/936b5200-823f-11f0-bb05-77aaeb56c558.jpg"/>
</item>
<item>
<title><![CDATA[How Taiwan is preparing for Chinese attack with acting, fake blood and mock missile strikes]]></title>
<description><![CDATA[Leaders are strengthening its defence, but most Taiwanese believe it is unlikely China will invade soon.]]></description>
<link>https://www.bbc.com/news/articles/cp94v42gmg9o?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/cp94v42gmg9o#0</guid>
<pubDate>Mon, 25 Aug 2025 22:07:21 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/6a39/live/71295520-7e6b-11f0-83cc-c5da98c419b8.png"/>
</item>
<item>
<title><![CDATA[Nigel Farage says illegal migration is a 'scourge']]></title>
<description><![CDATA[The Reform UK leader will outline his plans to tackle small boat crossing later on Tuesday.]]></description>
<link>https://www.bbc.com/news/articles/c5yk4r5e514o?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/c5yk4r5e514o#0</guid>
<pubDate>Tue, 26 Aug 2025 01:42:10 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/8df8/live/a8a9d940-820b-11f0-a34f-318be3fb0481.jpg"/>
</item>
<item>
<title><![CDATA[Sitting up straight isn't the only secret to good posture - here are three more tips]]></title>
<description><![CDATA[Here are Dr Xand's three suggestions on how to look after your back without turning into a statue.]]></description>
<link>https://www.bbc.com/news/articles/c890kejpg34o?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/c890kejpg34o#0</guid>
<pubDate>Tue, 26 Aug 2025 00:07:22 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/8b33/live/c5ef64e0-7d0e-11f0-affd-3db3a18ad929.jpg"/>
</item>
<item>
<title><![CDATA[Trump orders removal of Federal Reserve governor Lisa Cook]]></title>
<description><![CDATA[Cook says the US president "has no authority to do so" in defiance of Trump's escalatory move against the central bank.]]></description>
<link>https://www.bbc.com/news/articles/cx275n8gx0ro?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/cx275n8gx0ro#0</guid>
<pubDate>Tue, 26 Aug 2025 03:30:15 GMT</pubDate>
<media:thumbnail width="240" height="134" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/c0fc/live/251d1310-8212-11f0-a34f-318be3fb0481.jpg"/>
</item>
<item>
<title><![CDATA[Five journalists among 20 killed in Israeli double strike on hospital]]></title>
<description><![CDATA[Israeli Prime Minister Benjamin Netanyahu said it was a "tragic mishap" and promised a "thorough investigation".]]></description>
<link>https://www.bbc.com/news/articles/cp89rp48246o?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/cp89rp48246o#0</guid>
<pubDate>Mon, 25 Aug 2025 18:31:54 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/68e6/live/14296ba0-81e8-11f0-a34f-318be3fb0481.jpg"/>
</item>
<item>
<title><![CDATA[Chocolate and butter prices help drive food inflation to 18-month high]]></title>
<description><![CDATA[A survey says food inflation is at its highest level for 18 months, as the cost of staples grow.]]></description>
<link>https://www.bbc.com/news/articles/cly4eme0284o?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/cly4eme0284o#0</guid>
<pubDate>Mon, 25 Aug 2025 23:10:09 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/18a0/live/e7e74a70-81d4-11f0-9fb8-d74a5f4416f6.jpg"/>
</item>
<item>
<title><![CDATA['How will I pay workers?': Indian factories hit hard by Trump's 50% tariffs ]]></title>
<description><![CDATA[BBC correspondents visit export hubs across India to assess how steep US tariffs are impacting business owners. ]]></description>
<link>https://www.bbc.com/news/articles/c98lr56mznjo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/c98lr56mznjo#1</guid>
<pubDate>Mon, 25 Aug 2025 21:03:03 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/a01c/live/4e90b920-7f3f-11f0-a71b-5d1056a364fc.jpg"/>
</item>
<item>
<title><![CDATA[The Papers: 'In harm's way' and Farage's 'mass deportations' plan]]></title>
<description><![CDATA[Israel's double strike on a hospital in Gaza and Nigel Farage's plan for mass deportations dominate Tuesday's papers.]]></description>
<link>https://www.bbc.com/news/articles/cx2qd8k2g8lo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/cx2qd8k2g8lo#1</guid>
<pubDate>Mon, 25 Aug 2025 23:55:39 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/5058/live/3135a080-8209-11f0-83cc-c5da98c419b8.jpg"/>
</item>
<item>
<title><![CDATA[Israeli double strike on Gaza hospital - what we know]]></title>
<description><![CDATA[Netanyahu said it was a "tragic mishap" but did little to address the apparent "double-tap" nature of the attack. ]]></description>
<link>https://www.bbc.com/news/articles/c80d2zrdj7vo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/c80d2zrdj7vo#1</guid>
<pubDate>Mon, 25 Aug 2025 19:52:41 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/0922/live/1b6f1970-81cd-11f0-b1b7-d5227004453f.jpg"/>
</item>
<item>
<title><![CDATA[Pride, passion & heartbreak - but Newcastle need end to Isak saga]]></title>
<description><![CDATA[Newcastle United managed to score two goals against Liverpool, but the black-and-whites need a resolution to the Alexander Isak saga.]]></description>
<link>https://www.bbc.com/sport/football/articles/c78mgdz88y0o?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/sport/football/articles/c78mgdz88y0o#1</guid>
<pubDate>Tue, 26 Aug 2025 00:23:11 GMT</pubDate>
<media:thumbnail width="240" height="133" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/a58d/live/93a18bc0-8214-11f0-83cc-c5da98c419b8.png"/>
</item>
<item>
<title><![CDATA[South Korea plays charm offensive with Trump amid trade pressure]]></title>
<description><![CDATA[Ahead of Lee's White House visit, anxieties were bubbling in Seoul that the meeting could turn bitter.]]></description>
<link>https://www.bbc.com/news/articles/cy5pdlgl64zo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/cy5pdlgl64zo#1</guid>
<pubDate>Tue, 26 Aug 2025 02:55:48 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/88a9/live/aebe1ae0-820f-11f0-aa9b-01131831061f.jpg"/>
</item>
<item>
<title><![CDATA[Scotland is known for its rain. So why are experts worried about water supplies?]]></title>
<description><![CDATA[Restrictions are being introduced on water use by businesses near two rivers where the levels are low.]]></description>
<link>https://www.bbc.com/news/articles/c0qly7g9pepo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/c0qly7g9pepo#1</guid>
<pubDate>Mon, 25 Aug 2025 16:20:01 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/6f27/live/ea205080-8192-11f0-bad1-43a8cc805880.jpg"/>
</item>
<item>
<title><![CDATA[Notting Hill Carnival revellers party in the sunny streets]]></title>
<description><![CDATA[The celebrations continue with the adult's parade, sound systems and live performances on Monday.]]></description>
<link>https://www.bbc.com/news/articles/c4gjyyd2320o?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/c4gjyyd2320o#1</guid>
<pubDate>Mon, 25 Aug 2025 19:52:50 GMT</pubDate>
<media:thumbnail width="240" height="134" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/0349/live/0a14ed90-81db-11f0-a34f-318be3fb0481.png"/>
</item>
<item>
<title><![CDATA[Play here]]></title>
<description><![CDATA[Find out if you're forecast to become the BBC's next star meteorologist by playing our new guessing game]]></description>
<link>https://www.bbc.com/weather/articles/cwy5r7xwq8xo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/weather/articles/cwy5r7xwq8xo#2</guid>
<pubDate>Tue, 26 Aug 2025 04:59:10 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/1b3e/live/1200eb90-7ea1-11f0-83cc-c5da98c419b8.png"/>
</item>
<item>
<title><![CDATA[Less serious violence at Notting Hill Carnival this year, say police]]></title>
<description><![CDATA[More than 400 people were arrested at the event, but police say fewer serious incidents took place.]]></description>
<link>https://www.bbc.com/news/articles/cpdj7lnx40xo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/cpdj7lnx40xo#3</guid>
<pubDate>Mon, 25 Aug 2025 20:47:16 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/6cdf/live/7b66f240-81ea-11f0-aa40-9bf70e78287c.jpg"/>
</item>
<item>
<title><![CDATA[Australia blames Iran for antisemitic attacks in Sydney and Melbourne]]></title>
<description><![CDATA[Australia says it will expel Iran's ambassador after accusing its government of "orchestrating" two attacks last year.]]></description>
<link>https://www.bbc.com/news/articles/c9d085n75q3o?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/c9d085n75q3o#3</guid>
<pubDate>Tue, 26 Aug 2025 04:14:55 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/4127/live/98887fe0-8237-11f0-83cc-c5da98c419b8.jpg"/>
</item>
<item>
<title><![CDATA[Ukraine's naval band joins Scots Guards for joint performance]]></title>
<description><![CDATA[The two military bands were playing at Buckingham Palace to mark the the 34th Independence Day of Ukraine. ]]></description>
<link>https://www.bbc.com/news/videos/c627qgke3w3o?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/videos/c627qgke3w3o#3</guid>
<pubDate>Mon, 25 Aug 2025 22:10:55 GMT</pubDate>
<media:thumbnail width="240" height="134" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/e761/live/1f5bc6b0-81fe-11f0-83cc-c5da98c419b8.png"/>
</item>
<item>
<title><![CDATA[Man finds wife's lost wedding rings after searching through landfill]]></title>
<description><![CDATA[A Canadian husband crawled on his hands and knees through piles of compost to find the diamond rings.]]></description>
<link>https://www.bbc.com/news/articles/cewyr1jl9jko?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/cewyr1jl9jko#3</guid>
<pubDate>Mon, 25 Aug 2025 23:55:37 GMT</pubDate>
<media:thumbnail width="240" height="134" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/b215/live/445a3d10-8204-11f0-b08d-59f5b63906c7.jpg"/>
</item>
<item>
<title><![CDATA[Lil Nas X pleads not guilty to four felony charges after LA arrest]]></title>
<description><![CDATA[The rapper, whose legal name is Montero Lamar Hill, was detained last week while wandering the streets in his underwear.]]></description>
<link>https://www.bbc.com/news/articles/cly4ey0nm7xo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/cly4ey0nm7xo#3</guid>
<pubDate>Mon, 25 Aug 2025 23:05:34 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/9d4a/live/dbddd860-8202-11f0-ab3e-bd52082cd0ae.jpg"/>
</item>
<item>
<title><![CDATA[Watch: Trump says he wants to meet Kim Jong Un]]></title>
<description><![CDATA[In a meeting with South Korean President Lee Jae Myung, Trump said he will meet with the North Korean leader in the "appropriate future".]]></description>
<link>https://www.bbc.com/news/videos/c4gzy1qjrpxo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/videos/c4gzy1qjrpxo#3</guid>
<pubDate>Mon, 25 Aug 2025 19:14:45 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/c8bc/live/1a5bf690-81df-11f0-83cc-c5da98c419b8.jpg"/>
</item>
<item>
<title><![CDATA[Kneecap cancel US tour dates amid court case]]></title>
<description><![CDATA[The trio said they have cancelled all upcoming US tour dates because of the "proximity of our next court hearing in London".]]></description>
<link>https://www.bbc.com/news/articles/c99m2zne0y9o?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/news/articles/c99m2zne0y9o#3</guid>
<pubDate>Mon, 25 Aug 2025 16:12:37 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/9790/live/5614c0f0-81c0-11f0-b1e0-f1e3fb4f730d.jpg"/>
</item>
<item>
<title><![CDATA[BBC News app]]></title>
<description><![CDATA[Top stories, breaking news, live reporting, and follow news topics that match your interests]]></description>
<link>https://www.bbc.co.uk/news/10628994?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.co.uk/news/10628994#4</guid>
<pubDate>Wed, 30 Apr 2025 14:04:28 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/2cf6/live/d1e71250-9509-11ee-8df3-1d2983d8814f.png"/>
</item>
<item>
<title><![CDATA[Israel begins ground offensive in Gaza City]]></title>
<description><![CDATA[Palestinians flee Gaza City districts as Israel says first stages of offensive have begun]]></description>
<link>https://www.bbc.co.uk/sounds/play/p0lybfkm?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.co.uk/sounds/play/p0lybfkm#5</guid>
<pubDate>Thu, 21 Aug 2025 17:46:00 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/images/ic/240x135/p0l7jnbt.jpg"/>
</item>
<item>
<title><![CDATA[Is Donald Trump losing his Latino base?]]></title>
<description><![CDATA[And can the Democrats win them back?]]></description>
<link>https://www.bbc.co.uk/sounds/play/w3ct7t5t?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.co.uk/sounds/play/w3ct7t5t#5</guid>
<pubDate>Fri, 22 Aug 2025 12:05:00 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/images/ic/240x135/p0j72y80.jpg"/>
</item>
<item>
<title><![CDATA['A rivalry to run and run - a sensational night at Newcastle']]></title>
<description><![CDATA[Newcastle United and Liverpool are providing the Premier League's latest big rivalry as a night of drama on Tyneside is settled by a record-breaking teenager, says chief football writer Phil McNulty.]]></description>
<link>https://www.bbc.com/sport/football/articles/c4gz6ry2lxko?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/sport/football/articles/c4gz6ry2lxko#7</guid>
<pubDate>Mon, 25 Aug 2025 23:25:04 GMT</pubDate>
<media:thumbnail width="240" height="134" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/9dee/live/59cbf690-8202-11f0-b08d-59f5b63906c7.jpg"/>
</item>
<item>
<title><![CDATA[Teenager Ngumoha scores last-minute winner as Liverpool beat Newcastle]]></title>
<description><![CDATA[Teenager Rio Ngumoha scores a 100th-minute winner as Liverpool beat Newcastle 3-2 in the Premier League, with the 16-year old becoming the youngest scorer in the club's history on a dramatic night at St James' Park. ]]></description>
<link>https://www.bbc.com/sport/football/videos/c1w8yv101gxo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/sport/football/videos/c1w8yv101gxo#7</guid>
<pubDate>Mon, 25 Aug 2025 21:46:42 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/3401/live/e9d9eb80-81fc-11f0-ab3e-bd52082cd0ae.jpg"/>
</item>
<item>
<title><![CDATA[Pride, passion & heartbreak - but Newcastle need end to Isak saga]]></title>
<description><![CDATA[Newcastle United managed to score two goals against Liverpool, but the black-and-whites need a resolution to the Alexander Isak saga.]]></description>
<link>https://www.bbc.com/sport/football/articles/c78mgdz88y0o?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/sport/football/articles/c78mgdz88y0o#7</guid>
<pubDate>Tue, 26 Aug 2025 00:23:11 GMT</pubDate>
<media:thumbnail width="240" height="133" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/a58d/live/93a18bc0-8214-11f0-83cc-c5da98c419b8.png"/>
</item>
<item>
<title><![CDATA['Chelsea were angry to lose him' - who is Liverpool's Ngumoha?]]></title>
<description><![CDATA[Sixteen-year-old Rio Ngumoha scores the winning goal for Liverpool against Newcastle in the Premier League, but who is he?]]></description>
<link>https://www.bbc.com/sport/football/articles/cwy5jw801q2o?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/sport/football/articles/cwy5jw801q2o#7</guid>
<pubDate>Mon, 25 Aug 2025 21:40:03 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/7790/live/864a51b0-81fa-11f0-83cc-c5da98c419b8.png"/>
</item>
<item>
<title><![CDATA[Draper 'almost happy' to drop a set on US Open return]]></title>
<description><![CDATA[Jack Draper comes through a severe examination of his fitness on his US Open return to join fellow Briton Cameron Norrie in the second round.]]></description>
<link>https://www.bbc.com/sport/tennis/articles/ce87j8md4djo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/sport/tennis/articles/ce87j8md4djo#7</guid>
<pubDate>Mon, 25 Aug 2025 22:50:26 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/8673/live/169341e0-81f7-11f0-a34f-318be3fb0481.jpg"/>
</item>
<item>
<title><![CDATA['Nerves got to me' - Keys crumbles to shock US Open first-round loss]]></title>
<description><![CDATA[Australian Open champion Madison Keys says her nerves got the better of her in a shock US Open first-round defeat by Renata Zarazua.]]></description>
<link>https://www.bbc.com/sport/tennis/articles/cd9j513kk4vo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/sport/tennis/articles/cd9j513kk4vo#7</guid>
<pubDate>Mon, 25 Aug 2025 22:01:11 GMT</pubDate>
<media:thumbnail width="240" height="135" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/bfce/live/74188850-81f9-11f0-a72b-71560c61cf14.jpg"/>
</item>
<item>
<title><![CDATA[Dibling deal 'fits the bill' - Everton sign £40m teenager]]></title>
<description><![CDATA[Everton sign Tyler Dibling from Southampton in a deal worth an initial £35m plus £5m in add-ons.]]></description>
<link>https://www.bbc.com/sport/football/articles/c07py7jg3gjo?at_medium=RSS&at_campaign=rss</link>
<guid isPermaLink="false">https://www.bbc.com/sport/football/articles/c07py7jg3gjo#7</guid>
<pubDate>Mon, 25 Aug 2025 19:21:14 GMT</pubDate>
<media:thumbnail width="240" height="134" url="https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/a2b8/live/c4f99ec0-81e6-11f0-aa40-9bf70e78287c.jpg"/>
</item>
</channel>
</rss>
XML parsing capabilities demonstrated.
👋 Ending simulation. Session summary:
Interactions: 7
Session duration: 421907ms
Simulated inputs processed: 6/6
✅ [11/42] httpToolsTest - PASSED
[12/42] 🧪 Running: switchConditionsTest
📝 Inputs (1): Enhanced SWITCH with Condition Support Test
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 1 simulated inputs...
============================================================
You: Enhanced SWITCH with Condition Support Test [SIMULATED]
🤖 AI: 🤖 Processing Enhanced SWITCH condition testing
Enhanced SWITCH Test Results:
Test1(exact): EXACT_MATCH_SUCCESS, Test2(age): ADULT_USER, Test3(complex): VIP_ACCESS_GRANTED, Test4(mixed): PREMIUM_EXACT_MATCH
👋 Ending simulation. Session summary:
Interactions: 2
Session duration: 422409ms
Simulated inputs processed: 1/1
✅ [12/42] switchConditionsTest - PASSED
[13/42] 🧪 Running: problemScenarioTest
📝 Inputs (3): I want to test REST API functionality → 999 → 1
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 3 simulated inputs...
============================================================
You: I want to test REST API functionality [SIMULATED]
🤖 AI: Processing REST API demonstration - You can also 'cancel flow' or request 'help'.
This demo shows REST API capabilities. Enter a user ID (1-10) to fetch user data:
You: 999 [SIMULATED]
warn: Error executing tool RestApiExample: HTTP 404 Not Found: {}
🤖 AI: Processing REST API retry handler - You can also 'cancel flow' or request 'help'.
Failed to fetch user data. Please try again with a valid user ID (1-10):
You: 1 [SIMULATED]
🤖 AI: User Info (after retry):
Name: Leanne Graham
Email: Sincere@april.biz
Phone: 1-770-736-8031 x56442
Website: hildegard.org
👋 Ending simulation. Session summary:
Interactions: 4
Session duration: 425683ms
Simulated inputs processed: 3/3
✅ [13/42] problemScenarioTest - PASSED
[14/42] 🧪 Running: accountVerificationTest
📝 Inputs (4): I need to make a payment → 999999 → 123456 → 50.00
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 4 simulated inputs...
============================================================
You: I need to make a payment [SIMULATED]
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
🤖 Processing Make a payment
Please enter your account number (6-12 digits)
You: 999999 [SIMULATED]
warn: Error executing tool VerifyAccountTool: Invalid account number
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
Account verification failed. Please ensure you entered a valid 6-12 digit account number.
You: 123456 [SIMULATED]
🤖 AI: Processing Make a payment - You can also 'cancel flow' or request 'help'.
What amount would you like to pay? (minimum $0.01, maximum $10,000)
You: 50.00 [SIMULATED]
🤖 AI: Payment link generated successfully: https://pay.example.com/123456/50.00?id=5ccffaf0-db29-47ea-b5e0-cad2912e7f0f
Payment ID: 5ccffaf0-db29-47ea-b5e0-cad2912e7f0f
Expires: 2025-08-26T07:08:14.643Z
👋 Ending simulation. Session summary:
Interactions: 5
Session duration: 429482ms
Simulated inputs processed: 4/4
✅ [14/42] accountVerificationTest - PASSED
[15/42] 🧪 Running: navigationTest
📝 Inputs (2): Show me the test menu → TestMenu
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 2 simulated inputs...
============================================================
You: Show me the test menu [SIMULATED]
🤖 AI: 🤖 Processing Test Menu
This is the Test Menu. I can help you with:
Make a payment
Check weather
Account verification
What would you like to do?
You: TestMenu [SIMULATED]
🤖 AI: 🤖 Processing Test Menu
This is the Test Menu. I can help you with:
Make a payment
Check weather
Account verification
What would you like to do?
👋 Ending simulation. Session summary:
Interactions: 3
Session duration: 430463ms
Simulated inputs processed: 2/2
✅ [15/42] navigationTest - PASSED
[16/42] 🧪 Running: callTypeDemoTest
📝 Inputs (2): CallTypeDemo → 1
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 2 simulated inputs...
============================================================
You: CallTypeDemo [SIMULATED]
🤖 AI: Processing Flow Navigation Demo - You can also 'cancel flow' or request 'help'.
This flow demonstrates callType options. Choose:
1. 'call' - Normal sub-flow
2. 'replace' - Replace this flow
3. 'reboot' - Clear all flows and restart
You: 1 [SIMULATED]
🤖 AI: This is the Test Menu. I can help you with:
Make a payment
Check weather
Account verification
What would you like to do?
CallTypeDemo completed! Returning from call.
👋 Ending simulation. Session summary:
Interactions: 3
Session duration: 430966ms
Simulated inputs processed: 2/2
✅ [16/42] callTypeDemoTest - PASSED
[17/42] 🧪 Running: restApiDemoTest
📝 Inputs (2): RestApiDemo → 7
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 2 simulated inputs...
============================================================
You: RestApiDemo [SIMULATED]
🤖 AI: Processing REST API demonstration - You can also 'cancel flow' or request 'help'.
This demo shows REST API capabilities. Enter a user ID (1-10) to fetch user data:
You: 7 [SIMULATED]
🤖 AI: User Info:
Name: Kurtis Weissnat
Email: Telly.Hoeger@billy.biz
Phone: 210.067.6132
Website: elvis.io
👋 Ending simulation. Session summary:
Interactions: 3
Session duration: 431890ms
Simulated inputs processed: 2/2
✅ [17/42] restApiDemoTest - PASSED
[18/42] 🧪 Running: accessControlTest
📝 Inputs (6): UserAccessControl → admin → UserAccessControl → invalid_role → manager → exit
🧪 Enhanced Workflow Engine - Test Simulation Mode
Session ID: test-session
Running 6 simulated inputs...
============================================================
You: UserAccessControl [SIMULATED]
🤖 AI: Processing User access control - You can also 'cancel flow' or request 'help'.
Enter your role (admin, manager, user, guest):
You: admin [SIMULATED]
🤖 AI: 🔑 Admin access granted. Full system privileges enabled.
You: UserAccessControl [SIMULATED]
🤖 AI: Processing User access control - You can also 'cancel flow' or request 'help'.
Enter your role (admin, manager, user, guest):
You: invalid_role [SIMULATED]