-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerlin_config.json
1530 lines (1530 loc) · 51.3 KB
/
merlin_config.json
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
{
"useCloudSearch": true,
"useNewDomClean": false,
"goProModal": {
"visible": true,
"interval": 86400000
},
"availableModels": [
{
"charge": "1x Query",
"default": true,
"defaultPro": false,
"description": "OpenAI's most scalable and fast model.",
"id": "GPT 3",
"name": "GPT 3.5",
"queryCost": 1,
"paid": false,
"icon": "https://cdn.jsdelivr.net/gh/foyer-work/cdn-files@latest/models/gpt-3.webp"
},
{
"charge": "1x Query",
"default": false,
"defaultPro": false,
"description": "OpenAI's latest and fast model.",
"id": "gpt-4o-mini",
"name": "GPT 4o Mini",
"queryCost": 1,
"paid": false,
"icon": "https://cdn.jsdelivr.net/gh/foyer-work/cdn-files@latest/models/gpt-4o.webp"
},
{
"charge": "15x Queries",
"default": false,
"defaultPro": true,
"description": "OpenAI's flagship model with vision support. Replaces GPT-4.",
"id": "gpt-4o",
"name": "GPT 4o",
"queryCost": 15,
"paid": false,
"icon": "https://cdn.jsdelivr.net/gh/foyer-work/cdn-files@latest/models/gpt-4o.webp"
},
{
"charge": "15x Queries",
"default": false,
"defaultPro": false,
"description": "Meta's latest and best model till date.",
"id": "meta-llama/Meta-Llama-3.1-405B-Instruct",
"name": "Llama 3.1 405B",
"queryCost": 15,
"paid": false,
"icon": "https://cdn.jsdelivr.net/gh/foyer-work/cdn-files@latest/models/unknown.webp"
},
{
"charge": "25x Queries",
"default": false,
"defaultPro": false,
"description": "The most capable model across all tasks.",
"id": "claude-3.5-sonnet",
"name": "Claude 3.5 Sonnet",
"queryCost": 25,
"paid": true,
"icon": "https://cdn.jsdelivr.net/gh/foyer-work/cdn-files@latest/models/claude-3.5-sonnet.webp"
},
{
"charge": "1x Query",
"default": false,
"defaultPro": false,
"description": "Claude 3 Haiku",
"id": "claude-3-haiku",
"name": "Claude 3 Haiku",
"queryCost": 1,
"paid": false,
"icon": "https://cdn.jsdelivr.net/gh/foyer-work/cdn-files@latest/models/claude-3-haiku.webp"
},
{
"charge": "10x Queries",
"default": false,
"defaultPro": false,
"description": "Claude 3 Sonnet",
"id": "claude-3-sonnet",
"name": "Claude 3 Sonnet",
"queryCost": 10,
"paid": false,
"icon": "https://cdn.jsdelivr.net/gh/foyer-work/cdn-files@latest/models/claude-3-sonnet.webp"
},
{
"charge": "50x Queries",
"default": false,
"defaultPro": false,
"description": "The most capable model across all tasks.",
"id": "claude-3-opus",
"name": "Claude 3 Opus",
"queryCost": 50,
"paid": true,
"icon": "https://cdn.jsdelivr.net/gh/foyer-work/cdn-files@latest/models/claude-3-opus.webp"
},
{
"charge": "30x Queries",
"default": false,
"defaultPro": false,
"description": "Google's flagship model, gives structured and well crafted answers.",
"id": "gemini-1.5-pro",
"name": "Gemini 1.5 Pro",
"queryCost": 30,
"paid": false,
"icon": "https://cdn.jsdelivr.net/gh/foyer-work/cdn-files@latest/models/gemini-pro.webp"
},
{
"charge": "1x Query",
"default": false,
"defaultPro": false,
"description": "Google's fastest model, gives structured and well crafted answers.",
"id": "gemini-1.5-flash",
"name": "Gemini 1.5 Flash",
"queryCost": 1,
"paid": false,
"icon": "https://cdn.jsdelivr.net/gh/foyer-work/cdn-files@latest/models/gemini-flash.webp"
},
{
"charge": "25x Queries",
"default": false,
"defaultPro": false,
"description": "Mistral AI's most capable proprietary model",
"id": "mistral-large-latest",
"name": "Mistral Large",
"queryCost": 25,
"paid": false,
"icon": "https://cdn.jsdelivr.net/gh/foyer-work/cdn-files@latest/models/mistral-large.webp"
},
{
"charge": "1x Query",
"default": false,
"defaultPro": false,
"description": "Mistral AI's open source model, good at reasoning with less moderation",
"id": "mistralai/Mixtral-8x7B-Instruct-v0.1",
"name": "Mixtral",
"queryCost": 1,
"paid": false,
"icon": "https://cdn.jsdelivr.net/gh/foyer-work/cdn-files@latest/models/unknown.webp"
}
],
"blogWebchatCTA": {
"cta": "Chat With This Website",
"visible": true
},
"checkShortcutStatus": true,
"fabStrip": {
"facebook": {
"visible": false
},
"gmail": {
"visible": true
},
"linkedIn": {
"inviteFeature": true,
"visible": true,
"inviteFabStripBlacklistPaths": [
"/search/results/",
"/analytics/profile-views/"
]
},
"outlook": {
"visible": false
},
"twitter": {
"visible": true,
"containerClassname": ".css-175oi2r.r-1iusvr4.r-16y2uox.r-1777fci.r-1h8ys4a.r-1bylmt5.r-13tjlyg.r-7qyjyx.r-1ftll1t"
}
},
"fabStripV2": {
"facebook": {
"visible": true
},
"gmail": {
"visible": true
},
"linkedIn": {
"inviteFeature": true,
"visible": true
},
"outlook": {
"visible": true
},
"twitter": {
"visible": true
}
},
"featPersona": true,
"features": [
{
"isActive": false,
"link": "https://bit.ly/docChat",
"text": "We are on Edge now!"
},
{
"isActive": false,
"link": "https://bit.ly/serp-apes-ai",
"text": "Check out our new social app - Apes and AI!"
},
{
"isActive": false,
"link": "https://api.getmerlin.in/docs/introduction",
"text": "Try our new API plan for building on top of our APIs. ✨"
},
{
"isActive": false,
"link": "https://bit.ly/queries-announce",
"text": "Updates on query pricing on Merlin!"
},
{
"isActive": false,
"link": "https://youtu.be/G6PoIw52JxQ",
"text": "Instantly preview webpages with a simple Shift + Hover - skip the clicks!"
},
{
"isActive": false,
"link": "https://merlinbyfoyer.notion.site/Merlin-not-working-on-Twitter-03bc0367ab384268af9b1b2f3709333d",
"text": "Merlin not working on X/Twitter? Please update or reinstall to fix!"
},
{
"isActive": false,
"link": "https://bcin.short.gy/black-friday",
"text": "Cyber Monday Sale is ON! Grab it Now!"
},
{
"isActive": false,
"link": "https://www.getmerlin.in/mobile-app",
"text": "Get Early Access to Merlin Mobile"
},
{
"isActive": false,
"link": "https://bcin.short.gy/backlink-chatbot",
"text": "Merlin Pro Giveaway is here! Join Now!"
},
{
"isActive": false,
"link": "https://bcin.short.gy/SERP-pixplain",
"text": "Get free early access to our image explainer now!"
}
],
"ga4Config": {
"active": true
},
"headerQueryCTA": [
{
"text": "Win Unlimited GPT-4 🎉",
"threshold": 999999,
"url": "https://bit.ly/merlin-ai-month",
"visible": false
},
{
"text": "Earn more queries",
"threshold": 10,
"url": "https://app.getmerlin.in/plans",
"visible": false
},
{
"text": "Rewards",
"threshold": 100,
"url": "https://app.getmerlin.in/dashboard/refer",
"visible": false
},
{
"text": "Go Pro!",
"threshold": 102,
"url": "https://app.getmerlin.in/plans?from=extension",
"visible": true
},
{
"text": "Upgrade!",
"threshold": 3000,
"url": "https://app.getmerlin.in/plans?from=extension",
"visible": true
},
{
"text": "Merlin API is here! Try Now!",
"threshold": 102,
"url": "https://api.getmerlin.in/",
"visible": false
}
],
"infoBanners": {
"chat": {
"text": "Access Web is not functioning at 100%. We're working on a fix!",
"url": "",
"visible": false,
"recurAfter": 14400000,
"timeout": 0
},
"changeInQueryBanner": false
},
"globalInfoBanner": {
"items": [
{
"weight": 10,
"html": "",
"text": "Free AI Content detector is live - Try it now!",
"url": "https://bcin.short.gy/serp-merlin"
},
{
"weight": 10,
"html": "",
"text": "Tell us about your feature requests or report bugs!",
"url": "https://feedback.getmerlin.in"
}
],
"mountOn": ["blogSummarizer", "youtubeSummarizer", "SERP"]
},
"latestVersion": "6.6.2",
"leonardoModels": [
{
"description": "Anashel returns with another great model, specialising in RPG characters of all kinds.",
"id": 0,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/ad43331b-c80c-40e5-8462-304aaaef3584/RPG_v5_a_stunning_photograph_of_a_grotesque_alien_creature_wit_1.jpg",
"name": "RPG v5",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "The latest Stable Diffusion model, currently in Beta.",
"id": 1,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/9ed4ccd8-649c-4a59-a7bb-9f5b704a91b1/SDXL_09_a_beautiful_woman_vivid_striking_colors_cinematic_phot_0.jpg",
"name": "SDXL0.9",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "Great at 3D film vibes, capable of complex scenes with rich color. Storyboard time!",
"id": 2,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/0e85d140-3ea0-4179-a708-ae95bf9329a3/3D_Animation_Style_a_masterpiece_image_of_an_older_tired_and_b_2.jpg",
"name": "3D Animation Style",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "Latest updated versatile model great at both photorealism and anime, includes noise offset training, by Lykon.",
"id": 3,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/911623f3-4a89-4db9-b49f-ace5ac086a3d/DreamShaper_v7_A_vibrant_cinematic_photo_of_a_female_adventure_1.jpg",
"name": "Dreamshape v7",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "A photorealistic style model from Lykon. Great at all sorts of photorealism.",
"id": 4,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/9d7e2dbe-6dff-4bf5-b487-414dee2a10b9/Absolute_Reality_v16_a_stunning_photo_of_a_woman_with_aztech_t_1.jpg",
"name": "Absolute Reality v1.6",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "Pastel anime styling. Use with PMv3 and the anime preset for incredible range. Model by Lykon.",
"id": 5,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/8cc624c3-c1ba-40c9-b3cd-21056382728a/AnimePastelDream_fuji_film_candid_portrait_o_a_black_woman_wea_2.jpg",
"name": "Anime Pastel Dream",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "A updated versatile model great at both photorealism and anime, includes noise offset training, by Lykon.",
"id": 6,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/8ab5c76a-eefb-4801-817f-458f68958db7/DreamShaperV6_a_masterpiece_image_of_Splash_art_music_album_ar_6.jpg",
"name": "Dreamshape v6",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "A versatile model great at both photorealism and anime, includes noise offset training, by Lykon.",
"id": 7,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/bb22942b-40c8-4a06-a219-238808053ee0/DreamShaper_v5_extremely_intricate_fantasy_character_photoreal_0.jpg",
"name": "Dreamshape v5",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "A model with incredible shading and contrast, great at both photos and artistic styles, by cac0e.",
"id": 8,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/8905a8f0-9219-43ad-8ecb-1c37b4501dc5/Leonardo_Diffusion_ultra_detailed_artistic_photography_of_a_fashion_moden_3.jpg",
"name": "Leonardo Diffusion",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "This model is best at creating RPG character portraits with the ability for great photorealism. Created by Anashel.",
"id": 9,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/20cd8cca-ad36-46b1-a0e3-8bd669112017/RPG_portrait_painting_of_a_redhead_feminine_royal_woman_with_a_fe_3.jpg",
"name": "RPG 4.0",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "A powerful model created by XpucT that is great for both photorealism and artistic creations.",
"id": 10,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/da624520-f0c6-4afa-b171-9bfc3bbb27de/Deliberate_v11_waitress_pinup_art_style_kodak_portra_400_cinematic_smiling_0.jpg",
"name": "Deliberate 1.1",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "This model can generate a broad range of imagery with a vintage style as if it was taken from a film camera",
"id": 11,
"img": "https://cdn.leonardo.ai/users/4e397cdd-4af3-48e5-b0e7-c2b5d1ebee59/generations/7a6f17f3-689c-461d-9c59-14a7ac88fa0e/Vintage_Style_Photography_Classic_convertible_driving_on_an_open_road_vintage_style_2.jpg",
"name": "Vintage Style Photography",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "This model by Lykon is great at a range of portrait styles as well as artistic backgrounds.",
"id": 12,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/b2919072-7c52-409e-9c2a-11d56c5c2ed2/DreamShaper_32_Full_body_Beautiful_final_fantasy_style_portrait_clean_detai_2.jpg",
"name": "Dreamshape v3.2",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "A powerful finetune of SD2.1 that can achieve a high level of realism.",
"id": 13,
"img": "https://cdn.leonardo.ai/users/2e1f21ed-7ca4-4f78-80ed-1646ea463a01/generations/ff4e1c40-933a-47da-8c52-31689ed282d7/Leonardo_Select_portrait_of_female_character_wearing_80s_clothing_she_should_0.png?w=512",
"name": "Leonardo Select",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "An alternative finetune of SD 2.1 that brings a little more creative interpretation to the mix.",
"id": 14,
"img": "https://cdn.leonardo.ai/users/2e1f21ed-7ca4-4f78-80ed-1646ea463a01/generations/3665e729-cf65-4766-aebc-e351bc27e239/Leonardo_Creative_portrait_of_male_character_wearing_80s_clothing_he_should_lo_0.png?w=512",
"name": "Leonardo Creative",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "Generate a variety of detailed axe designs with this model. From medieval battle axes to modern chopping axes, this model is great for creating a r...",
"id": 15,
"img": "https://cdn.leonardo.ai/users/4e397cdd-4af3-48e5-b0e7-c2b5d1ebee59/generations/1a60b46c-24d1-47c0-9683-e0e837b6f129/Battle_Axes_an_axe_blade_centre_of_frame_3.jpg",
"name": "Battle Axes",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "A pixel art model that's trained on headshots, but is surprisingly flexible with all sorts of subjects.",
"id": 16,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/5628b06f-d989-4f89-87b2-9f7af4bb0ee7/Default_A_robotic_cat_with_glowing_eyes_and_sleek_metal_fur_0.png?w=512",
"name": "Pixel Art",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "Create all sorts of chest armor with this model in a consistent style but with wide thematic range.",
"id": 17,
"img": "https://cdn.leonardo.ai/users/2e1f21ed-7ca4-4f78-80ed-1646ea463a01/generations/465401c6-febf-4223-a9f1-fae4e54931bf/Default_test_chest_armor_2.png?w=512",
"name": "Chest Armor",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "A great model for creating incredible semi-realistic magic potions. Try appending \"intricately detailed, 3d vray render\" to your prompt.",
"id": 18,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/6ae64207-79bc-48e2-b721-46c00d8c938b/Default_a_stunningly_beautiful_magic_potion_containing_a_galaxy_fili_1.png",
"name": "Magic Potions",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "A model for creating crystal deposits. Well-suited for use as items or in an isometric environment.",
"id": 19,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/a9c191fa-6137-4e01-922c-943ee4e4788c/Default_a_yellow_tkwst2_object_2d_object_art_by_tekkonkinkreet_octane_2.png?w=512",
"name": "Crystal Deposits",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "A model that's for creating awesome RPG characters of varying classes in a consistent style.",
"id": 20,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/1d554364-792b-498a-be17-ea0dfcca67d1/Default_male_king_green_hair_detailed_soft_hyperdetailed_Cinematic_oc_0.png?w=512",
"name": "Character Portraits",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "Create a wide range of magical items like weapons, shields, boots, books. Very versatile.",
"id": 21,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/1a2ce3b1-998c-4795-8582-6f49aca28160/Default_a_red_boot_object_concept_art_dota_2_style_red_abstract_backg_1.png?w=512",
"name": "Magic Items",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "Great at creating scifi buildings of varying themes. Append the word isometric to your prompt to ensure an isometric view. \"3d vray render\" also helps steer the generation well. ",
"id": 22,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/1aa5f16a-b64e-4a41-98d2-702fae7d4ba2/Default_a_stunning_scifi_base_turrets_and_lasers_3d_vray_render_0.png?w=512",
"name": "Isometric Scifi Buildings",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "Generate festive and fun Christmas stickers with this model. From cute and colorful to traditional and elegant.",
"id": 23,
"img": "https://cdn.leonardo.ai/users/2e1f21ed-7ca4-4f78-80ed-1646ea463a01/generations/15aaa53a-6ee1-4887-bfba-f00213f64756/Default_test_sticker_0.png?w=512",
"name": "Christmas Stickers",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "Create cute and charming game characters, perfect for adding some whimsy to your game design. Be sure to include the word \"character\" in your prompts for best results.",
"id": 24,
"img": "https://cdn.leonardo.ai/users/4e397cdd-4af3-48e5-b0e7-c2b5d1ebee59/generations/85cf7bd8-a233-42ca-a7d0-e900a0bdbb2a/Default_A_zany_game_character_clad_in_an_outrageous_cowboy_grass_skir_1.png",
"name": "Cute Characters",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "Create unique and intricate amulets, jewellery and more. Try loading up the prompt terms to steer it in interesting directions.",
"id": 25,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/edccace2-4291-482b-b3c6-d735ff06e640/Default_A_closeup_of_an_ancient_amulet_illuminated_by_a_single_ray_o_2.png",
"name": "Amulets",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "Perfect for creating adorable and cute animal characters - loveable and playful designs.",
"id": 26,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/6ac55e1f-500a-4967-bf7e-e5af117c5f6d/Default_a_rabbit_character_0.png",
"name": "Cute Animal Characters",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "Create a variety of impressively varied and detailed shield designs. Allows for an incredible range of material types.",
"id": 27,
"img": "https://cdn.leonardo.ai/users/4e397cdd-4af3-48e5-b0e7-c2b5d1ebee59/generations/7b3c338c-8011-42e7-bcc7-4c9cfd450b71/Default_An_extraterrestrial_shield_bearing_delicate_swirls_and_ethere_1.png?w=512",
"name": "Sheilds",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "From whimsical fairy-like beings to mythical creatures, create unique cute spirit characters.",
"id": 28,
"img": "https://cdn.leonardo.ai/users/7a129367-fa22-48ff-a5eb-441861c60a20/generations/8874bdc9-9e80-4acb-ae5a-fa2c4db6819b/Default_a_creature_with_more_than_six_eyes_in_rainbow_colors_0.png",
"name": "Spirit Creatures",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "Create all sorts of isometric fantasy environments. Try appending \"3d vray render, isometric\" and using a guidance scale of 6. For the negative prompt, try \"unclear, harsh, oversaturated, soft, blurry\".",
"id": 29,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/8f5f48d1-0042-4625-b47a-83e266432abf/Isometric_Fantasy_Waterfall_isolated_on_white_3d_vray_render_isometric_ultra_d_3.jpg",
"name": "Isometric Fantasy",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "An alternative crystal deposits model that gives a slightly more realistic feel with its creations. Try using \"object\" and \"3d vray render\" in your prompts.",
"id": 30,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/49c5c8a5-5fd9-4222-bc15-6ac8cd63cb8e/Default_a_crystal_1.png?w=512",
"name": "Crystal Deposits Alternate",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "A model for creating isometric asteroid environment tiles. Try appending \"3d vray render, unreal engine, beautiful, intricately detailed, trending on artstation, 8k\" to your prompt.",
"id": 31,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/8cd48839-28fe-4f25-9a32-b7a8a118583b/Default_isometric_tile_3d_vray_render_unreal_engine_beautiful_intrica_0.png",
"name": "Isometric Asteroid Tiles",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "The core model of the Leonardo platform. An extremely powerful and diverse finetune which is highly effective for a wide range of uses.",
"id": 32,
"img": "https://cdn.leonardo.ai/users/384ab5c8-55d8-47a1-be22-6a274913c324/generations/2956bf2a-3039-43ee-83d6-65318e5f58fa/Default_an_incredibly_stunning_photograph_of_a_throne_room_soft_light_2.png",
"name": "Leonardo Signature",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
}
],
"dallEModels": [
{
"description": "A simple Yet Effective Tool for Crafting Images Ranging from Everyday Realism to Animated Styles.",
"id": 101,
"img": "https://cdn.jsdelivr.net/gh/foyer-work/cdn-files@latest/dall-e-2.png",
"name": "DALL-E.2",
"paid": false,
"costPerImage": {
"base": 10,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
},
{
"description": "Offering Superior Precision and Expanded Creativity in Image Generation. A Step Ahead of DALL-E 2",
"id": 102,
"img": "https://cdn.jsdelivr.net/gh/foyer-work/cdn-files@latest/dall-e-3.png",
"name": "DALL-E.3",
"paid": true,
"costPerImage": {
"base": 60,
"alchemy": 6,
"photoreal": 6,
"promptMagicV2": 2,
"promptMagicV3": 6,
"merlinPromptMagic": 4
}
}
],
"misc": {
"ads": {
"visible": true
},
"quill": {
"visible": false,
"blacklistedDomains": []
},
"merlinCTA": {
"isVisible": true
},
"codeInterpreter": {
"isVisible": true,
"greeting": "Hey there 👋, Welcome to Code Interpreter - I will help you in decoding, analysing and making more sense of all your data-work.\n\nHow to use: \nStep-1: upload a document\nStep-2: input how you want to transform your data\nStep-3: open the final output in Google Sheets or download the file :)",
"actions": [
"Give me 3 insights",
"Statistical summary",
"Show me Trends",
"Change format to JSON"
],
"tutorialVisibility": true,
"summary": "How to use code interpreter under 30sec",
"videoURL": "https://www.youtube-nocookie.com/embed/VKEi5eeoeg4",
"blogURL": "https://www.getmerlin.in/blogs/chatgpt-app/how-to-use-ai-for-data-analysis"
},
"merlinOnAmazon": {
"cta": "Ask AI",
"questions": [
"What are some reviews?",
"What are some pros and cons?",
"What are some features?"
],
"visible": false
},
"merlinOnGoogleSheets": {
"cta": "Analyse Sheets With AI",
"questions": [],
"visible": false
},
"chat": {
"astro": {
"visible": false,
"astrologerPrompts": [
{
"prompts": [
"When will I meet the love of my life?",
"Have I met my soulmate yet?",
"Who can be my potential life partner?",
"What is holding me back from experiencing true love?"
],
"title": "Unlock Love Secrets"
},
{
"prompts": [
"Am I happy with my current job?",
"How much increment will I get this time?",
"When will I get promoted next?",
"Should I start my own start-up?",
"Which career option is the best for me?"
],
"title": "Find Career Clarity"
},
{
"prompts": [
"What does my stars say about my mental peace?",
"Am I an introvert or an extrovert?",
"Why don't I have good friends?"
],
"title": "Discover True Self"
},
{
"prompts": [
"How much money will I be making in next 5 years?",
"When will I buy my dream home?",
"Am I earning to my full potential?",
"Should I take loan this year?"
],
"title": "Consult Financial Destiny"
}
],
"tutorialVisibility": true,
"summary": "How to use astro chat under 30sec",
"videoURL": "https://www.youtube-nocookie.com/embed/QnAnLqWooB0",
"blogURL": "https://www.getmerlin.in/blogs/chatgpt-app/astrology-ai"
},
"image": {
"visible": true,
"tutorialVisibility": true,
"summary": "How to use image chat under 30sec",
"videoURL": "https://www.youtube-nocookie.com/embed/3BV8RVKpR5Y",
"blogURL": "https://www.getmerlin.in/blogs/chatgpt-app/ai-image-generation",
"tryNewBannerVisible": true,
"tryNewBannerTitle": "Try out our new image generator",
"tryNewLink": "https://www.getmerlin.in/bonkers"
},
"rizz": {
"visible": false
},
"chatbot": {
"visible": true,
"tutorialVisibility": true,
"summary": "How to use chatbots under 30sec",
"videoURL": "https://www.youtube-nocookie.com/embed/SABesWY2fEU",
"blogURL": "https://www.getmerlin.in/blogs/chatgpt-app/make-your-own-chatbot"
},
"visible": true,
"chatSharing": true,
"chatWithImage": true,
"web": {
"visible": true,
"tutorialVisibility": true,
"summary": "How to use webchat under 30sec",
"videoURL": "https://www.youtube-nocookie.com/embed/i0uI2Wyb2Vg",
"blogURL": "https://www.getmerlin.in/blogs/chatgpt-app/chat-with-any-website"
},
"doc": {
"visible": true,
"tutorialVisibility": true,
"summary": "How to use doc chat under 30sec",
"videoURL": "https://www.youtube-nocookie.com/embed/AFdcZj0Z6Xc",
"blogURL": "https://www.getmerlin.in/blogs/chatgpt-app/summarize-any-pdf",
"tryNewBannerVisible": true,
"tryNewBannerTitle": "Try out our new doc chat",
"tryNewLink": "https://www.getmerlin.in/pdf-chat"
},
"unified": {
"visible": true
},
"gui": "iframe"
},
"codeSummarizer": {
"blackListedDomains": [
"discord.com",
"127.0.0.1",
"figma.com",
"bard.google.com",
"chat.openai.com",
"platform.openai.com",
"getmerlin.in",
"localhost",
"colab.research.google.com",
"perplexity.ai",
"telegram.org",
"tabs.ultimate-guitar.com",
"huggingface.co",
"substack",
"gemini.com"
],
"visible": false
},
"dopplegainger": {
"visible": false
},
"doppelgainger": {
"visible": false,
"v2Visible": false,
"blacklistedSlugs": [
"home",
"explore",
"notifications",
"messages",
"bookmarks",