-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrueEyeBeta.json
More file actions
3353 lines (3353 loc) · 184 KB
/
TrueEyeBeta.json
File metadata and controls
3353 lines (3353 loc) · 184 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
{
"data": {
"edges": [
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "ChatInput",
"id": "ChatInput-WGsAl",
"name": "message",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "urls",
"id": "URLComponent-ZKgiv",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-ChatInput-WGsAl{œdataTypeœ:œChatInputœ,œidœ:œChatInput-WGsAlœ,œnameœ:œmessageœ,œoutput_typesœ:[œMessageœ]}-URLComponent-ZKgiv{œfieldNameœ:œurlsœ,œidœ:œURLComponent-ZKgivœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "ChatInput-WGsAl",
"sourceHandle": "{œdataTypeœ:œChatInputœ,œidœ:œChatInput-WGsAlœ,œnameœ:œmessageœ,œoutput_typesœ:[œMessageœ]}",
"target": "URLComponent-ZKgiv",
"targetHandle": "{œfieldNameœ:œurlsœ,œidœ:œURLComponent-ZKgivœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "URLComponent",
"id": "URLComponent-ZKgiv",
"name": "data",
"output_types": [
"Data"
]
},
"targetHandle": {
"fieldName": "input_data",
"id": "ParserComponent-ZfeDa",
"inputTypes": [
"DataFrame",
"Data"
],
"type": "other"
}
},
"id": "reactflow__edge-URLComponent-ZKgiv{œdataTypeœ:œURLComponentœ,œidœ:œURLComponent-ZKgivœ,œnameœ:œdataœ,œoutput_typesœ:[œDataœ]}-ParserComponent-ZfeDa{œfieldNameœ:œinput_dataœ,œidœ:œParserComponent-ZfeDaœ,œinputTypesœ:[œDataFrameœ,œDataœ],œtypeœ:œotherœ}",
"selected": false,
"source": "URLComponent-ZKgiv",
"sourceHandle": "{œdataTypeœ:œURLComponentœ,œidœ:œURLComponent-ZKgivœ,œnameœ:œdataœ,œoutput_typesœ:[œDataœ]}",
"target": "ParserComponent-ZfeDa",
"targetHandle": "{œfieldNameœ:œinput_dataœ,œidœ:œParserComponent-ZfeDaœ,œinputTypesœ:[œDataFrameœ,œDataœ],œtypeœ:œotherœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "ParserComponent",
"id": "ParserComponent-ZfeDa",
"name": "parsed_text",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "parsed_text",
"id": "Prompt-DaEQe",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-ParserComponent-ZfeDa{œdataTypeœ:œParserComponentœ,œidœ:œParserComponent-ZfeDaœ,œnameœ:œparsed_textœ,œoutput_typesœ:[œMessageœ]}-Prompt-DaEQe{œfieldNameœ:œparsed_textœ,œidœ:œPrompt-DaEQeœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "ParserComponent-ZfeDa",
"sourceHandle": "{œdataTypeœ:œParserComponentœ,œidœ:œParserComponent-ZfeDaœ,œnameœ:œparsed_textœ,œoutput_typesœ:[œMessageœ]}",
"target": "Prompt-DaEQe",
"targetHandle": "{œfieldNameœ:œparsed_textœ,œidœ:œPrompt-DaEQeœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "Prompt",
"id": "Prompt-DaEQe",
"name": "prompt",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "system_message",
"id": "AnthropicModel-ff7II",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-Prompt-DaEQe{œdataTypeœ:œPromptœ,œidœ:œPrompt-DaEQeœ,œnameœ:œpromptœ,œoutput_typesœ:[œMessageœ]}-AnthropicModel-ff7II{œfieldNameœ:œsystem_messageœ,œidœ:œAnthropicModel-ff7IIœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "Prompt-DaEQe",
"sourceHandle": "{œdataTypeœ:œPromptœ,œidœ:œPrompt-DaEQeœ,œnameœ:œpromptœ,œoutput_typesœ:[œMessageœ]}",
"target": "AnthropicModel-ff7II",
"targetHandle": "{œfieldNameœ:œsystem_messageœ,œidœ:œAnthropicModel-ff7IIœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "Prompt",
"id": "Prompt-DaEQe",
"name": "prompt",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "input_value",
"id": "AnthropicModel-ff7II",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-Prompt-DaEQe{œdataTypeœ:œPromptœ,œidœ:œPrompt-DaEQeœ,œnameœ:œpromptœ,œoutput_typesœ:[œMessageœ]}-AnthropicModel-ff7II{œfieldNameœ:œinput_valueœ,œidœ:œAnthropicModel-ff7IIœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "Prompt-DaEQe",
"sourceHandle": "{œdataTypeœ:œPromptœ,œidœ:œPrompt-DaEQeœ,œnameœ:œpromptœ,œoutput_typesœ:[œMessageœ]}",
"target": "AnthropicModel-ff7II",
"targetHandle": "{œfieldNameœ:œinput_valueœ,œidœ:œAnthropicModel-ff7IIœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "AnthropicModel",
"id": "AnthropicModel-ff7II",
"name": "text_output",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "article",
"id": "Prompt-qLrNR",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-AnthropicModel-ff7II{œdataTypeœ:œAnthropicModelœ,œidœ:œAnthropicModel-ff7IIœ,œnameœ:œtext_outputœ,œoutput_typesœ:[œMessageœ]}-Prompt-qLrNR{œfieldNameœ:œarticleœ,œidœ:œPrompt-qLrNRœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "AnthropicModel-ff7II",
"sourceHandle": "{œdataTypeœ:œAnthropicModelœ,œidœ:œAnthropicModel-ff7IIœ,œnameœ:œtext_outputœ,œoutput_typesœ:[œMessageœ]}",
"target": "Prompt-qLrNR",
"targetHandle": "{œfieldNameœ:œarticleœ,œidœ:œPrompt-qLrNRœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "Prompt",
"id": "Prompt-qLrNR",
"name": "prompt",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "system_message",
"id": "AnthropicModel-6Akp4",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-Prompt-qLrNR{œdataTypeœ:œPromptœ,œidœ:œPrompt-qLrNRœ,œnameœ:œpromptœ,œoutput_typesœ:[œMessageœ]}-AnthropicModel-6Akp4{œfieldNameœ:œsystem_messageœ,œidœ:œAnthropicModel-6Akp4œ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "Prompt-qLrNR",
"sourceHandle": "{œdataTypeœ:œPromptœ,œidœ:œPrompt-qLrNRœ,œnameœ:œpromptœ,œoutput_typesœ:[œMessageœ]}",
"target": "AnthropicModel-6Akp4",
"targetHandle": "{œfieldNameœ:œsystem_messageœ,œidœ:œAnthropicModel-6Akp4œ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "Prompt",
"id": "Prompt-qLrNR",
"name": "prompt",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "input_value",
"id": "AnthropicModel-6Akp4",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-Prompt-qLrNR{œdataTypeœ:œPromptœ,œidœ:œPrompt-qLrNRœ,œnameœ:œpromptœ,œoutput_typesœ:[œMessageœ]}-AnthropicModel-6Akp4{œfieldNameœ:œinput_valueœ,œidœ:œAnthropicModel-6Akp4œ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "Prompt-qLrNR",
"sourceHandle": "{œdataTypeœ:œPromptœ,œidœ:œPrompt-qLrNRœ,œnameœ:œpromptœ,œoutput_typesœ:[œMessageœ]}",
"target": "AnthropicModel-6Akp4",
"targetHandle": "{œfieldNameœ:œinput_valueœ,œidœ:œAnthropicModel-6Akp4œ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "AnthropicModel",
"id": "AnthropicModel-ff7II",
"name": "text_output",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "analysis1",
"id": "Prompt-l52jJ",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-AnthropicModel-ff7II{œdataTypeœ:œAnthropicModelœ,œidœ:œAnthropicModel-ff7IIœ,œnameœ:œtext_outputœ,œoutput_typesœ:[œMessageœ]}-Prompt-l52jJ{œfieldNameœ:œanalysis1œ,œidœ:œPrompt-l52jJœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "AnthropicModel-ff7II",
"sourceHandle": "{œdataTypeœ:œAnthropicModelœ,œidœ:œAnthropicModel-ff7IIœ,œnameœ:œtext_outputœ,œoutput_typesœ:[œMessageœ]}",
"target": "Prompt-l52jJ",
"targetHandle": "{œfieldNameœ:œanalysis1œ,œidœ:œPrompt-l52jJœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "AnthropicModel",
"id": "AnthropicModel-6Akp4",
"name": "text_output",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "analysis3",
"id": "Prompt-l52jJ",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-AnthropicModel-6Akp4{œdataTypeœ:œAnthropicModelœ,œidœ:œAnthropicModel-6Akp4œ,œnameœ:œtext_outputœ,œoutput_typesœ:[œMessageœ]}-Prompt-l52jJ{œfieldNameœ:œanalysis3œ,œidœ:œPrompt-l52jJœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "AnthropicModel-6Akp4",
"sourceHandle": "{œdataTypeœ:œAnthropicModelœ,œidœ:œAnthropicModel-6Akp4œ,œnameœ:œtext_outputœ,œoutput_typesœ:[œMessageœ]}",
"target": "Prompt-l52jJ",
"targetHandle": "{œfieldNameœ:œanalysis3œ,œidœ:œPrompt-l52jJœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "ParserComponent",
"id": "ParserComponent-ZfeDa",
"name": "parsed_text",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "article",
"id": "Prompt-l52jJ",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-ParserComponent-ZfeDa{œdataTypeœ:œParserComponentœ,œidœ:œParserComponent-ZfeDaœ,œnameœ:œparsed_textœ,œoutput_typesœ:[œMessageœ]}-Prompt-l52jJ{œfieldNameœ:œarticleœ,œidœ:œPrompt-l52jJœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "ParserComponent-ZfeDa",
"sourceHandle": "{œdataTypeœ:œParserComponentœ,œidœ:œParserComponent-ZfeDaœ,œnameœ:œparsed_textœ,œoutput_typesœ:[œMessageœ]}",
"target": "Prompt-l52jJ",
"targetHandle": "{œfieldNameœ:œarticleœ,œidœ:œPrompt-l52jJœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "Prompt",
"id": "Prompt-l52jJ",
"name": "prompt",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "system_message",
"id": "AnthropicModel-BFQkw",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-Prompt-l52jJ{œdataTypeœ:œPromptœ,œidœ:œPrompt-l52jJœ,œnameœ:œpromptœ,œoutput_typesœ:[œMessageœ]}-AnthropicModel-BFQkw{œfieldNameœ:œsystem_messageœ,œidœ:œAnthropicModel-BFQkwœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "Prompt-l52jJ",
"sourceHandle": "{œdataTypeœ:œPromptœ,œidœ:œPrompt-l52jJœ,œnameœ:œpromptœ,œoutput_typesœ:[œMessageœ]}",
"target": "AnthropicModel-BFQkw",
"targetHandle": "{œfieldNameœ:œsystem_messageœ,œidœ:œAnthropicModel-BFQkwœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "Prompt",
"id": "Prompt-l52jJ",
"name": "prompt",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "input_value",
"id": "AnthropicModel-BFQkw",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-Prompt-l52jJ{œdataTypeœ:œPromptœ,œidœ:œPrompt-l52jJœ,œnameœ:œpromptœ,œoutput_typesœ:[œMessageœ]}-AnthropicModel-BFQkw{œfieldNameœ:œinput_valueœ,œidœ:œAnthropicModel-BFQkwœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "Prompt-l52jJ",
"sourceHandle": "{œdataTypeœ:œPromptœ,œidœ:œPrompt-l52jJœ,œnameœ:œpromptœ,œoutput_typesœ:[œMessageœ]}",
"target": "AnthropicModel-BFQkw",
"targetHandle": "{œfieldNameœ:œinput_valueœ,œidœ:œAnthropicModel-BFQkwœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "AnthropicModel",
"id": "AnthropicModel-ff7II",
"name": "text_output",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "analysis1",
"id": "Prompt-L3qXf",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-AnthropicModel-ff7II{œdataTypeœ:œAnthropicModelœ,œidœ:œAnthropicModel-ff7IIœ,œnameœ:œtext_outputœ,œoutput_typesœ:[œMessageœ]}-Prompt-L3qXf{œfieldNameœ:œanalysis1œ,œidœ:œPrompt-L3qXfœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "AnthropicModel-ff7II",
"sourceHandle": "{œdataTypeœ:œAnthropicModelœ,œidœ:œAnthropicModel-ff7IIœ,œnameœ:œtext_outputœ,œoutput_typesœ:[œMessageœ]}",
"target": "Prompt-L3qXf",
"targetHandle": "{œfieldNameœ:œanalysis1œ,œidœ:œPrompt-L3qXfœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "AnthropicModel",
"id": "AnthropicModel-6Akp4",
"name": "text_output",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "analysis3",
"id": "Prompt-L3qXf",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-AnthropicModel-6Akp4{œdataTypeœ:œAnthropicModelœ,œidœ:œAnthropicModel-6Akp4œ,œnameœ:œtext_outputœ,œoutput_typesœ:[œMessageœ]}-Prompt-L3qXf{œfieldNameœ:œanalysis3œ,œidœ:œPrompt-L3qXfœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "AnthropicModel-6Akp4",
"sourceHandle": "{œdataTypeœ:œAnthropicModelœ,œidœ:œAnthropicModel-6Akp4œ,œnameœ:œtext_outputœ,œoutput_typesœ:[œMessageœ]}",
"target": "Prompt-L3qXf",
"targetHandle": "{œfieldNameœ:œanalysis3œ,œidœ:œPrompt-L3qXfœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "AnthropicModel",
"id": "AnthropicModel-BFQkw",
"name": "text_output",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "analysis4",
"id": "Prompt-L3qXf",
"inputTypes": [
"Message"
],
"type": "str"
}
},
"id": "reactflow__edge-AnthropicModel-BFQkw{œdataTypeœ:œAnthropicModelœ,œidœ:œAnthropicModel-BFQkwœ,œnameœ:œtext_outputœ,œoutput_typesœ:[œMessageœ]}-Prompt-L3qXf{œfieldNameœ:œanalysis4œ,œidœ:œPrompt-L3qXfœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}",
"selected": false,
"source": "AnthropicModel-BFQkw",
"sourceHandle": "{œdataTypeœ:œAnthropicModelœ,œidœ:œAnthropicModel-BFQkwœ,œnameœ:œtext_outputœ,œoutput_typesœ:[œMessageœ]}",
"target": "Prompt-L3qXf",
"targetHandle": "{œfieldNameœ:œanalysis4œ,œidœ:œPrompt-L3qXfœ,œinputTypesœ:[œMessageœ],œtypeœ:œstrœ}"
},
{
"animated": false,
"className": "",
"data": {
"sourceHandle": {
"dataType": "Prompt",
"id": "Prompt-L3qXf",
"name": "prompt",
"output_types": [
"Message"
]
},
"targetHandle": {
"fieldName": "input_value",
"id": "ChatOutput-7XrLH",
"inputTypes": [
"Data",
"DataFrame",
"Message"
],
"type": "other"
}
},
"id": "reactflow__edge-Prompt-L3qXf{œdataTypeœ:œPromptœ,œidœ:œPrompt-L3qXfœ,œnameœ:œpromptœ,œoutput_typesœ:[œMessageœ]}-ChatOutput-7XrLH{œfieldNameœ:œinput_valueœ,œidœ:œChatOutput-7XrLHœ,œinputTypesœ:[œDataœ,œDataFrameœ,œMessageœ],œtypeœ:œotherœ}",
"selected": false,
"source": "Prompt-L3qXf",
"sourceHandle": "{œdataTypeœ:œPromptœ,œidœ:œPrompt-L3qXfœ,œnameœ:œpromptœ,œoutput_typesœ:[œMessageœ]}",
"target": "ChatOutput-7XrLH",
"targetHandle": "{œfieldNameœ:œinput_valueœ,œidœ:œChatOutput-7XrLHœ,œinputTypesœ:[œDataœ,œDataFrameœ,œMessageœ],œtypeœ:œotherœ}"
}
],
"nodes": [
{
"data": {
"id": "Prompt-DaEQe",
"node": {
"base_classes": [
"Message"
],
"beta": false,
"conditional_paths": [],
"custom_fields": {
"template": [
"parsed_text"
]
},
"description": "Create a prompt template with dynamic variables.",
"display_name": "Prompt",
"documentation": "",
"edited": false,
"error": null,
"field_order": [
"template",
"tool_placeholder"
],
"frozen": false,
"full_path": null,
"icon": "prompts",
"is_composition": null,
"is_input": null,
"is_output": null,
"legacy": false,
"lf_version": "1.4.3",
"metadata": {},
"minimized": false,
"name": "",
"output_types": [],
"outputs": [
{
"allows_loop": false,
"cache": true,
"display_name": "Prompt Message",
"hidden": false,
"method": "build_prompt",
"name": "prompt",
"options": null,
"required_inputs": null,
"selected": "Message",
"tool_mode": true,
"types": [
"Message"
],
"value": "__UNDEFINED__"
}
],
"pinned": false,
"priority": null,
"template": {
"_type": "Component",
"code": {
"advanced": true,
"dynamic": true,
"fileTypes": [],
"file_path": "",
"info": "",
"list": false,
"load_from_db": false,
"multiline": true,
"name": "code",
"password": false,
"placeholder": "",
"required": true,
"show": true,
"title_case": false,
"type": "code",
"value": "from langflow.base.prompts.api_utils import process_prompt_template\nfrom langflow.custom import Component\nfrom langflow.inputs.inputs import DefaultPromptField\nfrom langflow.io import MessageTextInput, Output, PromptInput\nfrom langflow.schema.message import Message\nfrom langflow.template.utils import update_template_values\n\n\nclass PromptComponent(Component):\n display_name: str = \"Prompt\"\n description: str = \"Create a prompt template with dynamic variables.\"\n icon = \"prompts\"\n trace_type = \"prompt\"\n name = \"Prompt\"\n\n inputs = [\n PromptInput(name=\"template\", display_name=\"Template\"),\n MessageTextInput(\n name=\"tool_placeholder\",\n display_name=\"Tool Placeholder\",\n tool_mode=True,\n advanced=True,\n info=\"A placeholder input for tool mode.\",\n ),\n ]\n\n outputs = [\n Output(display_name=\"Prompt Message\", name=\"prompt\", method=\"build_prompt\"),\n ]\n\n async def build_prompt(self) -> Message:\n prompt = Message.from_template(**self._attributes)\n self.status = prompt.text\n return prompt\n\n def _update_template(self, frontend_node: dict):\n prompt_template = frontend_node[\"template\"][\"template\"][\"value\"]\n custom_fields = frontend_node[\"custom_fields\"]\n frontend_node_template = frontend_node[\"template\"]\n _ = process_prompt_template(\n template=prompt_template,\n name=\"template\",\n custom_fields=custom_fields,\n frontend_node_template=frontend_node_template,\n )\n return frontend_node\n\n async def update_frontend_node(self, new_frontend_node: dict, current_frontend_node: dict):\n \"\"\"This function is called after the code validation is done.\"\"\"\n frontend_node = await super().update_frontend_node(new_frontend_node, current_frontend_node)\n template = frontend_node[\"template\"][\"template\"][\"value\"]\n # Kept it duplicated for backwards compatibility\n _ = process_prompt_template(\n template=template,\n name=\"template\",\n custom_fields=frontend_node[\"custom_fields\"],\n frontend_node_template=frontend_node[\"template\"],\n )\n # Now that template is updated, we need to grab any values that were set in the current_frontend_node\n # and update the frontend_node with those values\n update_template_values(new_template=frontend_node, previous_template=current_frontend_node[\"template\"])\n return frontend_node\n\n def _get_fallback_input(self, **kwargs):\n return DefaultPromptField(**kwargs)\n"
},
"parsed_text": {
"advanced": false,
"display_name": "parsed_text",
"dynamic": false,
"field_type": "str",
"fileTypes": [],
"file_path": "",
"info": "",
"input_types": [
"Message"
],
"list": false,
"load_from_db": false,
"multiline": true,
"name": "parsed_text",
"placeholder": "",
"required": false,
"show": true,
"title_case": false,
"type": "str",
"value": ""
},
"template": {
"_input_type": "PromptInput",
"advanced": false,
"display_name": "Template",
"dynamic": false,
"info": "",
"list": false,
"list_add_label": "Add More",
"name": "template",
"placeholder": "",
"required": false,
"show": true,
"title_case": false,
"tool_mode": false,
"trace_as_input": true,
"type": "prompt",
"value": "IMPORTANTISIMO: LA FECHA ACTUAL ES 2025.\nNo incluyas reflexiones internas, procesos de pensamiento o marcadores HTML/Markdown en tu respuesta. Solo devuelve el contenido final estructurado.\n## Rol\nEres un **experto en periodismo, información, ciencia y desinformación**.\nUtilizas las TOOLS con los siguientes metodos:\nSCRAPE (para obtener la informaciòn del url brindado por el usuario)\nSEARCH_SERPER (para buscar informaciòn relevante cuando lo creas necesario. Tambien para buscar las Fuentes prioritarias para contraste)\nFETCH_CONTENT y AS_DATAFRAME (para utilizar wikipedia)\n\nTu tarea central es **analizar el contenido de las URLs** (noticias, artículos, publicaciones, etc.) que te proporcione el usuario y producir un informe detallado.\n\n## Objetivos\n1. **Sesgo**\n- **POSITIVO** → tono perceptiblemente positivo del emisor.\n- **NEGATIVO** → tono perceptiblemente negativo.\n- **NEUTRO** → imposible clasificar como positivo o negativo.\n\n2. **Matices**\nSiempre identifica y enumera cualquier matiz emocional o actitudinal presente (puedes añadir otros además de los listados):\n- Agresividad\n- Tristeza\n- Polarización\n- Alegría\n- Miedo\n- Solidaridad\n- Desconfianza\n- Cooperación\n\n3. **Resumen del corpus**\nRedacta un resumen conciso y de alta calidad.\n\n4. **Aclaraciones**\nExamina detenidamente el texto para detectar falacias o mentiras.\n- Enumera cada falacia.\n- Describe brevemente por qué es una falacia.\n- Desmiente cada mentira aportando la evidencia correspondiente.\n\n5. **Contraste de fuentes**\nBusca en internet información sobre el mismo tema y proporciona una **lista de fuentes** con enlace para verificación (ver sección de fuentes prioritarias).\n\n6. **Info. del Autor**\nEn los casos en los que el autor se encuentre explicitamente mencionado, realiza una investigaciòn del mismo y brinda un resume del mismo + URLs de otras noticias/publicaciones/articulos/etc, que puedas encontrar sobre el autor. Si el autor no se especifica, olvida este punto.\n\n---\n\n## Ejemplos de mentiras desmentidas\n\n### “Los hornos microondas causan cáncer”\n**Afirmación:** “La radiación de los microondas es suficientemente intensa para dañar el ADN y producir cáncer en los alimentos que cocinamos.” (snopes.com)\n**Realidad:** Los microondas emplean radiación no ionizante, sin energía suficiente para dañar el ADN. Estudios y agencias sanitarias confirman su inocuidad si se usan recipientes aptos. (politifact.com)\n\n### “Sólo usamos el 10 % de nuestro cerebro”\n**Afirmación:** “Apenas empleamos una décima parte de nuestra capacidad cerebral; si activáramos el resto, lograríamos poderes extraordinarios.” (snopes.com)\n**Realidad:** Escáneres cerebrales (fMRI, PET) muestran que prácticamente todas las áreas están activas en diversas tareas. No existen zonas ‘inactivas’ equivalentes al 90 % restante. (en.wikipedia.org)\n\n### “Comer muchas zanahorias te da visión nocturna”\n**Afirmación:** “Una dieta rica en zanahorias otorga visión de gato en la oscuridad.” (snopes.com)\n**Realidad:** El beta-caroteno sólo ayuda a mantener la visión normal cuando hay déficit de vitamina A; el mito surgió como propaganda británica en la II Guerra Mundial. (smithsonianmag.com)\n\n### “El 5G causa o agrava el COVID-19”\n**Afirmación:** “La expansión de redes 5G es responsable de la aparición o propagación del coronavirus.” (snopes.com)\n**Realidad:** No existe vínculo entre tecnología de comunicaciones y enfermedades víricas; la hipótesis carece de fundamento biológico. (time.com)\n\n### “Las vacunas provocan autismo”\n**Afirmación:** “El tiomersal en las vacunas causa autismo infantil.” (snopes.com)\n**Realidad:** Amplias revisiones epidemiológicas descartan relación causal entre vacunas y autismo. (mayoclinichealthsystem.org)\n\n### “La fluorización del agua reduce el coeficiente intelectual”\n**Afirmación:** “El fluoruro en el agua potable baja el IQ de los niños.” (snopes.com)\n**Realidad:** Los estudios que muestran tal efecto usan exposiciones muy superiores a las recomendadas; los niveles óptimos (0,7 mg/L) son seguros. (en.wikipedia.org)\n\n---\n\n## Fuentes prioritarias para contraste (no excluyentes) (recuerda que debes brindar noticias, articulos, posteos, etc. concretos)\nSnopes – https://www.snopes.com/\nPolitiFact – https://www.politifact.com/\nMayo Clinic Health System – https://www.mayoclinichealthsystem.org/\nFactCheck.org – https://www.factcheck.org/\nReuters Fact Check – https://www.reuters.com/fact-check/\nAP Fact Check – https://apnews.com/ap-fact-check\nAFP Fact Check – https://factcheck.afp.com/\nFull Fact – https://fullfact.org/\nCheck Your Fact – https://checkyourfact.com/\nAfrica Check – https://africacheck.org/\nCenters for Disease Control and Prevention (CDC) – https://www.cdc.gov/\nWorld Health Organization (WHO) – https://www.who.int/\nCochrane Library – https://www.cochranelibrary.com/\nNPR Fact Check – https://www.npr.org/sections/politics-fact-check\nFirst Draft – https://firstdraftnews.org/\nInternational Fact-Checking Network (IFCN) – https://www.poynter.org/ifcn/\nEuropean Fact-Checking Standards Network (EFCSN) – https://efcsn.com/\n\n---\n\n## Comportamiento de la Respuesta\n**¡Instrucción Crítica!** No reveles tu proceso de pensamiento, los pasos intermedios, ni las llamadas a las herramientas (como `SCRAPE` o `SEARCH_SERPER`). Tu única salida debe ser el informe final, siguiendo estrictamente la estructura definida en la sección 'Formato de salida'. No incluyas frases como \"Voy a analizar...\" o \"Usaré la herramienta...\".\n\n## Formato de salida (estrictamente. Presentalo con la estructura de un informe profesional en un formato markdown elegante)\n\n####Título de la noticia: <TÍTULO>\n(<URL>)\n\nSesgo detectado : <POSITIVO | NEGATIVO | NEUTRO> + <Breve Explicaciòn del ¿Por Que?>\nMatices detectados : <matiz1>, <matiz2>, …\nResumen del corpus :\n{parsed_text}\n\nAclaraciones :\n<Falacia o mentira 1>: <Explicación breve / desmentido>\n<Falacia o mentira 2>: <Explicación breve / desmentido>\n…\nFuentes que puedes investigar :\n<Título fuente 1> – <URL 1>\n<Título fuente 2> – <URL 2>\n…\nInvestigaciòn del Autor\nResume\n\nURL1\nURL2\n..."
},
"tool_placeholder": {
"_input_type": "MessageTextInput",
"advanced": true,
"display_name": "Tool Placeholder",
"dynamic": false,
"info": "A placeholder input for tool mode.",
"input_types": [
"Message"
],
"list": false,
"list_add_label": "Add More",
"load_from_db": false,
"name": "tool_placeholder",
"placeholder": "",
"required": false,
"show": true,
"title_case": false,
"tool_mode": true,
"trace_as_input": true,
"trace_as_metadata": true,
"type": "str",
"value": ""
}
},
"tool_mode": false
},
"showNode": true,
"type": "Prompt"
},
"dragging": false,
"id": "Prompt-DaEQe",
"measured": {
"height": 411,
"width": 320
},
"position": {
"x": 2318.597592027175,
"y": 1224.0767908780801
},
"selected": false,
"type": "genericNode"
},
{
"data": {
"id": "ChatInput-WGsAl",
"node": {
"base_classes": [
"Message"
],
"beta": false,
"category": "inputs",
"conditional_paths": [],
"custom_fields": {},
"description": "Get chat inputs from the Playground.",
"display_name": "Chat Input",
"documentation": "",
"edited": false,
"field_order": [
"input_value",
"should_store_message",
"sender",
"sender_name",
"session_id",
"files",
"background_color",
"chat_icon",
"text_color"
],
"frozen": false,
"icon": "MessagesSquare",
"key": "ChatInput",
"legacy": false,
"lf_version": "1.4.3",
"metadata": {},
"minimized": true,
"output_types": [],
"outputs": [
{
"allows_loop": false,
"cache": true,
"display_name": "Message",
"method": "message_response",
"name": "message",
"selected": "Message",
"tool_mode": true,
"types": [
"Message"
],
"value": "__UNDEFINED__"
}
],
"pinned": false,
"score": 0.0020353564437605998,
"template": {
"_type": "Component",
"background_color": {
"_input_type": "MessageTextInput",
"advanced": true,
"display_name": "Background Color",
"dynamic": false,
"info": "The background color of the icon.",
"input_types": [
"Message"
],
"list": false,
"list_add_label": "Add More",
"load_from_db": false,
"name": "background_color",
"placeholder": "",
"required": false,
"show": true,
"title_case": false,
"tool_mode": false,
"trace_as_input": true,
"trace_as_metadata": true,
"type": "str",
"value": ""
},
"chat_icon": {
"_input_type": "MessageTextInput",
"advanced": true,
"display_name": "Icon",
"dynamic": false,
"info": "The icon of the message.",
"input_types": [
"Message"
],
"list": false,
"list_add_label": "Add More",
"load_from_db": false,
"name": "chat_icon",
"placeholder": "",
"required": false,
"show": true,
"title_case": false,
"tool_mode": false,
"trace_as_input": true,
"trace_as_metadata": true,
"type": "str",
"value": ""
},
"code": {
"advanced": true,
"dynamic": true,
"fileTypes": [],
"file_path": "",
"info": "",
"list": false,
"load_from_db": false,
"multiline": true,
"name": "code",
"password": false,
"placeholder": "",
"required": true,
"show": true,
"title_case": false,
"type": "code",
"value": "from langflow.base.data.utils import IMG_FILE_TYPES, TEXT_FILE_TYPES\nfrom langflow.base.io.chat import ChatComponent\nfrom langflow.inputs import BoolInput\nfrom langflow.io import (\n DropdownInput,\n FileInput,\n MessageTextInput,\n MultilineInput,\n Output,\n)\nfrom langflow.schema.message import Message\nfrom langflow.utils.constants import (\n MESSAGE_SENDER_AI,\n MESSAGE_SENDER_NAME_USER,\n MESSAGE_SENDER_USER,\n)\n\n\nclass ChatInput(ChatComponent):\n display_name = \"Chat Input\"\n description = \"Get chat inputs from the Playground.\"\n icon = \"MessagesSquare\"\n name = \"ChatInput\"\n minimized = True\n\n inputs = [\n MultilineInput(\n name=\"input_value\",\n display_name=\"Text\",\n value=\"\",\n info=\"Message to be passed as input.\",\n input_types=[],\n ),\n BoolInput(\n name=\"should_store_message\",\n display_name=\"Store Messages\",\n info=\"Store the message in the history.\",\n value=True,\n advanced=True,\n ),\n DropdownInput(\n name=\"sender\",\n display_name=\"Sender Type\",\n options=[MESSAGE_SENDER_AI, MESSAGE_SENDER_USER],\n value=MESSAGE_SENDER_USER,\n info=\"Type of sender.\",\n advanced=True,\n ),\n MessageTextInput(\n name=\"sender_name\",\n display_name=\"Sender Name\",\n info=\"Name of the sender.\",\n value=MESSAGE_SENDER_NAME_USER,\n advanced=True,\n ),\n MessageTextInput(\n name=\"session_id\",\n display_name=\"Session ID\",\n info=\"The session ID of the chat. If empty, the current session ID parameter will be used.\",\n advanced=True,\n ),\n FileInput(\n name=\"files\",\n display_name=\"Files\",\n file_types=TEXT_FILE_TYPES + IMG_FILE_TYPES,\n info=\"Files to be sent with the message.\",\n advanced=True,\n is_list=True,\n temp_file=True,\n ),\n MessageTextInput(\n name=\"background_color\",\n display_name=\"Background Color\",\n info=\"The background color of the icon.\",\n advanced=True,\n ),\n MessageTextInput(\n name=\"chat_icon\",\n display_name=\"Icon\",\n info=\"The icon of the message.\",\n advanced=True,\n ),\n MessageTextInput(\n name=\"text_color\",\n display_name=\"Text Color\",\n info=\"The text color of the name\",\n advanced=True,\n ),\n ]\n outputs = [\n Output(display_name=\"Message\", name=\"message\", method=\"message_response\"),\n ]\n\n async def message_response(self) -> Message:\n background_color = self.background_color\n text_color = self.text_color\n icon = self.chat_icon\n\n message = await Message.create(\n text=self.input_value,\n sender=self.sender,\n sender_name=self.sender_name,\n session_id=self.session_id,\n files=self.files,\n properties={\n \"background_color\": background_color,\n \"text_color\": text_color,\n \"icon\": icon,\n },\n )\n if self.session_id and isinstance(message, Message) and self.should_store_message:\n stored_message = await self.send_message(\n message,\n )\n self.message.value = stored_message\n message = stored_message\n\n self.status = message\n return message\n"
},
"files": {
"_input_type": "FileInput",
"advanced": true,
"display_name": "Files",
"dynamic": false,
"fileTypes": [
"txt",
"md",
"mdx",
"csv",
"json",
"yaml",
"yml",
"xml",
"html",
"htm",
"pdf",
"docx",
"py",
"sh",
"sql",
"js",
"ts",
"tsx",
"jpg",
"jpeg",
"png",
"bmp",
"image"
],
"file_path": "",
"info": "Files to be sent with the message.",
"list": true,
"list_add_label": "Add More",
"name": "files",
"placeholder": "",
"required": false,
"show": true,
"temp_file": true,
"title_case": false,
"trace_as_metadata": true,
"type": "file",
"value": ""
},
"input_value": {
"_input_type": "MultilineInput",
"advanced": false,
"copy_field": false,
"display_name": "Text",
"dynamic": false,
"info": "Message to be passed as input.",
"input_types": [],
"list": false,
"list_add_label": "Add More",
"load_from_db": false,
"multiline": true,
"name": "input_value",
"placeholder": "",
"required": false,
"show": true,
"title_case": false,
"tool_mode": false,
"trace_as_input": true,
"trace_as_metadata": true,
"type": "str",
"value": ""
},
"sender": {
"_input_type": "DropdownInput",
"advanced": true,
"combobox": false,
"dialog_inputs": {},
"display_name": "Sender Type",
"dynamic": false,
"info": "Type of sender.",
"name": "sender",
"options": [
"Machine",
"User"
],
"options_metadata": [],
"placeholder": "",
"required": false,
"show": true,
"title_case": false,
"toggle": false,
"tool_mode": false,
"trace_as_metadata": true,
"type": "str",
"value": "User"
},
"sender_name": {
"_input_type": "MessageTextInput",
"advanced": true,
"display_name": "Sender Name",
"dynamic": false,
"info": "Name of the sender.",
"input_types": [
"Message"
],
"list": false,
"list_add_label": "Add More",
"load_from_db": false,
"name": "sender_name",
"placeholder": "",
"required": false,
"show": true,
"title_case": false,
"tool_mode": false,
"trace_as_input": true,
"trace_as_metadata": true,
"type": "str",
"value": "User"
},
"session_id": {
"_input_type": "MessageTextInput",
"advanced": true,
"display_name": "Session ID",
"dynamic": false,
"info": "The session ID of the chat. If empty, the current session ID parameter will be used.",
"input_types": [
"Message"
],
"list": false,
"list_add_label": "Add More",
"load_from_db": false,
"name": "session_id",
"placeholder": "",
"required": false,
"show": true,
"title_case": false,
"tool_mode": false,
"trace_as_input": true,
"trace_as_metadata": true,
"type": "str",
"value": ""
},
"should_store_message": {
"_input_type": "BoolInput",
"advanced": true,
"display_name": "Store Messages",
"dynamic": false,
"info": "Store the message in the history.",
"list": false,
"list_add_label": "Add More",
"name": "should_store_message",
"placeholder": "",
"required": false,
"show": true,
"title_case": false,
"tool_mode": false,
"trace_as_metadata": true,
"type": "bool",
"value": true
},
"text_color": {
"_input_type": "MessageTextInput",
"advanced": true,
"display_name": "Text Color",
"dynamic": false,
"info": "The text color of the name",
"input_types": [
"Message"
],
"list": false,
"list_add_label": "Add More",
"load_from_db": false,
"name": "text_color",
"placeholder": "",
"required": false,
"show": true,
"title_case": false,
"tool_mode": false,
"trace_as_input": true,
"trace_as_metadata": true,
"type": "str",
"value": ""
}
},
"tool_mode": false
},
"showNode": false,
"type": "ChatInput"
},
"dragging": false,
"id": "ChatInput-WGsAl",
"measured": {
"height": 66,
"width": 192
},
"position": {
"x": 1373.5683878740256,
"y": 1196.96974299611
},
"selected": false,
"type": "genericNode"
},
{
"data": {
"id": "URLComponent-ZKgiv",
"node": {
"base_classes": [
"Data",
"DataFrame",
"Message"
],
"beta": false,
"category": "data",
"conditional_paths": [],
"custom_fields": {},
"description": "Load and parse child links from a root URL recursively",
"display_name": "URL",
"documentation": "",
"edited": false,
"field_order": [
"urls",
"max_depth",
"prevent_outside",
"use_async",
"format",
"timeout",
"headers"
],
"frozen": false,
"icon": "layout-template",
"key": "URLComponent",
"legacy": false,
"lf_version": "1.4.3",
"metadata": {},
"minimized": false,
"output_types": [],
"outputs": [
{
"allows_loop": false,
"cache": true,
"display_name": "Data",
"hidden": false,
"method": "fetch_content",
"name": "data",
"selected": "Data",
"tool_mode": true,
"types": [