forked from dsdanielpark/Bard-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
google.test.js
2260 lines (2260 loc) · 256 KB
/
google.test.js
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
var e8a = {
DEFAULT: "default",
Bxa: "flights",
Yxa: "hotels",
hya: "images_advanced",
iya: "images_basic",
jya: "images_in_tables",
kya: "image_generation",
lya: "implicit_code_execution",
hza: "maps_basic",
hAa: "processing_state",
vAa: "safety_disclaimer",
NAa: "shopping_multiple_products",
PAa: "shopping_single_product",
kBa: "title_generation",
mBa: "tool_consent_external",
nBa: "tool_consent_workspace",
oBa: "tool_consent_workspace_eecc",
pBa: "tool_disclaimer",
qBa: "tool_sources_many",
rBa: "tool_sources_none_workspace_response",
sBa: "tool_sources_some",
fCa: "youtube_channel",
gCa: "youtube_playlist",
hCa: "youtube_single_video"
}
, nS = function() {
this.ha = this.ma = 0;
this.Kf = "default";
var a = {
conversationId: "c_10",
title: "Math test",
timestamp: new Date("2023-04-01"),
pinned: !0,
hidden: !1
}
, b = {
conversationId: "c_11",
title: "Show me pictures of Barcelona",
timestamp: new Date("2023-04-02"),
pinned: !0,
hidden: !1
}
, c = {
conversationId: "c_12",
title: "Why is the sky blue",
timestamp: new Date("2023-04-03"),
pinned: !0,
hidden: !1
}
, d = {
conversationId: "c_13",
title: "Another Math test",
timestamp: new Date("2023-04-04"),
pinned: !0,
hidden: !1
}
, e = {
conversationId: "c_14",
title: "Show me pictures of Paris",
timestamp: new Date("2023-04-05"),
pinned: !0,
hidden: !1
}
, f = new Date("2023-04-06");
var g = new ir;
var h = new BD;
h = _.kp(h, 1, 2);
g = _.vo(g, BD, 1, h);
this.ka = [a, b, c, d, e, {
conversationId: "c_15",
title: "Why is the sky red",
timestamp: f,
pinned: !0,
hidden: !1,
Sz: _.Cc(g)
}, {
conversationId: "c_16",
title: "Show me flights departing from ZRH tomorrow",
timestamp: new Date("2023-04-07"),
pinned: !0,
hidden: !1
}, {
conversationId: "c_17",
title: "How old are you?",
timestamp: new Date("2023-04-08"),
pinned: !0,
hidden: !1
}, {
conversationId: "c_20",
title: "Show me a cat",
timestamp: new Date("2023-04-04"),
pinned: !1,
hidden: !1
}, {
conversationId: "c_21",
title: "Help me incorporate more high-protein vegan options in my diet",
timestamp: new Date("2023-04-05"),
pinned: !1,
hidden: !1
}, {
conversationId: "c_22",
title: "Tell me about the code within the google/jax GitHub repo",
timestamp: new Date("2023-04-06"),
pinned: !1,
hidden: !1
}, {
conversationId: "c_23",
title: 'Debug this error message: "FileNotFoundError: [Errno 2]',
timestamp: new Date("2023-04-07"),
pinned: !1,
hidden: !1
}, {
conversationId: "c_24",
title: "Help me understand if lightning can strike the same place twice",
timestamp: new Date("2023-04-08"),
pinned: !1,
hidden: !1
}, {
conversationId: "c_25",
title: "Tell me about the code within the google/jax GitHub repo 2",
timestamp: new Date("2023-04-09"),
pinned: !1,
hidden: !1
}, {
conversationId: "c_26",
title: 'Debug this error message: "FileNotFoundError: [Errno 2] 2',
timestamp: new Date("2023-04-10"),
pinned: !1,
hidden: !1
}, {
conversationId: "c_27",
title: "What is the weather like?",
timestamp: new Date("2023-04-11"),
pinned: !1,
hidden: !1
}, {
conversationId: "c_28",
title: "How old is Obama?",
timestamp: new Date("2023-04-12"),
pinned: !1,
hidden: !1
}, {
conversationId: "c_29",
title: "This is a test",
timestamp: new Date("2023-04-13"),
pinned: !1,
hidden: !1
}, {
conversationId: "c_30",
title: "Hey! How are you doing?",
timestamp: new Date("2023-04-14"),
pinned: !1,
hidden: !1
}, {
conversationId: "c_31",
title: "What time is it?",
timestamp: new Date("2023-04-15"),
pinned: !1,
hidden: !1
}, {
conversationId: "c_32",
title: "Write me some hello worlds in Python?",
timestamp: new Date("2023-04-16"),
pinned: !1,
hidden: !1
}, {
conversationId: "c_33",
title: "Explain Fermat's last theorem in details",
timestamp: new Date("2023-04-17"),
pinned: !1,
hidden: !1
}, {
conversationId: "c_34",
title: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ex purus,\nfinibus eget euismod at, posuere in enim. Aenean consequat augue lorem,\net tempor arcu pellentesque non. Quisque dui lectus, pulvinar in tellus\nin, pharetra imperdiet ante. Aliquam interdum, neque sit amet gravida\nbibendum, quam metus maximus ligula, non lacinia mauris neque vitae ex.\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eget\nbibendum erat. Maecenas condimentum, dui ullamcorper aliquam maximus,\nsem velit tempor ex, ut tincidunt lectus justo nec tortor. Suspendisse\njusto ligula, mattis bibendum hendrerit ut, consectetur vel erat.\nDonec et nisl sit amet dui tincidunt dignissim.",
timestamp: new Date("2023-04-18"),
pinned: !1,
hidden: !1
}]
}
, f8a = function(a) {
return Object.values(e8a).filter(function(b) {
return a.includes(b)
}).sort(function(b, c) {
return c.length - b.length
})[0]
};
nS.prototype.JK = function(a) {
var b = this.ma
, c = a.textQuery;
this.ma++;
var d;
switch (null != (d = f8a(c)) ? d : this.Kf) {
case "flights":
return oS(this, pS(a, {
ub: "request-" + b,
Gb: [{
id: "response-" + b + "-1",
index: 0,
textResponse: "Here are some flights that might work for you:\n\nhttp://googleusercontent.com/flight_content/1\n\n",
Vb: [],
Kb: {
ad: !0,
hc: [],
fk: [],
an: [],
CK: [{
hb: "http://googleusercontent.com/flight_content/1",
mb: 0,
title: "Flights label for XXX",
Zl: {
displayName: "Google Flights",
Oh: "https://www.gstatic.com/images/branding/productlogos/travel_flights/v7/192px.svg"
},
Aba: 2,
trips: [{
Sm: {
uD: "United",
tD: "https://www.gstatic.com/flights/airline_logos/70px/UA.png",
RF: "JFK",
iE: "SFO",
departureTime: "8:34 AM",
arrivalTime: "10:45 AM",
duration: "2 hr 11 min",
JG: "Nonstop"
},
Wk: "$324"
}, {
Sm: {
uD: "Lufthansa",
tD: "https://www.gstatic.com/flights/airline_logos/70px/LH.png",
RF: "LHR",
iE: "MUC",
departureTime: "8:34 AM",
arrivalTime: "10:45 AM",
duration: "2 hr 11 min",
JG: "1 stop"
},
Wk: "$570"
}, {
Sm: {
uD: "Turkish Airlines",
tD: "https://www.gstatic.com/flights/airline_logos/70px/TK.png",
RF: "IST",
iE: "HND",
departureTime: "8:34 AM",
arrivalTime: "10:45 AM",
duration: "2 hr 11 min",
JG: "2 stops"
},
Wk: "$890"
}, {
Sm: {
uD: "Southwest",
tD: "https://www.gstatic.com/flights/airline_logos/70px/WN.png",
RF: "LGA",
iE: "DAL",
departureTime: "8:34 AM",
arrivalTime: "10:45 AM",
duration: "2 hr 11 min",
JG: "Nonstop"
},
Wk: "unavailable"
}],
aX: "https://www.google.com/travel/flights/search?tfs=CBwQAhopEgoyMDIzLTA5LTEzag0IAxIJL20vMDJfMjg2cgwIAxIIL20vMDZ0MnRAAUgBcAGCAQsI____________AZgBAg&gl=US"
}]
},
oc: 0,
Cc: !1,
Gc: !1
}],
factualityQueries: [{
text: "Query 1 this is a really long factuality query and it should be cut off by ellipses.",
source: "source_1"
}, {
text: "Query 2",
source: "source_2"
}],
Vc: [],
Ug: {
Tf: "Mountain View, CA, USA",
Rf: "SWML_DESCRIPTION_FROM_YOUR_INTERNET_ADDRESS",
og: !1
},
Ad: "response-" + b + "-1"
}));
case "hotels":
return oS(this, pS(a, {
ub: "request-" + b,
Gb: [{
id: "response-" + b + "-1",
index: 0,
textResponse: "Here are some hotels in Madison:\n\nhttp://googleusercontent.com/property_content/1\n\n",
Vb: [],
Kb: {
ad: !0,
hc: [],
fk: [],
an: [],
Zz: [{
hb: "http://googleusercontent.com/property_content/1",
mb: 0,
title: "Hotels label for XXX",
Zl: {
displayName: "Google Hotels",
Oh: "https://www.gstatic.com/images/branding/productlogos/travel_hotels/v7/192px.svg"
},
V6: [{
displayName: "Hotel Indigo Madison Downtown, an IHG Hotel",
jr: ["//lh3.googleusercontent.com/p/AF1QipM-woOZ5FqkRgDCjKOxgXzXxX9Q1xURZDhGxTvN=w592-h404-n-k-rw-no-v1", "//lh5.googleusercontent.com/p/AF1QipOvMxwOSWNMP0m5h46AyFPiDjM0ks3ZvbOdJVlp=s204-w204-h116-p-n-k-no", "//lh5.googleusercontent.com/p/AF1QipP9lI4UkQaqhnIJQQjpDQ3PBdH1Be2bcQYFmxNJ=s204-w204-h116-p-n-k-no"],
kk: 4.8,
Ul: 514,
ir: "3-star hotel",
description: "Set along Highway 151, this relaxed hotel is less than a mile from the Wisconsin State Capitol, and 2 miles from the Madison Museum of Contemporary Art.",
Lw: "$100",
mz: "https://www.google.com/travel/search?q=google%20hotels&g2lb=2502548%2C2503771%2C2503781%2C4258168%2C4270442%2C4284970%2C4291517%2C4429192%2C4570331%2C4597339%2C4757164%2C4814050%2C4850738%2C4864715%2C4874190%2C4886480%2C4893075%2C4924070%2C4965990%2C4990494%2C72262033%2C72262036%2C72285074%2C72286089%2C72298667%2C72300991%2C72301739%2C72302247%2C72305577%2C72313834%2C72314854%2C72317059%2C72318437%2C72322083&hl=en-US&gl=us&cs=1&ssta=1&ts=CAESCAoCCAMKAggDGhwSGhIUCgcI5w8QCBgEEgcI5w8QCBgFGAEyAhAAKgcKBToDVVNE&qs=CAE4BkILCVjrvUaPRq2fGAFCCwm1VnmhbrPh6hgBQgsJoG0WEiT3RCwYAQ&ap=MABoAQ&ictx=1&sa=X&ved=0CAAQ5JsGahcKEwio0L2e48OAAxUAAAAAHQAAAAAQDA"
}, {
displayName: "Hilton Garden Inn Madison Downtown",
jr: ["//lh3.googleusercontent.com/p/AF1QipMzh6s-AiMsFFkYz1CYkzAy9TVunTT7E-7elEH7=w592-h404-n-k-rw-no-v1", "//lh3.googleusercontent.com/p/AF1QipPOgQGMAp8sqN3LFr1P62FnywE2BmM0R7K2VWsH=w592-h404-n-k-rw-no-v1", "//lh3.googleusercontent.com/p/AF1QipNL-T9b8AQCoNfMFXLK1q9visJGj6p7r7u5SknA=w592-h404-n-k-rw-no-v1"],
kk: 4.7,
Ul: 242,
ir: "3-star hotel",
description: "Set Downtown, this relaxed hotel is 6 minutes' walk from University of Wisconsin-Madison, a mile from the Wisconsin State Capitol and 8 miles from Interstate 90.",
Lw: "$322",
mz: "https://www.google.com/travel/search?q=google%20hotels&g2lb=2502548%2C2503771%2C2503781%2C4258168%2C4270442%2C4284970%2C4291517%2C4429192%2C4570331%2C4597339%2C4757164%2C4814050%2C4850738%2C4864715%2C4874190%2C4886480%2C4893075%2C4924070%2C4965990%2C4990494%2C72262033%2C72262036%2C72285074%2C72286089%2C72298667%2C72300991%2C72301739%2C72302247%2C72305577%2C72311299%2C72313834%2C72314854%2C72317059%2C72318437%2C72322083&hl=en-US&gl=us&cs=1&ssta=1&ts=CAESCgoCCAMKAggDEAAaKQoLEgk6B01hZGlzb24SGhIUCgcI5w8QCBgEEgcI5w8QCBgFGAEyAhAAKgcKBToDVVNE&qs=CAEyuwFDZ3NJc3FTRnpzNlFfZmEyQVJBQkdudEJVR1JtWWxjMFQxVjZXR2hVTVdoSlRIWlhkSEE1UkdaemVrWTRSa1YzUVdvME1XNWZSbHBYY0U5bE5sTnRTVmhOU1hoVU0zWjNiVXBPWlZKRmJsUjBNRVpIVXkxTlZHTllTblF3UXpKUWFuZHZVR2x5UlV4bGFWRkRibU5vZVY5ckxUaHpRVFZGVG0xQ1VrZHlaVE5zV1hacWRucHFkakp1VmpROAZCCwlY671Gj0atnxgBQgsJtVZ5oW6z4eoYAUILCcifSiOTAsnlGAE&ap=KigKEgk0kAcve21FQBG8QElh52JWwBISCUVG8H8MpUVAEbxASaEjUFbAMABoAQ&ictx=1&sa=X&ved=0CAAQ5JsGahgKEwiY48yh5sOAAxUAAAAAHQAAAAAQ-gc"
}, {
displayName: "Clarion Suites at the Alliant Energy Center",
jr: ["//lh3.googleusercontent.com/p/AF1QipNDCWHAbw125QLigEbE_E6xbtFKFg6VmfJsnVxn=w592-h404-n-k-rw-no-v1", "//lh3.googleusercontent.com/p/AF1QipMfMDqrqofu-UaTrg-In_hwPqJrKdSn3w-swDrb=w592-h404-n-k-rw-no-v1", "//lh3.googleusercontent.com/p/AF1QipM5KbWxMxzs5o55U-f8EF-MaOrNdTtw1rsqOc17=w592-h404-n-k-rw-no-v1"],
kk: 4.2,
Ul: 687,
ir: "3-star hotel",
description: "Part of the Alliant Energy Center event complex, this informal, all-suite hotel is 2.7 miles from University of Wisconsin-Madison and 7.5 miles from Dane County Regional Airport.",
Lw: "$339",
mz: "https://www.google.com/travel/search?q=google%20hotels&g2lb=2502548%2C2503771%2C2503781%2C4258168%2C4270442%2C4284970%2C4291517%2C4429192%2C4570331%2C4597339%2C4757164%2C4814050%2C4850738%2C4864715%2C4874190%2C4886480%2C4893075%2C4924070%2C4965990%2C4990494%2C72262033%2C72262036%2C72285074%2C72286089%2C72298667%2C72300991%2C72301739%2C72302247%2C72305577%2C72311299%2C72313834%2C72314854%2C72317059%2C72318437%2C72322083&hl=en-US&gl=us&cs=1&ssta=1&ts=CAESCgoCCAMKAggDEAAaKQoLEgk6B01hZGlzb24SGhIUCgcI5w8QCBgEEgcI5w8QCBgFGAEyAhAAKgcKBToDVVNE&qs=CAEyugFDZ29JZ29yRzlhV0R5T3hJRUFFYWUwRlFaR1ppVnpWNmVXWlhNVTQ0T0ZoeE5taHlaVk5hVkZZM2RUY3dOVE5RYXpkRmNsUTJWRTVoYWt3MWQzRjJjQzFwY25scU9YZHdXVTlqYUhkRU1tWkxRalYyTjFkdGNqQjFWbWRrVXpWUk9VSlBaMWhWZUhaeWVtbG1jbWhwVG5CVFgxb3hOVTFYZUdzMlpuZHpTVVZXVVhGVlRuQTNOMjVrV1E4BkILCVjrvUaPRq2fGAFCCwm1VnmhbrPh6hgBQgsJyJ9KI5MCyeUYAQ&ap=KigKEgk0kAcve21FQBG8QElh52JWwBISCUVG8H8MpUVAEbxASaEjUFbAMABoAQ&ictx=1&sa=X&ved=0CAAQ5JsGahgKEwiY48yh5sOAAxUAAAAAHQAAAAAQkQk"
}, {
displayName: "The Empty Hotel",
jr: [],
kk: 1,
Ul: 5,
ir: "3-star hotel",
description: "",
Lw: "",
mz: "https://www.google.com/travel/search?q=google%20hotels&g2lb=2502548%2C2503771%2C2503781%2C4258168%2C4270442%2C4284970%2C4291517%2C4429192%2C4570331%2C4597339%2C4757164%2C4814050%2C4850738%2C4864715%2C4874190%2C4886480%2C4893075%2C4924070%2C4965990%2C4990494%2C72262033%2C72262036%2C72285074%2C72286089%2C72298667%2C72300991%2C72301739%2C72302247%2C72305577%2C72311299%2C72313834%2C72314854%2C72317059%2C72318437%2C72322083&hl=en-US&gl=us&cs=1&ssta=1&ts=CAESCgoCCAMKAggDEAAaKQoLEgk6B01hZGlzb24SGhIUCgcI5w8QCBgEEgcI5w8QCBgFGAEyAhAAKgcKBToDVVNE&qs=CAEyugFDZ29JZ29yRzlhV0R5T3hJRUFFYWUwRlFaR1ppVnpWNmVXWlhNVTQ0T0ZoeE5taHlaVk5hVkZZM2RUY3dOVE5RYXpkRmNsUTJWRTVoYWt3MWQzRjJjQzFwY25scU9YZHdXVTlqYUhkRU1tWkxRalYyTjFkdGNqQjFWbWRrVXpWUk9VSlBaMWhWZUhaeWVtbG1jbWhwVG5CVFgxb3hOVTFYZUdzMlpuZHpTVVZXVVhGVlRuQTNOMjVrV1E4BkILCVjrvUaPRq2fGAFCCwm1VnmhbrPh6hgBQgsJyJ9KI5MCyeUYAQ&ap=KigKEgk0kAcve21FQBG8QElh52JWwBISCUVG8H8MpUVAEbxASaEjUFbAMABoAQ&ictx=1&sa=X&ved=0CAAQ5JsGahgKEwiY48yh5sOAAxUAAAAAHQAAAAAQkQk"
}, {
displayName: "The Hotel Without Price",
jr: ["//lh3.googleusercontent.com/p/AF1QipNPCWtrpiW8yvz0YyPZ9ERrrs1XAlWpfEpaPRzK=w287-h192-n-k-rw-no-v1"],
kk: 5,
Ul: 256,
ir: "5-star hotel",
description: "Exclusive Hotel. Call for price.",
Lw: "",
mz: "https://www.google.com/travel/search?q=google%20hotels&g2lb=2502548%2C2503771%2C2503781%2C4258168%2C4270442%2C4284970%2C4291517%2C4429192%2C4570331%2C4597339%2C4757164%2C4814050%2C4850738%2C4864715%2C4874190%2C4886480%2C4893075%2C4924070%2C4965990%2C4990494%2C72262033%2C72262036%2C72285074%2C72286089%2C72298667%2C72300991%2C72301739%2C72302247%2C72305577%2C72311299%2C72313834%2C72314854%2C72317059%2C72318437%2C72322083&hl=en-US&gl=us&cs=1&ssta=1&ts=CAESCgoCCAMKAggDEAAaKQoLEgk6B01hZGlzb24SGhIUCgcI5w8QCBgEEgcI5w8QCBgFGAEyAhAAKgcKBToDVVNE&qs=CAEyugFDZ29JZ29yRzlhV0R5T3hJRUFFYWUwRlFaR1ppVnpWNmVXWlhNVTQ0T0ZoeE5taHlaVk5hVkZZM2RUY3dOVE5RYXpkRmNsUTJWRTVoYWt3MWQzRjJjQzFwY25scU9YZHdXVTlqYUhkRU1tWkxRalYyTjFkdGNqQjFWbWRrVXpWUk9VSlBaMWhWZUhaeWVtbG1jbWhwVG5CVFgxb3hOVTFYZUdzMlpuZHpTVVZXVVhGVlRuQTNOMjVrV1E4BkILCVjrvUaPRq2fGAFCCwm1VnmhbrPh6hgBQgsJyJ9KI5MCyeUYAQ&ap=KigKEgk0kAcve21FQBG8QElh52JWwBISCUVG8H8MpUVAEbxASaEjUFbAMABoAQ&ictx=1&sa=X&ved=0CAAQ5JsGahgKEwiY48yh5sOAAxUAAAAAHQAAAAAQkQk"
}]
}]
},
oc: 0,
Cc: !1,
Gc: !1
}],
factualityQueries: [{
text: "Query 1 this is a really long factuality query and it should be cut off by ellipses.",
source: "source_1"
}, {
text: "Query 2",
source: "source_2"
}],
Vc: [],
Ug: {
Tf: "Mountain View, CA, USA",
Rf: "SWML_DESCRIPTION_FROM_YOUR_INTERNET_ADDRESS",
og: !1
},
Ad: "response-" + b + "-1"
}));
case "image_generation":
return oS(this, pS(a, {
ub: "request-" + b,
Gb: [{
id: "response-" + b + "-1",
index: 0,
textResponse: "Draft for image generation with IMAGES ONLY from 0P image generator - Miro.\n\n[Generated Image of the universe]",
Kb: {
ad: !0,
hc: [],
Ml: {
Nk: [{
wb: "https://img.freepik.com/premium-photo/starfield-neon-nebula-space-art-galaxy-creative-background-ai_564714-1633.jpg",
imageUrl: "https://img.freepik.com/premium-photo/starfield-neon-nebula-space-art-galaxy-creative-background-ai_564714-1633.jpg",
Wi: !1,
Og: {
li: 3,
prompt: "A universe with stars and a nebulous cloud."
},
hb: "[Generated Image of the universe]",
mb: 0
}, {
wb: "https://img.freepik.com/premium-photo/starfield-neon-nebula-space-art-galaxy-creative-background-ai_564714-2006.jpg",
imageUrl: "https://img.freepik.com/premium-photo/starfield-neon-nebula-space-art-galaxy-creative-background-ai_564714-2006.jpg",
Wi: !1,
Og: {
li: 3,
prompt: "A universe with stars and a nebulous cloud."
},
hb: "[Generated Image of the universe]",
mb: 0
}, {
wb: "https://img.freepik.com/premium-photo/starfield-neon-nebula-space-art-galaxy-creative-background-ai_564714-2305.jpg",
imageUrl: "https://img.freepik.com/premium-photo/starfield-neon-nebula-space-art-galaxy-creative-background-ai_564714-2305.jpg",
Wi: !1,
Og: {
li: 3,
prompt: "A universe with stars and a nebulous cloud."
},
hb: "[Generated Image of the universe]",
mb: 0
}, {
wb: "https://img.freepik.com/premium-photo/starfield-with-nebulagenerative-ai_76964-18204.jpg",
imageUrl: "https://img.freepik.com/premium-photo/starfield-with-nebulagenerative-ai_76964-18204.jpg",
Wi: !1,
Og: {
li: 3,
prompt: "A universe with stars and a nebulous cloud."
},
hb: "[Generated Image of the universe]",
mb: 0,
errorMessage: "Couldn't load."
}],
Kf: 1
}
},
Vb: [],
oc: 0,
Cc: !1,
Gc: !1
}, {
id: "response-" + b + "-2",
index: 1,
textResponse: "Draft for image generation WITH TEXT from 0P image generator - Miro.\n\nIn the beginning, there was nothing. No space, no time, no matter. Just a vast, empty void.\n\nThen, something happened. A tiny point of energy appeared in the void. This point of energy was incredibly hot and dense, and it began to expand. As it expanded, it cooled, and matter began to form.\n\n[Generated Image of the big bang]\n\nOver time, the matter in the universe clumped together to form stars, galaxies, and planets. Our own solar system formed about 4.5 billion years ago, and our planet, Earth, was born about 3.5 billion years ago.\n\n[Generated Image of the universe]\n",
Kb: {
ad: !0,
hc: [],
Ml: {
Nk: [{
wb: "https://img.freepik.com/premium-photo/big-bang-starry-galaxy-generative-ai_835692-70.jpg",
imageUrl: "https://img.freepik.com/premium-photo/big-bang-starry-galaxy-generative-ai_835692-70.jpg",
Wi: !0,
Og: {
li: 2,
prompt: "A universe with stars and a nebulous cloud."
},
hb: "[Generated Image of the big bang]",
mb: 0
}, {
wb: "https://img.freepik.com/premium-photo/starfield-with-nebulagenerative-ai_76964-18204.jpg",
imageUrl: "https://img.freepik.com/premium-photo/starfield-with-nebulagenerative-ai_76964-18204.jpg",
Wi: !0,
Og: {
li: 2,
prompt: "A universe with stars and a nebulous cloud."
},
hb: "[Generated Image of the universe]",
mb: 0
}],
Kf: 2
}
},
Vb: [],
oc: 0,
Cc: !1,
Gc: !1
}, {
id: "response-" + b + "-3",
index: 2,
textResponse: "Draft for image generation with IMAGES ONLY from 3P image generator - Adobe Firefly.\n\n[Generated Image of the universe]",
Kb: {
ad: !0,
hc: [],
Ml: {
Nk: [{
wb: "https://img.freepik.com/premium-photo/starfield-neon-nebula-space-art-galaxy-creative-background-ai_564714-1633.jpg",
imageUrl: "https://img.freepik.com/premium-photo/starfield-neon-nebula-space-art-galaxy-creative-background-ai_564714-1633.jpg",
Wi: !1,
Og: {
li: 1,
prompt: "A universe with stars and a nebulous cloud."
},
hb: "[Generated Image of the universe]",
mb: 0
}, {
wb: "https://img.freepik.com/premium-photo/starfield-neon-nebula-space-art-galaxy-creative-background-ai_564714-2006.jpg",
imageUrl: "https://img.freepik.com/premium-photo/starfield-neon-nebula-space-art-galaxy-creative-background-ai_564714-2006.jpg",
Wi: !1,
Og: {
li: 1,
prompt: "A universe with stars and a nebulous cloud."
},
hb: "[Generated Image of the universe]",
mb: 0
}, {
wb: "https://img.freepik.com/premium-photo/starfield-neon-nebula-space-art-galaxy-creative-background-ai_564714-2305.jpg",
imageUrl: "https://img.freepik.com/premium-photo/starfield-neon-nebula-space-art-galaxy-creative-background-ai_564714-2305.jpg",
Wi: !1,
Og: {
li: 1,
prompt: "A universe with stars and a nebulous cloud."
},
hb: "[Generated Image of the universe]",
mb: 0
}, {
wb: "https://img.freepik.com/premium-photo/starfield-with-nebulagenerative-ai_76964-18204.jpg",
imageUrl: "https://img.freepik.com/premium-photo/starfield-with-nebulagenerative-ai_76964-18204.jpg",
Wi: !1,
Og: {
li: 1,
prompt: "A universe with stars and a nebulous cloud."
},
hb: "[Generated Image of the universe]",
mb: 0,
errorMessage: "Couldn't load."
}],
Kf: 1
}
},
Vb: [],
oc: 0,
Cc: !1,
Gc: !1
}, {
id: "response-" + b + "-4",
index: 3,
textResponse: "Draft for image generation WITH TEXT from 3P image generator - Adobe Firefly.\n\nIn the beginning, there was nothing. No space, no time, no matter. Just a vast, empty void.\n\nThen, something happened. A tiny point of energy appeared in the void. This point of energy was incredibly hot and dense, and it began to expand. As it expanded, it cooled, and matter began to form.\n\n[Generated Image of the big bang]\n\nOver time, the matter in the universe clumped together to form stars, galaxies, and planets. Our own solar system formed about 4.5 billion years ago, and our planet, Earth, was born about 3.5 billion years ago.\n\n[Generated Image of the universe]\n",
Kb: {
ad: !0,
hc: [],
Ml: {
Nk: [{
wb: "https://img.freepik.com/premium-photo/big-bang-starry-galaxy-generative-ai_835692-70.jpg",
imageUrl: "https://img.freepik.com/premium-photo/big-bang-starry-galaxy-generative-ai_835692-70.jpg",
Wi: !0,
Og: {
li: 1,
prompt: "A universe with stars and a nebulous cloud."
},
hb: "[Generated Image of the big bang]",
mb: 0
}, {
wb: "https://img.freepik.com/premium-photo/starfield-with-nebulagenerative-ai_76964-18204.jpg",
imageUrl: "https://img.freepik.com/premium-photo/starfield-with-nebulagenerative-ai_76964-18204.jpg",
Wi: !0,
Og: {
li: 1,
prompt: "A universe with stars and a nebulous cloud."
},
hb: "[Generated Image of the universe]",
mb: 0
}],
Kf: 2
}
},
Vb: [],
oc: 0,
Cc: !1,
Gc: !1
}],
factualityQueries: [],
Vc: [],
Ug: {
Tf: "Mountain View, CA, USA",
Rf: "SWML_DESCRIPTION_FROM_YOUR_DEVICE",
og: !0,
Cx: ""
},
Ad: "response-" + b + "-1"
}));
case "images_basic":
return oS(this, pS(a, {
ub: "request-" + b,
Gb: [{
id: "response-" + b + "-1",
index: 0,
textResponse: "Sure, here is a description of Barcelona with images:\n\n**Barcelona is a city of contrasts.** It is a city of old and new, of sea and mountains, of art and architecture.\n\n**In the Gothic Quarter, you can wander through narrow streets and alleyways lined with medieval buildings.** The Pla\u00e7a de Sant Jaume is the heart of the Gothic Quarter, and it is here that you can find the Barcelona City Hall and the Palau de la Generalitat de Catalunya, the seat of the Catalan government.\n\n[Image of the Gothic Quarter][Image of the Pla\u00e7a de Sant Jaume]\n\n**Las Ramblas is a wide boulevard that runs through the heart of Barcelona.** It is lined with shops, restaurants, and street performers. The Ramblas is a great place to people-watch and soak up the atmosphere of the city.\n\n[Image of Las Ramblas] [Image of a street performer on Las Ramblas]\n\n**The Barceloneta Beach is a popular spot for swimming, sunbathing, and people-watching.** It is a long stretch of sandy beach that is perfect for relaxing in the sun or taking a dip in the Mediterranean Sea.\n\n[Image of the Barceloneta Beach]\n\n[Image of people sunbathing on the Barceloneta Beach]\n\n**Barcelona is also a city of art and architecture.** Antoni Gaud\u00ed, one of the most famous architects of all time, left his mark on the city with his unique and whimsical buildings. The Sagrada Familia, Park G\u00fcell, and Casa Mil\u00e0 are just a few of Gaud\u00ed's masterpieces.\n\n[Image of the Sagrada Familia]\n\n[Image of Park G\u00fcell]\n\n[Image of Casa Mil\u00e0]\n\n**Barcelona is a city that has something to offer everyone.** Whether you are interested in history, art, architecture, or simply want to relax on the beach, Barcelona is the perfect place to visit.",
Kb: {
ad: !0,
hc: [{
wb: "https://assets2.devourtours.com/wp-content/uploads/Gothic-Quarter-in-Barcelona-1.png",
title: "Gothic Quarter",
sourceUrl: "https://google.com",
yc: "Google",
zi: "https://www.google.com/s2/favicons?sz=16&domain_url=google.com",
hb: "[Image of the Gothic Quarter]",
mb: 0
}, {
wb: "https://media.istockphoto.com/id/518023780/photo/city-council-on-barcelona-spain-plaza-de-sant-jaume.jpg?s=1024x1024&w=is&k=20&c=_HJscUruQIxBV-_HkfJb6BfNkUfPr1to2R2FtuooAOI=",
title: "Pla\u00e7a de Sant Jaume",
sourceUrl: "https://google.com",
yc: "Google",
zi: "https://www.google.com/s2/favicons?sz=16&domain_url=google.com",
hb: "[Image of the Pla\u00e7a de Sant Jaume]",
mb: 0
}, {
wb: "https://c8.alamy.com/comp/MTTM1R/las-ramblas-barcelona-stalls-along-the-busy-rambla-sant-josep-barcelona-catalunya-spain-MTTM1R.jpg",
title: "Image of Las Ramblas",
sourceUrl: "https://google.com",
yc: "Google",
zi: "https://www.google.com/s2/favicons?sz=16&domain_url=google.com",
hb: "[Image of Las Ramblas]",
mb: 0
}, {
wb: "https://img.theculturetrip.com/wp-content/uploads/2018/04/5095625939_2fce24c708_b.jpg",
title: "A street performer on Las Ramblas",
sourceUrl: "https://google.com",
yc: "Google",
zi: "https://www.google.com/s2/favicons?sz=16&domain_url=google.com",
hb: "[Image of a street performer on Las Ramblas]",
mb: 0
}, {
wb: "https://media.istockphoto.com/id/951974648/photo/barceloneta-beach-in-barcelona-with-colorful-sky-at-sunrise-seafront-beach-coast-in-spain.jpg?s=612x612&w=0&k=20&c=h7AZ-chjljk4TnJOf75x8xKqlwtDULBk_Cwf9pOzidQ=",
title: "Barceloneta Beach",
sourceUrl: "https://google.com",
yc: "Google",
zi: "https://www.google.com/s2/favicons?sz=16&domain_url=google.com",
hb: "[Image of the Barceloneta Beach]",
mb: 0
}, {
wb: "https://thumbs.dreamstime.com/b/people-sunbathing-mediterranean-beach-barcelona-spain-june-june-barcelona-spain-barceloneta-one-most-popular-48692023.jpg",
title: "People sunbathing on the Barceloneta Beach",
sourceUrl: "https://google.com",
yc: "Google",
zi: "https://www.google.com/s2/favicons?sz=16&domain_url=google.com",
hb: "[Image of people sunbathing on the Barceloneta Beach]",
mb: 0
}, {
wb: "https://media.istockphoto.com/id/1130443789/photo/sagrada-familia-basilica-in-barcelona.jpg?b=1&s=170667a&w=0&k=20&c=Ufz9DWJ-ylTv1YeBrsy48jKZJ6EUm2dOEg38aT8j5X0=",
title: "Sagrada Familia",
sourceUrl: "https://google.com",
yc: "Google",
zi: "https://www.google.com/s2/favicons?sz=16&domain_url=google.com",
hb: "[Image of the Sagrada Familia]",
mb: 0
}, {
wb: "https://media.istockphoto.com/id/534846887/photo/park-guell-in-barcelona-spain.jpg?s=612x612&w=0&k=20&c=57iKMZfKaK16TGoWQzlFs6uiGpB3APPiu1TLEbI3OCQ=",
title: "Park G\u00fcell",
sourceUrl: "https://google.com",
yc: "Google",
zi: "https://www.google.com/s2/favicons?sz=16&domain_url=google.com",
hb: "[Image of Park G\u00fcell]",
mb: 0
}, {
wb: "https://upload.wikimedia.org/wikipedia/commons/d/de/Casa_Mil%C3%A0%2C_general_view.jpg",
title: "Casa Mil\u00e0",
sourceUrl: "https://google.com",
yc: "Google",
zi: "https://www.google.com/s2/favicons?sz=16&domain_url=google.com",
hb: "[Image of Casa Mil\u00e0]",
mb: 0
}]
},
Cd: {
Ce: pr([[{
start: 100,
end: 140
}], [{
start: 400,
end: 460
}], [{
start: 600,
end: 666
}]]),
hg: {
status: 0
},
mode: 0
},
Vb: [],
oc: 0,
Cc: !1,
Gc: !1
}, {
id: "response-" + b + "-2",
index: 1,
textResponse: "Short paragraph about something\n\n[Image of a flower]\n\nFlowers are the reproductive organs of flowering plants. They are typically brightly colored and fragrant, and they attract pollinators such as bees, butterflies, and hummingbirds. Flowers come in a wide variety of shapes, sizes, and colors. Some flowers are edible, while others are used for their medicinal properties. Flowers are also used for decorative purposes, and they are often used in bouquets, arrangements, and landscaping.\n\n[Image of a flower]\n\nThe end.\n\n[Image of a flower]",
Kb: {
ad: !0,
hc: [{
wb: "https://hips.hearstapps.com/hmg-prod/images/close-up-of-purple-crocus-flowers-united-kingdom-uk-royalty-free-image-1674159456.jpg",
sourceUrl: "https://google.com",
yc: "Some very long source text",
hb: "[Image of a flower]",
mb: 0,
title: "flower"
}]
},
Cd: {
Ce: pr([[{
start: 10,
end: 20
}], [{
start: 21,
end: 62
}]]),
hg: {
status: 0
},
mode: 0
},
Vb: [],
oc: 0,
Cc: !1,
Gc: !1
}, {
id: "response-" + b + "-3",
index: 2,
textResponse: "Sure, here are some images of cats, along with a description of each kind:\n\n* **Persian cats** are known for their long, thick fur and round faces. They are a popular breed of cat, and are often described as being gentle and affectionate.\n[Image of a Persian cat]\n\n* **Abyssinian cats** are known for their sleek, athletic bodies and distinctive ticking fur. They are a playful and intelligent breed of cat, and are often described as being curious and inquisitive.\n[Image of an Abyssinian cat]\n\n* **Siamese cats** are known for their distinctive markings, which consist of dark points on the face, ears, legs, and tail. They are a vocal and affectionate breed of cat, and are often described as being loyal and devoted.\n[Image of a Siamese cat]\n\n* **Maine Coon cats** are the largest breed of domestic cat. They are known for their long, thick fur, bushy tails, and tufted ears. They are a gentle and affectionate breed of cat, and are often described as being laid-back and easygoing.\n[Image of a Maine Coon cat]\n\n* **Scottish Fold cats** are known for their folded ears, which give them a distinctive appearance. They are a gentle and affectionate breed of cat, and are often described as being playful and curious.\n[Image of a Scottish Fold cat]\n\nThese are just a few of the many different breeds of cats that exist. Each breed has its own unique set of characteristics, making them all special in their own way.",
Kb: {
ad: !0,
hc: [{
wb: "https://www.thesprucepets.com/thmb/5OSN_p9hUfPssKsJORQDGnAz_tQ=/1963x0/filters:no_upscale():strip_icc()/GettyImages-181861505-4e63227ed0a14dc9bfe86848ef54caf3.jpg",
sourceUrl: "https://google.com",
yc: "a Persian cat",
hb: "[Image of a Persian cat]",
mb: 0
}, {
wb: "https://encrypted-tbn3.gstatic.com/licensed-image?q=tbn:ANd9GcRArbVS6wpy-yY7IGo8T1zWrr0wl3mpQOhoqpMEtygh_XyWqO7m_3gyyJsfrFF1lP6hLcv_Uf7HjOAdD7M",
sourceUrl: "https://google.com",
yc: "an Abyssinian cat",
hb: "[Image of an Abyssinian cat]",
mb: 0
}, {
wb: "https://www.purina.co.uk/sites/default/files/styles/square_medium_440x440/public/2022-06/Siamese-Cat_0.jpg?itok=Qy1J6ZDS",
sourceUrl: "https://google.com",
yc: "a Siamese cat",
hb: "[Image of a Siamese cat]",
mb: 0
}, {
wb: "https://static.boredpanda.com/blog/wp-content/uploads/2015/11/maine-coon-cats-24__605.jpg",
sourceUrl: "https://google.com",
yc: "a Maine Coon cat",
hb: "[Image of a Maine Coon cat]",
mb: 0
}, {
wb: "https://www.purina.co.uk/sites/default/files/styles/square_medium_440x440/public/2022-06/Scottish-Fold.jpg?itok=r17XUkvL",
sourceUrl: "https://google.com",
yc: "a Scottish Fold cat",
hb: "[Image of a Scottish Fold cat]",
mb: 0
}]
},
Vb: [],
oc: 0,
Cc: !1,
Gc: !1
}, {
id: "response-" + b + "-4",
index: 3,
textResponse: "Sure, here is a description of Barcelona with images:\n\n**Barcelona is a city of contrasts.** It is a city of old and new, of sea and mountains, of art and architecture.\n\n**In the Gothic Quarter, you can wander through narrow streets and alleyways lined with medieval buildings.** The Pla\u00e7a de Sant Jaume is the heart of the Gothic Quarter, and it is here that you can find the Barcelona City Hall and the Palau de la Generalitat de Catalunya, the seat of the Catalan government.\n\n[Image of the Gothic Quarter]\n\n**Las Ramblas is a wide boulevard that runs through the heart of Barcelona.** It is lined with shops, restaurants, and street performers. The Ramblas is a great place to people-watch and soak up the atmosphere of the city.\n\n[Image of Las Ramblas]\n\n**The Barceloneta Beach is a popular spot for swimming, sunbathing, and people-watching.** It is a long stretch of sandy beach that is perfect for relaxing in the sun or taking a dip in the Mediterranean Sea.\n\n[Image of the Barceloneta Beach]\n\n**Barcelona is also a city of art and architecture.** Antoni Gaud\u00ed, one of the most famous architects of all time, left his mark on the city with his unique and whimsical buildings. The Sagrada Familia, Park G\u00fcell, and Casa Mil\u00e0 are just a few of Gaud\u00ed's masterpieces.\n\n[Image of the Sagrada Familia]\n\n**Barcelona is a city that has something to offer everyone.** Whether you are interested in history, art, architecture, or simply want to relax on the beach, Barcelona is the perfect place to visit.",
Kb: {
ad: !0,
hc: [{
wb: "https://assets2.devourtours.com/wp-content/uploads/Gothic-Quarter-in-Barcelona-1.png",
sourceUrl: "https://google.com",
yc: "Gothic Quarter",
hb: "[Image of the Gothic Quarter]",
mb: 0
}, {
wb: "https://c8.alamy.com/comp/MTTM1R/las-ramblas-barcelona-stalls-along-the-busy-rambla-sant-josep-barcelona-catalunya-spain-MTTM1R.jpg",
sourceUrl: "https://google.com",
yc: "Image of Las Ramblas",
hb: "[Image of Las Ramblas]",
mb: 0
}, {
wb: "https://media.istockphoto.com/id/951974648/photo/barceloneta-beach-in-barcelona-with-colorful-sky-at-sunrise-seafront-beach-coast-in-spain.jpg?s=612x612&w=0&k=20&c=h7AZ-chjljk4TnJOf75x8xKqlwtDULBk_Cwf9pOzidQ=",
sourceUrl: "https://google.com",
yc: "Barceloneta Beach",
hb: "[Image of the Barceloneta Beach]",
mb: 0
}, {
wb: "https://media.istockphoto.com/id/1130443789/photo/sagrada-familia-basilica-in-barcelona.jpg?b=1&s=170667a&w=0&k=20&c=Ufz9DWJ-ylTv1YeBrsy48jKZJ6EUm2dOEg38aT8j5X0=",
sourceUrl: "https://google.com",
yc: "Sagrada Familia",
hb: "[Image of the Sagrada Familia]",
mb: 0
}]
},
Vb: [],
oc: 0,
Cc: !1,
Gc: !1
}, {
id: "response-" + b + "-5",
index: 4,
textResponse: "Sure, here are the top 5 most popular and in-demand professions, along with a relevant image for each:\n\n* **Healthcare**\n[Image of Doctor]\n\nThe healthcare industry is always in need of qualified workers, and there are a variety of positions available, from doctors and nurses to pharmacists and physical therapists.\n\n* **Technology**\n[Image of Software Developer]\n\nThe technology industry is growing rapidly, and there are many opportunities for software developers, engineers, and other tech professionals.\n\n* **Education**\n[Image of Teacher]\n\nThis field is essential to society, and there is a high demand for teachers, administrators, and other education professionals.\n\n* **Business**\n[Image of Businesswoman]\n\nThere are many different types of businesses, and each one needs a variety of workers, from accountants and lawyers to marketers and sales representatives.\n\n* **Government**\n[Image of Police Officer]\n\nThe government employs people in a wide range of fields, from law enforcement and social services to education and healthcare.\n\nUltimately, the best profession for you is the one that you are passionate about and that allows you to use your skills and talents to make a difference in the world.",
Kb: {
ad: !0,
hc: [{
wb: "https://images.theconversation.com/files/304957/original/file-20191203-66986-im7o5.jpg",
sourceUrl: "https://google.com",
title: "Doctor",
hb: "[Image of Doctor]",
mb: 0
}, {
wb: "https://bairesdev.mo.cloudinary.net/blog/2021/09/software-developer-1.jpg",
sourceUrl: "https://google.com",
title: "Software Developer",
hb: "[Image of Software Developer]",
mb: 0
}, {
wb: "https://apicms.thestar.com.my/uploads/images/2022/05/15/1585587.jpg",
sourceUrl: "https://google.com",
title: "Teacher",
hb: "[Image of Teacher]",
mb: 0
}, {
wb: "https://img.freepik.com/free-photo/smiling-confident-businesswoman-posing-with-arms-folded_1262-20950.jpg",
sourceUrl: "https://google.com",
title: "Businesswoman",
hb: "[Image of Businesswoman]",
mb: 0
}, {
wb: "https://www.amtrak.com/content/dam/projects/dotcom/english/public/images/text-with-image-square/officer-andrew-stock.jpg",
sourceUrl: "https://google.com",
title: "Police Officer",
hb: "[Image of Police Officer]",
mb: 0
}]
},
Vb: [],
oc: 0,
Cc: !1,
Gc: !1
}, {
id: "response-" + b + "-6",
index: 5,
textResponse: "Sure, here are 2 pairs of cute cats: [2 Images of cute cats][2 Images of cute cats]\n\n and here are another 2 pairs of cute cats: [2 Images of cute cats][2 Images of cute cats]",
Kb: {
ad: !0,
hc: [{
wb: "https://hips.hearstapps.com/hmg-prod/images/cute-cat-photos-1593441022.jpg",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 0
}, {
wb: "https://images.unsplash.com/photo-1529778873920-4da4926a72c2?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8Y3V0ZSUyMGNhdHxlbnwwfHwwfHw%3D&w=1000&q=80",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 0
}, {
wb: "https://cdn-prd.content.metamorphosis.com/wp-content/uploads/sites/6/2022/12/shutterstock_781327003-1.jpg",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 1
}, {
wb: "https://i.pinimg.com/originals/9f/16/32/9f163259165a9031b62fbd8c38746645.jpg",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 1
}, {
wb: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQapeHjw8h0HNkDurVGTByJbE8_vAG3_123Fg&usqp=CAU",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 2
}, {
wb: "https://wallpaperaccess.com/full/94041.jpg",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 2
}, {
wb: "https://media-cldnry.s-nbcnews.com/image/upload/t_fit-1500w,f_auto,q_auto:best/newscms/2015_25/1082591/150618-cat.jpg",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 3
}, {
wb: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSFYOe9Z04-TFb3_D-pfTT7J7R6SWkSTxifvQ&usqp=CAU",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 3
}]
},
Vb: [],
oc: 0,
Cc: !1,
Gc: !1
}, {
id: "response-" + b + "-7",
index: 6,
textResponse: "Sure, here are some cute cats: [2 Images of cute cats][2 Images of cute cats]\n\n[2 Images of cute cats][2 Images of cute cats]",
Kb: {
ad: !0,
hc: [{
wb: "https://hips.hearstapps.com/hmg-prod/images/cute-cat-photos-1593441022.jpg",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 0
}, {
wb: "",
errorMessage: "Couldn't load.",
hb: "[2 Images of cute cats]",
mb: 0
}, {
wb: "https://cdn-prd.content.metamorphosis.com/wp-content/uploads/sites/6/2022/12/shutterstock_781327003-1.jpg",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 1
}, {
wb: "https://i.pinimg.com/originals/9f/16/32/9f163259165a9031b62fbd8c38746645.jpg",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 1
}, {
wb: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQapeHjw8h0HNkDurVGTByJbE8_vAG3_123Fg&usqp=CAU",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 2
}, {
wb: "https://wallpaperaccess.com/full/94041.jpg",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 2
}, {
wb: "https://media-cldnry.s-nbcnews.com/image/upload/t_fit-1500w,f_auto,q_auto:best/newscms/2015_25/1082591/150618-cat.jpg",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 3
}, {
wb: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSFYOe9Z04-TFb3_D-pfTT7J7R6SWkSTxifvQ&usqp=CAU",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 3
}]
},
Vb: [],
oc: 0,
Cc: !1,
Gc: !1
}, {
id: "response-" + b + "-8",
index: 7,
textResponse: "Sure, here are some cute cats: [2 Images of cute cats][2 Images of cute cats]\n\n and here are more cute cats: [2 Images of cute cats][2 Images of cute cats]",
Kb: {
ad: !1,
hc: [{
wb: "https://hips.hearstapps.com/hmg-prod/images/cute-cat-photos-1593441022.jpg",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 0,
title: "cute cat #1"
}, {
wb: "https://images.unsplash.com/photo-1529778873920-4da4926a72c2?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8Y3V0ZSUyMGNhdHxlbnwwfHwwfHw%3D&w=1000&q=80",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 0
}, {
wb: "https://cdn-prd.content.metamorphosis.com/wp-content/uploads/sites/6/2022/12/shutterstock_781327003-1.jpg",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 1,
title: "cute cat #3 with a very very very long title"
}, {
wb: "https://i.pinimg.com/originals/9f/16/32/9f163259165a9031b62fbd8c38746645.jpg",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 1
}, {
wb: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQapeHjw8h0HNkDurVGTByJbE8_vAG3_123Fg&usqp=CAU",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 2,
title: "cute cat #5"
}, {
wb: "",
sourceUrl: "",
yc: "",
hb: "[2 Images of cute cats]",
mb: 2,
errorMessage: "Can't find image."
}, {
wb: "https://media-cldnry.s-nbcnews.com/image/upload/t_fit-1500w,f_auto,q_auto:best/newscms/2015_25/1082591/150618-cat.jpg",
sourceUrl: "https://google.com",
yc: "cute cats",
hb: "[2 Images of cute cats]",
mb: 3,