-
Notifications
You must be signed in to change notification settings - Fork 0
/
chatgptpro.json
1011 lines (1011 loc) · 125 KB
/
chatgptpro.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
{
"version": "https://jsonfeed.org/version/1.1",
"title": "r/chatgptpro",
"description": "Subreddit dedicated to discussions on the advanced capabilities and professional applications of ChatGPT.",
"home_page_url": "https://reddit.com",
"feed_url": "https://raw.githubusercontent.com/jonathanlaniado/feeds/master/chatgptpro.json",
"icon": "https://styles.redditmedia.com/t5_7r4jvp/styles/communityIcon_1dxejt5cu1sa1.png",
"favicon": "https://styles.redditmedia.com/t5_7r4jvp/styles/communityIcon_1dxejt5cu1sa1.png",
"items": [
{
"id": "1gkauhv",
"url": "/r/ChatGPTPro/comments/1gkauhv/i_just_discovered_something_that_is_exciting_for/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/1gkauhv/i_just_discovered_something_that_is_exciting_for/",
"title": "I just discovered something that is exciting (for teachers mainly)",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1gkauhv/i_just_discovered_something_that_is_exciting_for/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1gkauhv/i_just_discovered_something_that_is_exciting_for/'>Reddit</a></caption><div><br></div><p>Okay....I just got really excited so i wanted to come here and explain. I teach high school aged kids in a private school that focuses on kids with neurodivergence of all types. I have kids with autism, dysgraphia, dyscalculia, dyslexia and so on. I took the time to enter all of my students by their first name, age and what their traits and diagnosis is. I had an idea to help with my educational approach to these kids. </p>\n<p>I am blown away at what I'm getting. Because I have so many different types of neurospiciness (what my kids call themselves) it's a little difficult to develop curriculum that is geared for each kid. For example in my reading class I asked Alex, my GPT's name, what kind of project should each kid do....it was amazing guys. It gave me ideas that each kid loved. My artist that has crippling anxiety about projects (like breaks down crying uncontrollably for the easiest of things) is doing a 6 panel illustration of her book. Limited to 6 panels (achievable), The limitation challenges her ability to summarize accurately and concisely. It lets her artistic brain get scratched and is a REWARD as apposed to a anxiety ridden challenge. </p>\n<p>I'm so excited about the opening of the door to these kids abilities instead of making these kids try to \"fit\" into a system that their brains have such a challenge existing in. This might not be a big deal to some of you but if you have a kid that is neurospicy or deal with kids with life challenges, GPT can open new doors for us that are looking for keys to open their locks. </p>",
"date_published": "2024-11-05T16:34:34+00:00",
"authors": [
{
"name": "ResponsibleAd8287",
"url": "https://www.reddit.com/user/ResponsibleAd8287"
}
]
},
{
"id": "1ehm157",
"url": "/r/ChatGPTPro/comments/1ehm157/after_a_lie_that_chatgpt_repeated_over_and_over/",
"external_url": "https://i.redd.it/gn5he0sm43gd1.jpeg",
"title": "After a lie that ChatGPT repeated over and over again, I had a discussion with the machine. And what a self-realization \u2014 Shut me down",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1ehm157/after_a_lie_that_chatgpt_repeated_over_and_over/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1ehm157/after_a_lie_that_chatgpt_repeated_over_and_over/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/gn5he0sm43gd1.jpeg\" />",
"date_published": "2024-08-01T17:10:09+00:00",
"authors": [
{
"name": "Fulham_Chelsea",
"url": "https://www.reddit.com/user/Fulham_Chelsea"
}
]
},
{
"id": "1e9ellb",
"url": "/r/ChatGPTPro/comments/1e9ellb/why_are_you_still_using_gpt4o_when_claude35sonnet/",
"external_url": "https://thepi.pe/evals",
"title": "Why are you still using GPT-4o when Claude-3.5-Sonnet scores better on MMLU and HumanEval? DIscuss",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1e9ellb/why_are_you_still_using_gpt4o_when_claude35sonnet/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1e9ellb/why_are_you_still_using_gpt4o_when_claude35sonnet/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-07-22T13:41:40+00:00",
"authors": [
{
"name": "Confident-Honeydew66",
"url": "https://www.reddit.com/user/Confident-Honeydew66"
}
]
},
{
"id": "1dnkd5p",
"url": "/r/ChatGPTPro/comments/1dnkd5p/found_a_new_use_for_chatgpt/",
"external_url": "https://i.redd.it/rljgvae2ak8d1.jpeg",
"title": "Found a new use for ChatGPT",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1dnkd5p/found_a_new_use_for_chatgpt/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1dnkd5p/found_a_new_use_for_chatgpt/'>Reddit</a></caption><div><br></div><p>My wife and I look through old DVDs for family members\u2019 favorites for gifts. This is going to be a game changer.</p><div><br></div><img src=\"https://i.redd.it/rljgvae2ak8d1.jpeg\" />",
"date_published": "2024-06-24T18:17:49+00:00",
"authors": [
{
"name": "exploristofficial",
"url": "https://www.reddit.com/user/exploristofficial"
}
]
},
{
"id": "1dgcjew",
"url": "/r/ChatGPTPro/comments/1dgcjew/how_do_i_stop_chatgpt_from_writing_like_this_its/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/1dgcjew/how_do_i_stop_chatgpt_from_writing_like_this_its/",
"title": "How do I stop ChatGPT from writing like this? It's driving me NUTS!",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1dgcjew/how_do_i_stop_chatgpt_from_writing_like_this_its/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1dgcjew/how_do_i_stop_chatgpt_from_writing_like_this_its/'>Reddit</a></caption><div><br></div><p><em>\"It's crucial to enhance the effectiveness of....\"</em></p>\n<p><em>\"is critical to tailor our services effectively for your specific needs\"</em></p>\n<p><strong>SO. MUCH. FLUFF.</strong></p>\n<p>Seriously, GPT-4 has become a waffle machine.</p>\n<p>No matter what I say in my prompts, no matter how precisely I describe the kind of language I want, and no matter how many examples I provide...</p>\n<p>It... keeps... spitting.... out.... the.... same.... useless.... garbage.</p>\n<p>Can someone please tell me how to fix it?</p>\n<p>Thank you</p>\n<p>EDIT. I'm using GPT-4, not 4o (which is even worse for this problem).</p>",
"date_published": "2024-06-15T07:28:14+00:00",
"authors": [
{
"name": "ListentoLewis",
"url": "https://www.reddit.com/user/ListentoLewis"
}
]
},
{
"id": "1dcthna",
"url": "/r/ChatGPTPro/comments/1dcthna/apple_has_deeply_integrated_chatgpt_into_ios_18/",
"external_url": "https://i.redd.it/i295jjkyks5d1.jpeg",
"title": "Apple has deeply integrated ChatGPT into iOS 18.",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1dcthna/apple_has_deeply_integrated_chatgpt_into_ios_18/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1dcthna/apple_has_deeply_integrated_chatgpt_into_ios_18/'>Reddit</a></caption><div><br></div><p>Apple is introducing Apple Intelligence in iOS 18, enabling users to integrate ChatGPT models through their OpenAI account. This integration allows users to choose ChatGPT for Siri and other intelligent features in iOS 18, iPadOS 18, and macOS Sequoia. Siri can now hand off difficult questions to ChatGPT, giving users access to either the free ChatGPT quota or their ChatGPT Plus benefits. Apple also plans to collaborate with other AI model makers, such as Google Gemini, in the future, providing more options.</p><div><br></div><img src=\"https://i.redd.it/i295jjkyks5d1.jpeg\" />",
"date_published": "2024-06-10T19:00:42+00:00",
"authors": [
{
"name": "spyro311",
"url": "https://www.reddit.com/user/spyro311"
}
]
},
{
"id": "1ctb33g",
"url": "/r/ChatGPTPro/comments/1ctb33g/is_it_just_me_or_gpt4o_feels_like_a_slight/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/1ctb33g/is_it_just_me_or_gpt4o_feels_like_a_slight/",
"title": "Is it just me or GPT-4o feels like a slight downgrade from GPT-4?",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1ctb33g/is_it_just_me_or_gpt4o_feels_like_a_slight/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1ctb33g/is_it_just_me_or_gpt4o_feels_like_a_slight/'>Reddit</a></caption><div><br></div><p>Sure it's faster but I found that it is a bit less capable of advanced reasoning and if I want something that requires critical or complex thinking, GPT-4 produces more accurate results.</p>",
"date_published": "2024-05-16T11:52:56+00:00",
"authors": [
{
"name": "grind_till_forbes",
"url": "https://www.reddit.com/user/grind_till_forbes"
}
]
},
{
"id": "1cr6n52",
"url": "/r/ChatGPTPro/comments/1cr6n52/gpt4o_available_for_all_free_users/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/1cr6n52/gpt4o_available_for_all_free_users/",
"title": "GPT4-o Available for ALL FREE users",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1cr6n52/gpt4o_available_for_all_free_users/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1cr6n52/gpt4o_available_for_all_free_users/'>Reddit</a></caption><div><br></div><p>Just recently, OpenAI announced their latest model GPT-4o which was the im-a-good-gpt-chatbot that appeared on the LYMSYS battle mode. This will be available to all free users.</p>\n<p>https://reddit.com/link/1cr6n52/video/a05037ahm80d1/player</p>\n<p><a href=\"https://twitter.com/ArDeved/status/1790080561010077809\">Here is ALL the key takeaways from the event (No sign up)</a></p>",
"date_published": "2024-05-13T18:33:11+00:00",
"authors": [
{
"name": "ArFiction",
"url": "https://www.reddit.com/user/ArFiction"
}
]
},
{
"id": "1cnzw0j",
"url": "/r/ChatGPTPro/comments/1cnzw0j/how_i_use_gpt_at_work_as_a_dev_to_be_10x/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/1cnzw0j/how_i_use_gpt_at_work_as_a_dev_to_be_10x/",
"title": "How I use GPT at work as a dev to be 10x",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1cnzw0j/how_i_use_gpt_at_work_as_a_dev_to_be_10x/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1cnzw0j/how_i_use_gpt_at_work_as_a_dev_to_be_10x/'>Reddit</a></caption><div><br></div><p>Ever since ChatGPT-3.5 was released, my life was changed forever. I quickly began using it for personal projects, and as soon as GPT-4 was released, I signed up without a second of hesitation. Shortly thereafter, as an automation engineer moving from Go to Python, and from classic front end and REST API testing to a heavy networking product, I found myself completely lost. BUT - ChatGPT to the rescue, and I found myself navigating the complex new reality with relative ease.</p>\n<p>I simply am constantly copy-pasting entire snippets, entire functions, entire function <em>trees</em>, climbing up the function hierarchy and having GPT just explain both the python code and syntax and networking in general. It excels as a teacher, as I simply query it to explain each and every concept, climbing up the conceptual ladder any time I don't understand something.</p>\n<p>Then when I need to write new code, I simply feed similar functions to GPT, tell it what I need, instruct it to write it using best-practice and following the conventions of my code base. It's incredible how quickly it spits it out.</p>\n<p>It doesn't always work at first, but then I simply have it add debug logging and use it to brainstorm for possible issues.</p>\n<p>I've done this to quickly implement tasks that would have taken me days to accomplish. Most importantly, it gives me the confidence that I can basically do anything, as GPT, with proper guidance, is a star developer.</p>\n<p>My manager is really happy with me so far, at least from the feedback I've received in my latest 1:1.</p>\n<p>The only thing that I struggle with is ethical - how much should I blur the information I copy-paste? I'm not actually putting any really sensitive there, so I don't think it's an issue. Obviously no api keys or passwords or anything, and it's testing code so certainly no core IP being shared.</p>\n<p>I've written elsewhere about how I've used this in my personal life, allowing me to build a <a href=\"https://therapywithai.com/\">full stack application</a>, but it's actually my professional life that has changed more.</p>",
"date_published": "2024-05-09T15:23:17+00:00",
"authors": [
{
"name": "TherapyWithAi_com",
"url": "https://www.reddit.com/user/TherapyWithAi_com"
}
]
},
{
"id": "1cgz9o5",
"url": "/r/ChatGPTPro/comments/1cgz9o5/major_us_newspapers_sue_openai_microsoft_for/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/1cgz9o5/major_us_newspapers_sue_openai_microsoft_for/",
"title": "Major U.S. newspapers sue OpenAI, Microsoft for copyright infringement",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1cgz9o5/major_us_newspapers_sue_openai_microsoft_for/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1cgz9o5/major_us_newspapers_sue_openai_microsoft_for/'>Reddit</a></caption><div><br></div><p>Eight major U.S. newspapers have <a href=\"https://www.axios.com/2024/04/30/microsoft-openai-lawsuit-copyright-newspapers-alden-global\">sued OpenAI and Microsoft for copyright infringement</a>, claiming their articles were used to train AI models without permission or compensation. This follows a similar lawsuit by the New York Times.</p>\n<p>If you want to stay ahead of the curve in AI and tech,\u00a0<a href=\"https://smmry.tech/?utm_source=reddit\">take a look here</a>.</p>\n<p><strong>Key points:</strong></p>\n<ul>\n<li>The lawsuit argues that OpenAI and Microsoft infringed copyrights by using millions of articles from these newspapers to train AI models like ChatGPT and Copilot.</li>\n<li>In addition to copyright infringement, the lawsuit alleges reputational damage because AI models like ChatGPT have incorrectly attributed fabricated content to the newspapers.</li>\n<li>The outcome of these lawsuits could significantly impact how news organizations are compensated in the age of AI, with potential implications for ad revenue and content scraping.</li>\n</ul>\n<p><a href=\"https://www.axios.com/2024/04/30/microsoft-openai-lawsuit-copyright-newspapers-alden-global\">Source (Axios)</a></p>\n<p><strong>PS: If you enjoyed this post</strong>, you\u2019ll love my\u00a0<a href=\"https://smmry.tech/?utm_source=reddit\">ML-powered newsletter</a>\u00a0that summarizes the best AI/tech news from 50+ media sources. It\u2019s already being read by\u00a0<strong>hundreds of professionals</strong>\u00a0from\u00a0<strong>OpenAI, HuggingFace, Apple</strong>\u2026 </p>",
"date_published": "2024-04-30T18:00:21+00:00",
"authors": [
{
"name": "Rare_Adhesiveness518",
"url": "https://www.reddit.com/user/Rare_Adhesiveness518"
}
]
},
{
"id": "1cg2weq",
"url": "/r/ChatGPTPro/comments/1cg2weq/reliable_information_im_doing_my_phd_and_helped/",
"external_url": "https://v.redd.it/89ffvcyfzfxc1",
"title": "Reliable Information: I'm doing my PhD and helped develop a ChatGPT tool to assist with learning and research on virtually any topic. It generates responses backed with peer-reviewed literature and can also summarize research articles. It's like an interactive encyclopedia. Link: www.academicai.io",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1cg2weq/reliable_information_im_doing_my_phd_and_helped/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1cg2weq/reliable_information_im_doing_my_phd_and_helped/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-04-29T16:05:57+00:00",
"authors": [
{
"name": "HugoWeaving5",
"url": "https://www.reddit.com/user/HugoWeaving5"
}
]
},
{
"id": "1cc3sn3",
"url": "/r/ChatGPTPro/comments/1cc3sn3/im_doing_my_phd_and_helped_develop_a_chatgpt_tool/",
"external_url": "https://v.redd.it/ug6i5ye1ngwc1",
"title": "I'm doing my PhD and helped develop a ChatGPT tool to assist with learning and research on virtually any topic. It generates responses backed with peer-reviewed literature and can also summarize research articles. It's like an interactive encyclopedia. Link: www.academicai.io",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1cc3sn3/im_doing_my_phd_and_helped_develop_a_chatgpt_tool/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1cc3sn3/im_doing_my_phd_and_helped_develop_a_chatgpt_tool/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-04-24T17:14:40+00:00",
"authors": [
{
"name": "HugoWeaving5",
"url": "https://www.reddit.com/user/HugoWeaving5"
}
]
},
{
"id": "1c8h2yq",
"url": "/r/ChatGPTPro/comments/1c8h2yq/new_open_source_api_lets_you_feed_any_pdf_word/",
"external_url": "https://v.redd.it/t8wn3ptj9kvc1",
"title": "New open source API lets you feed any PDF, word doc, web side, slide deck, or image into GPT-4-Vision to SEE them for comprehensive human-level understanding. All open source",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1c8h2yq/new_open_source_api_lets_you_feed_any_pdf_word/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1c8h2yq/new_open_source_api_lets_you_feed_any_pdf_word/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-04-20T04:23:13+00:00",
"authors": [
{
"name": "ToeIntelligent4472",
"url": "https://www.reddit.com/user/ToeIntelligent4472"
}
]
},
{
"id": "1c7ueub",
"url": "/r/ChatGPTPro/comments/1c7ueub/i_just_launched_peoplealsoaskai_find_the/",
"external_url": "https://v.redd.it/qvhy7jnb3fvc1",
"title": "I just launched PeopleAlsoAsk.ai -\ud83d\udd25 Find the Questions People Are Asking about any Niche \u2049\ufe0f & Answer the Public with AI.",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1c7ueub/i_just_launched_peoplealsoaskai_find_the/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1c7ueub/i_just_launched_peoplealsoaskai_find_the/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-04-19T11:23:08+00:00",
"authors": [
{
"name": "xindex",
"url": "https://www.reddit.com/user/xindex"
}
]
},
{
"id": "1c33b93",
"url": "/r/ChatGPTPro/comments/1c33b93/i_used_gpt_to_find_782466_tech_jobs/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/1c33b93/i_used_gpt_to_find_782466_tech_jobs/",
"title": "I used GPT to find 782,466 tech jobs",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1c33b93/i_used_gpt_to_find_782466_tech_jobs/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1c33b93/i_used_gpt_to_find_782466_tech_jobs/'>Reddit</a></caption><div><br></div><p>The job search process sucks, I hate linkedin, indeed, random crap job boards. Why isn't there one place, ONE PLACE, on the internet that has ALL the jobs that are actually hiring.</p>\n<p>So, I built scrapers with scrapy to get jobs directly from company web pages (so there are never any old/spam jobs), and then used GPT 3.5 to summarize and derive insights to help the job seeker find the perfect role.</p>\n<p>My eventual goal is to have all the jobs on the internet.</p>\n<p>After a few iterations it's finally half decent, and I now exclusively use it for my own job search. Its available to everyone here: <a href=\"http://www.joby.ai/\">www.joby.ai</a></p>\n<p>Let me know if you have any questions, would love to get your feedback!</p>",
"date_published": "2024-04-13T14:32:01+00:00",
"authors": [
{
"name": "zsar0299",
"url": "https://www.reddit.com/user/zsar0299"
}
]
},
{
"id": "1bnlxke",
"url": "/r/ChatGPTPro/comments/1bnlxke/how_to_write_simple_with_chatgpt_and_why_it_works/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/1bnlxke/how_to_write_simple_with_chatgpt_and_why_it_works/",
"title": "How to write simple with ChatGPT (and why it works)",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1bnlxke/how_to_write_simple_with_chatgpt_and_why_it_works/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1bnlxke/how_to_write_simple_with_chatgpt_and_why_it_works/'>Reddit</a></caption><div><br></div><p>If one thing bothers me it's the default voice of ChatGPT.</p>\n<p>You see it everywhere on LinkedIn and the rest of the internet.</p>\n<p>It's extremely repetitive and monotonous, but maybe worst of all\u2014it's extremely hard to read.</p>\n<p>For example, let's look at a common prompt's output. The prompt would be something like this:</p>\n<pre><code>\"Write an announcement for LinkedIn that we have a new product launched at Org called Product X\"\n</code></pre>\n<p>And the output looks like:</p>\n<p>​</p>\n<p><a href=\"https://preview.redd.it/rzeofker2jqc1.png?width=1292&format=png&auto=webp&s=29a7500ceb592bd33f199146d52b7d4903eec79a\">Checked via hemingwayapp.com</a></p>\n<p>The sentences are long full with complex words, the passive voice, and adverbs. </p>\n<p>Great for your English paper, terrible for writing on the internet.</p>\n<h1>Why simple writing matters</h1>\n<p>In the USA, 54% of adults have literacy below a 6th grade level. By using ChatGPT's default voice, you could lose out on connecting with a huge audience. The same is true in many other countries.</p>\n<p>So how can we make more impact with ChatGPT?</p>\n<p><strong>The answer is simple: write simply.</strong></p>\n<p>Consider what Jeff Bezos, Warren Buffet, and viral LinkedIn writers like Sahil Bloom have in common. They all write extremely simply, often at a 7th grade level on average.</p>\n<p>​</p>\n<p>https://preview.redd.it/gowo1s443jqc1.png?width=1292&format=png&auto=webp&s=f0f6f2fcc1b5d99b2d5dfd84d269df34bb7cb311</p>\n<p>Simple writing demonstrates clear thinking and the ability to make complex topics easy to grasp. That is a superpower.</p>\n<p>A simple trick to make ChatGPT write simple (without making it childish) is to add:</p>\n<pre><code>Write at a Flesch reading score of 80 or higher\n</code></pre>\n<p>This will result in output at a 6th grade level without sounding childish. It's perfect for business writing, which needs to be direct, concise and clear.</p>\n<p>If you want it to take one step further to create powerful and clear messages, try out the Power Writing prompt:</p>\n<pre><code>Use clear, direct language and avoid complex terminology.\nAim for a Flesch reading score of 80 or higher.\nUse the active voice.\nAvoid adverbs.\nAvoid buzzwords and instead use plain English.\nUse jargon where relevant.\nAvoid being salesy or overly enthusiastic and instead express calm confidence.\n</code></pre>\n<p>This will work wonders to make your writing simple, to the point, but not simplistic.</p>\n<p>If you enjoyed that please consider subscribing to my <a href=\"https://www.workwiz.ai/newsletter\">AI newsletter.</a> It's a weekly newsletter filled with value on how to work smarter with AI.</p>\n<p>Hope you enjoy it!</p>\n<p>​</p>",
"date_published": "2024-03-25T19:06:51+00:00",
"authors": [
{
"name": "bigwhitebird",
"url": "https://www.reddit.com/user/bigwhitebird"
}
]
},
{
"id": "1bhlva3",
"url": "/r/ChatGPTPro/comments/1bhlva3/my_stack_overflow_visits_after_chatgptcopilot/",
"external_url": "https://i.redd.it/4pg6bzst02pc1.png",
"title": "My stack overflow visits after ChatGPT/Copilot",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1bhlva3/my_stack_overflow_visits_after_chatgptcopilot/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1bhlva3/my_stack_overflow_visits_after_chatgptcopilot/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/4pg6bzst02pc1.png\" />",
"date_published": "2024-03-18T08:35:43+00:00",
"authors": [
{
"name": "oppai_suika",
"url": "https://www.reddit.com/user/oppai_suika"
}
]
},
{
"id": "1at9bla",
"url": "/r/ChatGPTPro/comments/1at9bla/what_will_the_future_of_a_smart_tv_be_like_with_ai/",
"external_url": "https://i.redd.it/x9l7mtfi07jc1.png",
"title": "What will the future of a Smart TV be like with AI?",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1at9bla/what_will_the_future_of_a_smart_tv_be_like_with_ai/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1at9bla/what_will_the_future_of_a_smart_tv_be_like_with_ai/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/x9l7mtfi07jc1.png\" />",
"date_published": "2024-02-17T18:57:51+00:00",
"authors": [
{
"name": "sinkmyteethin",
"url": "https://www.reddit.com/user/sinkmyteethin"
}
]
},
{
"id": "1arm620",
"url": "/r/ChatGPTPro/comments/1arm620/openai_introduces_sora_text_to_video/",
"external_url": "https://openai.com/sora",
"title": "OpenAI introduces Sora - Text to Video",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1arm620/openai_introduces_sora_text_to_video/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1arm620/openai_introduces_sora_text_to_video/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-02-15T18:20:07+00:00",
"authors": [
{
"name": "InsertWittySaying",
"url": "https://www.reddit.com/user/InsertWittySaying"
}
]
},
{
"id": "19c48nh",
"url": "/r/ChatGPTPro/comments/19c48nh/10_easy_ways_to_use_chatgpt_strategically/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/19c48nh/10_easy_ways_to_use_chatgpt_strategically/",
"title": "10 Easy Ways to Use ChatGPT Strategically",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/19c48nh/10_easy_ways_to_use_chatgpt_strategically/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/19c48nh/10_easy_ways_to_use_chatgpt_strategically/'>Reddit</a></caption><div><br></div><h3>Without wasting your time, let's dive straight into it!</h3>\n<h3>1) \ud83d\udc8e Write from Different Perspectives with ChatGPT</h3>\n<p>Enhance your writing by having ChatGPT adopt the perspectives of characters from diverse backgrounds or viewpoints.</p>\n<p><em>Example Prompt:</em></p>\n<pre><code>Topic: Productivity for entrepreneurs For the above topic, write multiple perspectives from a group with different viewpoints. For each perspective, write in their own voice, using phrases that person would use.\n</code></pre>\n<h3>2) \ud83d\udc8e Vary Output Formats with ChatGPT</h3>\n<p>Get creative with your content by asking ChatGPT to generate it in various formats.</p>\n<p><em>Example Prompt:</em></p>\n<pre><code>Create a mind map on the topic of using Notion to stay organized as a content creator, listing out the central idea, main branches, and sub-branches.\n</code></pre>\n<h3>3) \ud83d\udc8e Generate Purposeful Content with ChatGPT</h3>\n<p>Inform ChatGPT about your audience and the goal of your content for tailored outputs.</p>\n<p><em>Example Prompt:</em></p>\n<pre><code>Topic: How to grow your coaching business For audience: Business coaches Content goal: Motivate audience to feel excited about growing their business while teaching them one tip. Writing style: Clear, concise, conversational, down-to-earth, humble, experienced\n</code></pre>\n<h3>4) \ud83d\udc8e Use Unconventional Prompts</h3>\n<p>Explore ChatGPT's creative potential with open-ended or abstract prompts.</p>\n<p><em>Example Prompts:</em></p>\n<pre><code>Write a poem about copywriting.\n</code></pre>\n<p>​</p>\n<pre><code>Describe feeling like an entrepreneur in 10 adjectives.\n</code></pre>\n<h3>5) \ud83d\udc8e Ultra-Brainstormer with ChatGPT</h3>\n<p>Push beyond the generic by asking ChatGPT for unique angles on familiar topics.</p>\n<p><em>Example Prompt:</em></p>\n<pre><code>Topic: How to double your creative output. For the topic above, brainstorm new angles or approaches. Prioritize ideas that are uncommon or novel.\n</code></pre>\n<h3>6) \ud83d\udc8e Capture Your Writing Style</h3>\n<p>Guide ChatGPT in creating a style guide based on your own writing.</p>\n<p><em>Example Prompt:</em></p>\n<pre><code>Analyze the text below for style, voice, and tone. Using NLP, create a prompt to write a new article in the same style, voice, and tone: [Insert your text here]\n</code></pre>\n<h3>7) \ud83d\udc8e Blend in Human-Written Techniques</h3>\n<p>Combine expert writing advice with ChatGPT's capabilities for enhanced content.</p>\n<p><em>Example Prompt:</em></p>\n<pre><code>Write a brief post about why copywriting is an essential skill in 2023. Use these strategies: - Use strong persuasive language - Ask questions to transition between paragraphs - Back up main points with evidence and examples - Speak directly to the reader\n</code></pre>\n<h3>8) \ud83d\udc8e Experiment with Styles and Tones</h3>\n<p>Utilize ChatGPT for content in various styles or tones, such as satire or irony.</p>\n<p><em>Example Prompt:</em></p>\n<pre><code>Give the most ironic, satirical advice you can about using ChatGPT to create more effective content.\n</code></pre>\n<h3>9) \ud83d\udc8e Simulate an Expert Persona</h3>\n<p>Engage with ChatGPT as if it were a customer, co-host, or an expert in a specific field.</p>\n<p><em>Example Prompt:</em></p>\n<pre><code>You are a talented analyst at a top-tier market research firm, a graduate of Harvard Business School. Coach me to create content that connects with C-level executives at B2B SaaS companies. What open-ended questions do I ask? Prioritize uncommon, expert advice.\n</code></pre>\n<h3>10) \ud83d\udc8e Challenge the Conventional Narrative</h3>\n<p>Encourage ChatGPT to provide perspectives that go against the mainstream narrative.</p>\n<p><em>Example Prompt:</em></p>\n<pre><code>Topic: Growing your email newsletter\n\nFor the above topic, give examples that contradict the dominant narrative. Generate an outline for thought-provoking content that challenges assumptions.\n</code></pre>\n<p>If you found this useful, consider getting my <a href=\"https://godofprompt.ai/prompt-engineering-guide\">Prompt Engineering Guide</a> by clicking <a href=\"https://godofprompt.ai/prompt-engineering-guide\">here.</a></p>",
"date_published": "2024-01-21T14:12:09+00:00",
"authors": [
{
"name": "Senior_tasteey",
"url": "https://www.reddit.com/user/Senior_tasteey"
}
]
},
{
"id": "199mcdv",
"url": "/r/ChatGPTPro/comments/199mcdv/looking_for_interested_parties_to_give_free_gpt4/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/199mcdv/looking_for_interested_parties_to_give_free_gpt4/",
"title": "Looking for Interested parties to give free GPT-4 Access!",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/199mcdv/looking_for_interested_parties_to_give_free_gpt4/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/199mcdv/looking_for_interested_parties_to_give_free_gpt4/'>Reddit</a></caption><div><br></div><p>Hello, first of all. Nice to meet you! I am looking for likeminded people to share a demo product with! Looking for honest feedback & providing value first. <strong>Comment</strong> on this post if you'd like to help out!</p>",
"date_published": "2024-01-18T09:34:38+00:00",
"authors": [
{
"name": "UAAgency",
"url": "https://www.reddit.com/user/UAAgency"
}
]
},
{
"id": "199bczj",
"url": "/r/ChatGPTPro/comments/199bczj/i_built_a_gpt_that_can_estimate_calories_of_foods/",
"external_url": "https://i.redd.it/tmehtppt53dc1.jpeg",
"title": "I built a GPT that can estimate calories of foods from just a photo",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/199bczj/i_built_a_gpt_that_can_estimate_calories_of_foods/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/199bczj/i_built_a_gpt_that_can_estimate_calories_of_foods/'>Reddit</a></caption><div><br></div><p>https://chat.openai.com/g/g-Ms1Xj7J0L-calorie-tracker\n*note this is only estimation, for more reliable estimations include information such as brand types and serving sizes</p><div><br></div><img src=\"https://i.redd.it/tmehtppt53dc1.jpeg\" />",
"date_published": "2024-01-17T23:35:36+00:00",
"authors": [
{
"name": "JaguarJust9461",
"url": "https://www.reddit.com/user/JaguarJust9461"
}
]
},
{
"id": "197gswf",
"url": "/r/ChatGPTPro/comments/197gswf/microsoft_copilot_is_now_using_the/",
"external_url": "https://www.windowscentral.com/software-apps/microsoft-copilot-is-now-using-the-previously-paywalled-gpt-4-turbo-saving-you-dollar20-a-month",
"title": "Microsoft Copilot is now using the previously-paywalled GPT-4 Turbo, saving you $20 a month",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/197gswf/microsoft_copilot_is_now_using_the/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/197gswf/microsoft_copilot_is_now_using_the/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-01-15T19:04:09+00:00",
"authors": [
{
"name": "McSnoo",
"url": "https://www.reddit.com/user/McSnoo"
}
]
},
{
"id": "1952s1r",
"url": "/r/ChatGPTPro/comments/1952s1r/sudden_deletion_of_my_widelyused_gpt_from_the_gpt/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/1952s1r/sudden_deletion_of_my_widelyused_gpt_from_the_gpt/",
"title": "Sudden Deletion of My Widely-Used GPT from the GPT Store: 1.5 Months of Hard Work and Promotion Gone in Vain",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/1952s1r/sudden_deletion_of_my_widelyused_gpt_from_the_gpt/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1952s1r/sudden_deletion_of_my_widelyused_gpt_from_the_gpt/'>Reddit</a></caption><div><br></div><p>Over the past one and a half months, I've been passionately working on a GPT project named \u201cVideo Summarizer AI\u201d [<a href=\"https://chat.openai.com/g/g-GvcYCKPIH-video-summarizer-ai\">https://chat.openai.com/g/g-GvcYCKPIH-video-summarizer-ai</a>]. This project was designed to create educational summaries from videos submitted by users, aiming to improve their learning experience.</p>\n<p>With over 5000+ chats, the GPT was well-received, ranking 10th in the Education category. Some users were even euphoric about this solution. My role encompassed everything from backend development to testing, engaging with users, and refining their experience. I also personally funded its marketing and promotion.</p>\n<p>However, a sudden notification yesterday informed me of the GPT's removal from the store, without any specific reason. It hinted at a possible breach of the Terms of Service or Usage Policies, prompting me to carefully revise and correct any possible infractions.</p>\n<p>Despite this effort, today brought another unexplained removal notice, referring again to the same documents I had diligently reviewed. Notably, a legal expert I consulted identified no violations in my work.</p>\n<p>When the second notification arrived, I was only able to see its title on my phone, as the content wouldn't load. Once home, I accessed it on my laptop, only to find no detailed explanation for the removal and no possibility of restoring the GPT to the store or appealing the decision.</p>\n<p>This occurred even though there are copycats and similar GPTs in the store that clearly infringe on the 'YouTube' trademark in their GPT names and lack educational purposes, in contrast to my \"Video Summarizer AI\", yet they remain available.My aspiration was to actively contribute to the OpenAI Store's GPT development. This seems impossible now, given the unexplained removal of my project.</p>\n<p>If this is a final decision and not just a technical glitch, I urge Openai for transparency regarding any errors I might have made. Despite my earnest efforts, including legal consultation, the reason behind this decision remains a mystery.</p>\n<p>​</p>\n<p>https://preview.redd.it/3x5bn83l22cc1.png?width=820&format=png&auto=webp&s=c10be4adf0c5dfbd98df3332326f9cf016b8aad3</p>",
"date_published": "2024-01-12T18:59:58+00:00",
"authors": [
{
"name": "mrtdex15",
"url": "https://www.reddit.com/user/mrtdex15"
}
]
},
{
"id": "194u66t",
"url": "/r/ChatGPTPro/comments/194u66t/the_fathers_of_modern_computing_would_be_proud_to/",
"external_url": "https://chat.openai.com/g/g-6EER9RKH6-caveman-gpt",
"title": "The fathers of modern computing would be proud to see their life's work result in this.",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/194u66t/the_fathers_of_modern_computing_would_be_proud_to/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/194u66t/the_fathers_of_modern_computing_would_be_proud_to/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-01-12T12:43:38+00:00",
"authors": [
{
"name": "Parry11",
"url": "https://www.reddit.com/user/Parry11"
}
]
},
{
"id": "193cxnx",
"url": "/r/ChatGPTPro/comments/193cxnx/chatgpt_team_only_25/",
"external_url": "https://i.redd.it/6msb5nuw7nbc1.png",
"title": "ChatGPT Team only $25",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/193cxnx/chatgpt_team_only_25/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/193cxnx/chatgpt_team_only_25/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/6msb5nuw7nbc1.png\" />",
"date_published": "2024-01-10T16:55:29+00:00",
"authors": [
{
"name": "GPT-Store",
"url": "https://www.reddit.com/user/GPT-Store"
}
]
},
{
"id": "192xmsm",
"url": "/r/ChatGPTPro/comments/192xmsm/your_gpt_can_now_learn_from_your_chats/",
"external_url": "https://i.redd.it/jsqzlin81jbc1.jpeg",
"title": "Your GPT can now learn from your chats!",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/192xmsm/your_gpt_can_now_learn_from_your_chats/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/192xmsm/your_gpt_can_now_learn_from_your_chats/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/jsqzlin81jbc1.jpeg\" />",
"date_published": "2024-01-10T02:50:32+00:00",
"authors": [
{
"name": "IversusAI",
"url": "https://www.reddit.com/user/IversusAI"
}
]
},
{
"id": "18yj2es",
"url": "/r/ChatGPTPro/comments/18yj2es/quick_disclaimer/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/18yj2es/quick_disclaimer/",
"title": "Quick disclaimer",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/18yj2es/quick_disclaimer/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/18yj2es/quick_disclaimer/'>Reddit</a></caption><div><br></div><p>Any posts that are just people complaining about GPT's output quality and making a whole 30 paragraph rant about unsubscribing to GPT Plus and why they dont deserve your 20 dollars a month will be removed without a second thought.</p>\n<p>The ONLY exception is if you provide something important and relevant like potential solutions to the new issue of GPT-4 being \"lazy\".</p>\n<p>Look, I get it, the quality has gone down badly. But damn, coming to a subreddit that discusses professional usage of Chat GPT and starting a spiel on why GPT 4 doesnt deserve your twenty bucks is not only <strong>un</strong>helpful, but just contributes to the ever-increasing pile of low quality posts in the subreddit, which just gives the moderators more work. </p>\n<blockquote>\n<p>!Sorry, for the very unprofessional rant but god, it's annoying for everyone. Not just the mods, but the users!<</p>\n</blockquote>",
"date_published": "2024-01-04T17:47:29+00:00",
"authors": [
{
"name": "Redditoridunn0",
"url": "https://www.reddit.com/user/Redditoridunn0"
}
]
},
{
"id": "18xxyr8",
"url": "/r/ChatGPTPro/comments/18xxyr8/26_principles_to_improve_the_quality_of_llm/",
"external_url": "https://i.redd.it/2vwwnoyaabac1.png",
"title": "26 principles to improve the quality of LLM responses by 50%",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/18xxyr8/26_principles_to_improve_the_quality_of_llm/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/18xxyr8/26_principles_to_improve_the_quality_of_llm/'>Reddit</a></caption><div><br></div><p>. \nhttps://arxiv.org/abs/2312.16171v1</p>\n<p>A new paper just identified 26 principles to improve the quality of LLM responses by 50%.</p>\n<p>The tests were done across LLaMA-1/2 (7B, 13B and 70B) and GPT-3.5/4.</p>\n<p>Here are some surprising prompts:\n- Add \u201cI\u2019m going to tip $for a better solution\n- Incorporate the following phrases: \u201cYou will be penalized\u201d\n- Repeat a specific word or phrase multiple times within a prompt.</p><div><br></div><img src=\"https://i.redd.it/2vwwnoyaabac1.png\" />",
"date_published": "2024-01-03T23:42:33+00:00",
"authors": [
{
"name": "LittleHariSeldon",
"url": "https://www.reddit.com/user/LittleHariSeldon"
}
]
},
{
"id": "18w914t",
"url": "/r/ChatGPTPro/comments/18w914t/personal_crm_with_google_sheets_customgpt_tutorial/",
"external_url": "https://v.redd.it/iykms3kyow9c1",
"title": "Personal CRM with Google Sheets + CustomGPT (Tutorial)",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/18w914t/personal_crm_with_google_sheets_customgpt_tutorial/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/18w914t/personal_crm_with_google_sheets_customgpt_tutorial/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-01-01T22:42:41+00:00",
"authors": [
{
"name": "thedelusionist",
"url": "https://www.reddit.com/user/thedelusionist"
}
]
},
{
"id": "18vio4s",
"url": "/r/ChatGPTPro/comments/18vio4s/chatgpt_diagnosed_a_boy_after_17_doctors_over_3/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/18vio4s/chatgpt_diagnosed_a_boy_after_17_doctors_over_3/",
"title": "ChatGPT diagnosed a boy after 17 doctors over 3 years couldn\u2019t",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/18vio4s/chatgpt_diagnosed_a_boy_after_17_doctors_over_3/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/18vio4s/chatgpt_diagnosed_a_boy_after_17_doctors_over_3/'>Reddit</a></caption><div><br></div><p>https://preview.redd.it/ebmnf5dfhp9c1.png?width=548&format=png&auto=webp&s=424d7809e217a965cb2e2505b2174ae3d83da30a</p>\n<p>I found <a href=\"https://www.today.com/health/mom-chatgpt-diagnosis-pain-rcna101843\">this story</a>, and thought this subreddit might find it as interesting as I did.</p>\n<p>One day Courtney had decided to purchase a bounce house for her two young children. Little did she know at the time, that this would be the start to three grueling years of unexplainable pain for her 4-year old son, Alex.</p>\n<p>Alex had started feeling excruciating pain, and soon their nanny had begun administering Motrin (Advil, Ibuprofen, etc\u2026) daily to alleviate the intense agony and ease \u201cgigantic meltdowns\u201d. According to the mom, as long as he had some Motrin he would be fine. Courtney, obviously, grew increasingly concerned and decided it was time to get some professional help.</p>\n<p>It was at this time that Alex began vigorously chewing anything and everything, so Courtney brought him to a dentist to hopefully get some answers. It was possible that the boy's molars were coming in, but after ruling that out, they thought that cavities might be the culprit. Ruling those out, the dentist figured that he might be grinding his teeth and referred the family to an orthodontist who specialized in airway obstructions.</p>\n<p>If there was an airway obstruction while Alex was sleeping it could explain the moodiness and exhaustion throughout the day. At least that\u2019s what the dentist thought. After a trip to the orthodontist they confirmed that Alex\u2019s palette was too small for his mouth and his teeth. This was great news at the time as they had discovered what the issue was. Place an expander in and all would be good. Home stretch, right?</p>\n<p>Things started looking up for a bit, but then Courtney noticed that the boy wasn\u2019t growing anymore. After a concerned trip to their pediatrician, they discovered that his left and right side were imbalanced. Another referral later, and Alex is now going to physical therapy.</p>\n<p>Right before starting PT, Alex began experiencing excruciating headaches. One visit to a neurologist later and he\u2019s diagnosed with migraines. Unfortunate, but migraines happen. The issue was that they kept getting worse. The exhaustion and moodiness started to come back. He was then taken to another doctor to see if his sinus cavities have been blocked.</p>\n<p>After running around to numerous different doctors, Courtney stated that, \u201cThe specialist could only address their individual areas of expertise,\u201d adding, \u201cNobody will even give you a clue to what the diagnosis could be.\u201d</p>\n<p>A new physical therapist thought that Alex could have Chiari malformation, which is a congenital condition that causes abnormalities in the brain where the skull meets the spine.</p>\n<p>More doctors, a new pediatrician, internal medicine, musculoskeletal, and still no answers. In total, Courtney brought Alex to 17 doctors and they were nowhere closer to finding a diagnosis for all of the boy\u2019s symptoms.</p>\n<p>This was around the time that ChatGPT really came into the public view, and a frustrated Courtney decided to make an account. She started filling out all of Alex\u2019s symptoms and began to input all of his medical information. Line by line, she included everything from his MRI notes, and even noted that he wouldn\u2019t sit criss-cross apple sauce.</p>\n<p>ChatGPT\u2019s response included something called tethered cord syndrome. After joining a Facebook group for families and children with it, it all started to look really similar. All of their stories sounded like what Alex was going through. With this breakthrough, Courtney scheduled an appointment with a new Neurosurgeon. After a look at the boy\u2019s MRI and hearing what Courtney had to say, the doctor immediately knew what was going on.</p>\n<p>Tethered cord syndrome occurs when the tissue in the spinal cord forms attachments that limit movement of the spinal cord, causing it to stretch abnormally. The condition is very closely associated with something called spina bifida, which is a birth defect where part of the spinal cord doesn\u2019t develop fully and some of the spinal cord and nerves are exposed.</p>\n<p>In many children with spina bifida it is common to catch very early due to their being a visible opening in the child's back. Alex had a type that was closed and \u201chidden.\u201d</p>\n<p>After 3 long grueling years and 17 doctors, Courtney finally found a diagnosis for her son. Alex underwent surgery to fix his tethered cord syndrome.</p>\n<p>It\u2019s incredible what ChatGPT was able to do, but most importantly how adamant Courtney was at being an advocate for her child and never giving up on her search to find a diagnosis.</p>\n<p><em>*Prompts and data are obviously hidden due to containing sensitive medical information</em></p>\n<p>If you enjoyed this story and want more about AI developments and how it affects the world around us, I\u2019d recommend checking <a href=\"https://www.gmweekend.com/\">this newsletter</a> out (not just since it\u2019s mine). </p>",
"date_published": "2023-12-31T22:23:47+00:00",
"authors": [
{
"name": "gmweekend",
"url": "https://www.reddit.com/user/gmweekend"
}
]
},
{
"id": "18totv4",
"url": "/r/ChatGPTPro/comments/18totv4/a_very_much_needed_mod_update_by_yours_truly/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/18totv4/a_very_much_needed_mod_update_by_yours_truly/",
"title": "A very much needed Mod update by yours truly.",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/18totv4/a_very_much_needed_mod_update_by_yours_truly/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/18totv4/a_very_much_needed_mod_update_by_yours_truly/'>Reddit</a></caption><div><br></div><p>First of all, I'd like to preface this message by saying: Yes, I am aware that there has been a huge drop in the quality of posts these days and on behalf of the mod team (or lack thereof) I apologise for this. We have had issues recently wherein all of the mods' accounts got suspended or banned for unknown reasons. Because of this, there were no moderators to run the subreddit. Only my account didnt get suspended but I was inactive (for personal reasons) and lost most of my permissions. </p>\n<p>​</p>\n<p>However, after a (very long and gruelling) chat with the Reddit Admins, I have mod permissions again. So hooray, I guess.</p>\n<p>​</p>\n<p>Next, speaking of low quality posts these days, let's set some rules. The following posts will be removed IMMEDIATELY:</p>\n<p>​</p>\n<ol>\n<li>Posts that link news articles, or promote news articles or newsletters.</li>\n</ol>\n<p>​</p>\n<ol>\n<li>Posts that complain about GPT-4's output quality, this subreddit is for the discussion of professional usage of GPT, **NOT** complaining because the bot didnt give you exactly what you wanted.</li>\n</ol>\n<p>​</p>\n<ol>\n<li>Posts that are very obviously generated by ChatGPT. </li>\n</ol>\n<p>​</p>\n<ol>\n<li>The exact same posts about prompt engineering that keep popping up, as if we didnt have enough of those already</li>\n</ol>\n<p>​</p>\n<ol>\n<li>**Any sort of promotional material. Zilch, Zip, NADA**</li>\n</ol>\n<p>​</p>\n<ol>\n<li>Questions like: How do I voice chat with ChatGPT, What should I do if ChatGPT ____, Why isnt ChatGPT doing ___. </li>\n</ol>\n<p>​</p>\n<ol>\n<li>Crossposts. </li>\n</ol>\n<p>​</p>\n<p>If you disagree with the removal of your post, just reach out in the modmail. And if you *do* reach out in the modmail, don't straight up start cussing and complaining about the removal (This has happened too many times).</p>\n<p>​</p>\n<p>Now that we've gotten that out of the way, now the issue of moderation.</p>\n<p>​</p>\n<p>***As you can see, it's painfully obvious that the subreddit has grown exponentially while the number of moderators have dropped to literally one. Thus, I am now opening mod applications :D.***</p>\n<p>​</p>\n<p>If you do want to apply, DM me u/Redditoridunn0. </p>\n<p>​</p>\n<p>The subreddit is still growing quickly and there are *many* posts being put up in the subreddit that are either straight up dogcrap or spam. In order to be able to keep up with this and upkeep the high standards of this subreddit, I will see to it that we do get a good number of mods going in here. </p>\n<p>​</p>\n<p>Once again, I am *very* sorry about the huge quality drop and lack of moderation in this subreddit. If I typed something stupid in this spiel then forgive me, I have a headache and I thought typing this out while having a headache was a good idea (it very much was NOT).</p>\n<p>​</p>\n<p>TLDR: Mod applications are a thing now, DM me if interested. Oh and bad posts go bye-bye.</p>",
"date_published": "2023-12-29T14:51:43+00:00",
"authors": [
{
"name": "Redditoridunn0",
"url": "https://www.reddit.com/user/Redditoridunn0"
}
]
},
{
"id": "18optgi",
"url": "/r/ChatGPTPro/comments/18optgi/ask_chatgpt_to_create_a_sequence_diagram/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/18optgi/ask_chatgpt_to_create_a_sequence_diagram/",
"title": "Ask ChatGPT to create a sequence diagram",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/18optgi/ask_chatgpt_to_create_a_sequence_diagram/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/18optgi/ask_chatgpt_to_create_a_sequence_diagram/'>Reddit</a></caption><div><br></div><p>I've found sequence diagrams helpful over the years. From a non-technical perspective, they can be helpful when asking a designer to create UX or infographic. ChatGPT does a great job at them.</p>\n<p>Prompt:</p>\n<pre><code>create notation for sequencediagram.org without using aliases \nthat describes the steps to <insert common process name and \nbasic description>\n</code></pre>\n<p>Response from ChatGPT:</p>\n<pre><code>title Reddit Interaction Sequence\n\nparticipant User\nparticipant Account Creation Service\nparticipant Subreddit Selection Service\nparticipant Post Submission Service\nparticipant Vote Checking Service\n\nUser->Account Creation Service: Request Account Creation\nAccount Creation Service->User: Display Account Creation Form\nUser->Account Creation Service: Submit Account Creation Form\nAccount Creation Service->User: Confirm Account Creation\n\nUser->Subreddit Selection Service: Access Subreddit Selection\nSubreddit Selection Service->User: Display List of Subreddits\nUser->Subreddit Selection Service: Select a Subreddit\n\nUser->Post Submission Service: Access Post Submission Form\nPost Submission Service->User: Display Post Submission Form\nUser->Post Submission Service: Submit Post\nPost Submission Service->User: Confirm Post Submission\n\nNote over User: Wait for some time\n\nUser->Vote Checking Service: Check Post for Votes\nVote Checking Service->User: Display Upvotes/Downvotes\n</code></pre>\n<p>Copy and paste into <a href=\"https://sequencediagram.org\">sequencediagram.org</a></p>\n<p>​</p>\n<p>https://preview.redd.it/aosmd1072x7c1.png?width=1566&format=png&auto=webp&s=4a4dd757769a28e75e26a1e662ff8c604f249838</p>\n<p>Handy, right?</p>\n<p>​</p>",
"date_published": "2023-12-22T21:47:38+00:00",
"authors": [
{
"name": "PhotographMain3424",
"url": "https://www.reddit.com/user/PhotographMain3424"
}
]
},
{
"id": "18mu6zo",
"url": "/r/ChatGPTPro/comments/18mu6zo/open_ai_releases_guidelines_for_prompting_chat_gpt/",
"external_url": "https://i.redd.it/1mtcifpa8g7c1.png",
"title": "Open AI Releases Guidelines for Prompting Chat GPT",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/18mu6zo/open_ai_releases_guidelines_for_prompting_chat_gpt/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/18mu6zo/open_ai_releases_guidelines_for_prompting_chat_gpt/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/1mtcifpa8g7c1.png\" />",
"date_published": "2023-12-20T13:08:02+00:00",
"authors": [
{
"name": "Growth_Hacker_Pro",
"url": "https://www.reddit.com/user/Growth_Hacker_Pro"
}
]
},
{
"id": "18loqvx",
"url": "/r/ChatGPTPro/comments/18loqvx/github_copilot_is_better_than_chatgpt/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/18loqvx/github_copilot_is_better_than_chatgpt/",
"title": "GitHub Copilot is better than ChatGPT",
"content_html": "<caption>Open: <a href='winstonapp:///r/ChatGPTPro/comments/18loqvx/github_copilot_is_better_than_chatgpt/'>Winston</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/18loqvx/github_copilot_is_better_than_chatgpt/'>Reddit</a></caption><div><br></div><p>As a frontend developer and a ChatGPT power user, I've been using ChatGPT since its launch in December 2022 and have been a subscriber to the Plus model from the very beginning. During this time, I also experimented with GitHub Copilot in VSCode, but initially found it less satisfying because of GPT-3 (or 3.5 don\u2018t bash me), which seemed like a step down in all aspects.</p>\n<p>However, things have changed significantly recently. Copilot has been upgraded to GPT-4, introducing a ChatGPT-like interface that allows for more interactive coding. By initiating prompts with \"@workspace [prompt...]\", Copilot can now access the entire context of your project.</p>\n<p>This feature enables you to give commands like \"apply this logic in this or that file\u201c and it seamlessly executes them, searching through all references in the project. No more copying and pasting large code blocks into ChatGPT, streamlining the development process considerably.</p>\n<p>Also the way how you can hover over errors in your code and apply quick fixes for them. Such a time saver.</p>\n<p>I've been extremely pleased with these updates. They've transformed my coding experience, making it way more efficient and enjoyable. I'll probably cancel my GPT-4 subscription since the capabilities of Copilot are insane now!</p>\n<p>If you want to see it in action watch <a href=\"https://youtu.be/2qwiNmBNqQQ?si=3CP48p7z4APFL0y2\">Theo\u2018s recent video</a>.</p>\n<p>Edit: It seems like the subscription page for Copilot still says GPT 3.5, you need to join the public beta and manually update VSCode + Copilot for the new features and GPT-4 access. <a href=\"https://github.blog/changelog/2023-11-30-github-copilot-november-30th-update/\">Reference source</a></p>",
"date_published": "2023-12-19T00:50:11+00:00",
"authors": [
{
"name": "chen19921337",
"url": "https://www.reddit.com/user/chen19921337"
}
]
},
{
"id": "18hsgm6",
"url": "/r/ChatGPTPro/comments/18hsgm6/more_absolutely_neutered_features_legal_text/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/18hsgm6/more_absolutely_neutered_features_legal_text/",
"title": "More absolutely neutered features: Legal Text Generation",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/18hsgm6/more_absolutely_neutered_features_legal_text/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/18hsgm6/more_absolutely_neutered_features_legal_text/'>Reddit</a></caption><div><br></div><h2>Background</h2>\n<p>I run a startup, which means I'm working through dozens of contracts and agreements each month. As recently as October, I would upload or paste a document, say what needs to change, then ask GPT to export section by section, and eventually entire Word docs using extensions. </p>\n<h3>December's neutering</h3>\n<p>I have been pounding my head against the wall with ChatGPT this month. It required a half-dozen responses just to confirm that I <em>will</em> have a lawyer look at the draft, and even then ChatGPT refuses to output anything but an outline, or abbreviated paragraphs that summarize the idea. </p>\n<p>The whole point is that this is a language model -- it's built to create natural language based on an input. The guard rails are making that impossible. </p>\n<h3>What's next?</h3>\n<p>All that said, does anyone have any suggestions on better legal language drafting LLMs?</p>",
"date_published": "2023-12-13T22:01:40+00:00",
"authors": [
{
"name": "DeJeR",
"url": "https://www.reddit.com/user/DeJeR"
}
]
},
{
"id": "18bkvpm",
"url": "/r/ChatGPTPro/comments/18bkvpm/mods_can_we_please_ban_performance_complaint/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/18bkvpm/mods_can_we_please_ban_performance_complaint/",
"title": "Mods, can we please ban performance complaint posts and get this sub back to what it is supposed to be about: discussing professional applications of ChatGPT?",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/18bkvpm/mods_can_we_please_ban_performance_complaint/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/18bkvpm/mods_can_we_please_ban_performance_complaint/'>Reddit</a></caption><div><br></div><p>It's getting really tiresome. Go complain in r/ChatGPT. That is not what this sub is supposed to be about. </p>",
"date_published": "2023-12-05T20:03:57+00:00",
"authors": [
{
"name": "ShadowDV",
"url": "https://www.reddit.com/user/ShadowDV"
}
]
},
{
"id": "18bb95s",
"url": "/r/ChatGPTPro/comments/18bb95s/gpt4_used_to_be_really_helpful_for_coding_issues/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/18bb95s/gpt4_used_to_be_really_helpful_for_coding_issues/",
"title": "GPT-4 used to be really helpful for coding issues",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/18bb95s/gpt4_used_to_be_really_helpful_for_coding_issues/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/18bb95s/gpt4_used_to_be_really_helpful_for_coding_issues/'>Reddit</a></caption><div><br></div><p>It really sucks now. What has happened? This is not just a feeling, it really sucks on a daily basis. Making simple misstakes when coding, not spotting errors etc. The quality has dropped drastically. The feeling I get from the quality is the same as GPT 3.5. The reason I switched to pro was beacuse I thought GPT 3.5 was really stupid when the issues you were working on was a bit more complex. Well the Pro version is starting to become as useless as that now.</p>\n<p>Really sad to see, Im starting to consider dropping of the Pro version if this is the new standard. I have had it since february and have loved working together with GPT-4 on all kinds of issues.</p>",
"date_published": "2023-12-05T12:48:57+00:00",
"authors": [
{
"name": "AkbarianTar",
"url": "https://www.reddit.com/user/AkbarianTar"
}
]
},
{
"id": "18aor9g",
"url": "/r/ChatGPTPro/comments/18aor9g/ace_your_next_job_interview_with_chatgpt_voice/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/18aor9g/ace_your_next_job_interview_with_chatgpt_voice/",
"title": "Ace your next job interview with ChatGPT Voice",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/18aor9g/ace_your_next_job_interview_with_chatgpt_voice/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/18aor9g/ace_your_next_job_interview_with_chatgpt_voice/'>Reddit</a></caption><div><br></div><p>ChatGPT voice is an awesome free feature by ChatGPT that brought a lot of new use cases. And my favorite one is using it for job interviews.</p>\n<p>If you are out of the loop, ChatGPT has an Android & iPhone app that since recently has <a href=\"https://openai.com/blog/chatgpt-can-now-see-hear-and-speak\">ChatGPT voice</a>. This is not just simple voice commands, you can actually talk to ChatGPT with a very realistic voice. And it's 100% free. </p>\n<p>To turn ChatGPT into a recruiter that will conduct the interview, we first have to explain the setting. You don't have to start with a voice conversation, you can also prompt via text and then start the voice conversation. </p>\n<p><strong>Prompt ChatGPT</strong></p>\n<p>Use the following prompt to turn ChatGPT into a recruiter and have a good understanding of the company and role you are applying for:</p>\n<p>\"Act like you are a recruiter at [company], hiring for a [job role]. We will have a fictional interview for this role. Don't start the interview till I say I'm ready. Once I'm ready, please start by introducing yourself and the company. Then, proceed to ask me a series of typical interview questions for this position. After the interview is complete, provide comprehensive feedback on my overall performance. Highlight areas where I did well, and offer suggestions on how I can improve my answers and presentation skills for a more effective performance in real interviews. Here is the complete job vacancy:<br />\n[full vacancy]<br />\nPlease confirm if you understand your assignment\" </p>\n<p>Don't forget to change the placeholders and to copy and paste the full vacancy at the end of the prompt. It's a quick and lazy way to let ChatGPT have a good understanding of what is required in the role and have a more accurate interview.</p>\n<p><strong>Start the voice conversation</strong></p>\n<p>To start the conversation, click on the headphones icons at the bottom right corner and say 'I'm ready to start the interview'. The interview will then begin.</p>\n<p>ChatGPT will ask you a bunch of questions before concluding interview and will provide you comprehensive feedback afterwards. If you prefer, you can also modify the prompt to get feedback after every question, I'll leave that prompt in the comments to not clutter this post too much. </p>\n<p>You can always start over or ask ChatGPT to start concluding the interview if they ask too many questions or if it's becoming to get repetitive. </p>\n<p>Let me know this was for you and if it was helpful! </p>\n<p>Want to learn more about ChatGPT & AI? Then maybe I can tempt you to sign up for my <a href=\"https://www.workwiz.ai/\">AI newsletter</a>. Once a week I share how you can work smarter with ChatGPT & AI, in a quick and digestible format.</p>",
"date_published": "2023-12-04T17:07:26+00:00",
"authors": [
{
"name": "bigwhitebird",
"url": "https://www.reddit.com/user/bigwhitebird"
}
]
},
{
"id": "186tdbo",
"url": "/r/ChatGPTPro/comments/186tdbo/3_chatgpt_prompting_techniques_frameworks_for/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/186tdbo/3_chatgpt_prompting_techniques_frameworks_for/",
"title": "3 ChatGPT prompting techniques & frameworks for consistently good results",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/186tdbo/3_chatgpt_prompting_techniques_frameworks_for/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/186tdbo/3_chatgpt_prompting_techniques_frameworks_for/'>Reddit</a></caption><div><br></div><p>Hey! I've spent way too much time on ChatGPT the last year and one of my biggest problems was consistency. Sometimes the answers and writing is absolute gold, and the next second it's sh*t. </p>\n<p>Luckily I've documented most of my learnings when things go well and when it goes bad, and that concluded some learnings. I'm not saying this will fix all of your issues, but for me this has led to way better results and consistency, saving me a lot of time and headaches. </p>\n<p>​</p>\n<p><strong>1. The RTFC Framework:</strong></p>\n<p>R - Role</p>\n<p>T - Task</p>\n<p>F - Format</p>\n<p>C - Constraints </p>\n<p>The role task format is a pretty classic framework for prompting, but what makes all the difference is constraints. It's hard to say everything it should do, but it's easier to say things it should absolutely not do. For example:</p>\n<p>Act like you are a world-class copywriter with 30 years of experience in copywriting. Write me a cold-email to SaaS CEOs for my experts in plain text between 200 and 300 words.</p>\n<p><strong>Contraints:</strong> </p>\n<p>- Write simple, but not simplistic. The language should be written at a 5th-grade reading level</p>\n<p>- Write with authority </p>\n<p>- Avoid buzzwords and jargon and instead speak plainly.</p>\n<p>- Avoid being salesy or overly enthusiastic and instead express calm confidence. </p>\n<p>​</p>\n<p><strong>2. Bring examples</strong></p>\n<p>One of the best things you can do to get good output is to show examples of what you want. The more the better. </p>\n<p>If you show up at the barber it's also easier to show a photo of the haircut that you want than to describe it. For example:</p>\n<p>Write me a cold-email to SaaS CEOs for my experts in plain text between 200 and 300 words. Make it look like this:</p>\n<p>Example 1:</p>\n<p>Example 2:</p>\n<p>And avoid this:<br />\nExample 3:</p>\n<p>Telling ChatGPT what you don't want is also very effective when you showcase examples. You want to refine its playing field, leading more likely to your ideal outcome. </p>\n<p>​</p>\n<p><strong>3. Ask it to take it step-by-step</strong></p>\n<p>One of my odd findings was that if you ask ChatGPT to slow down and not rush its job, you get a better outcome. </p>\n<p>Also ask ChatGPT to ask you follow-up questions if it would like more information to understand you, or do its job better. 9/10 ChatGPT will ask you questions that eventually lead to a much better outcome.</p>\n<p><strong>Other tips/observations:</strong></p>\n<ul>\n<li>When your chat becomes too big it's better to start over instead of trying to get the answers you want. There is a higher chance of hallucination and it will take more effort to finetune it. </li>\n<li>You can ask for a summary of the Chat so you don't have to completely start over, but that at least ChatGPT has a fresh start with context. </li>\n<li>In general GPT-4 is smarter but Claude is way better at writing. It writes naturally and engaging. It's hard to make ChatGPT write naturally and engaging, but the insights are mostly on point. So what I usually do is create something first in ChatGPT and then rewrite it in Claude. </li>\n<li>Reasoning ChatGPT > Claude</li>\n<li>Writing Claude > ChatGPT</li>\n</ul>\n<p>Hope you found this useful! Maybe I can tempt you with my <a href=\"https://workwiz.ai\">AI newsletter.</a> I share the latest use cases, tools, and tips and tricks to work smarter with AI. </p>\n<p>If you have questions then I would love to hear them! Happy to help out. </p>\n<p>​</p>",
"date_published": "2023-11-29T16:24:02+00:00",
"authors": [
{
"name": "bigwhitebird",
"url": "https://www.reddit.com/user/bigwhitebird"
}
]
},
{
"id": "185tyl7",
"url": "/r/ChatGPTPro/comments/185tyl7/the_new_model_is_driving_me_insane/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/185tyl7/the_new_model_is_driving_me_insane/",
"title": "The new model is driving me insane.",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/185tyl7/the_new_model_is_driving_me_insane/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/185tyl7/the_new_model_is_driving_me_insane/'>Reddit</a></caption><div><br></div><p>It just explains code you wrote rather than giving suggestions..</p>",
"date_published": "2023-11-28T11:31:45+00:00",
"authors": [
{
"name": "alexcanton",
"url": "https://www.reddit.com/user/alexcanton"
}
]
},
{
"id": "184yw79",
"url": "/r/ChatGPTPro/comments/184yw79/need_feedback_resume_gpt_with_download_capability/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/184yw79/need_feedback_resume_gpt_with_download_capability/",
"title": "[Need Feedback]: Resume GPT with Download Capability",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/184yw79/need_feedback_resume_gpt_with_download_capability/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/184yw79/need_feedback_resume_gpt_with_download_capability/'>Reddit</a></caption><div><br></div><p>TL;DR: Change jobs more frequently to increase your earnings. This GPT automates the resume creation/updating process for an optimized acceptance rate.</p>\n<p><strong>The Idea</strong></p>\n<p>I frequently change jobs due to statistically proven benefits.</p>\n<blockquote>\n<p>\u201cAnother one in five of those surveyed saw <strong>pay increases between 10 and 20 percent</strong> when switching companies.\u201d </p>\n<p>[Source 1]</p>\n</blockquote>\n<p>Every time, I've noticed a recurring theme: the daunting task of updating resumes for multiple job applications. This challenge led me down an interesting path of experimentation, and now, I'm thrilled to announce the public release of my resume creation GPT (alpha). </p>\n<p><strong>GPT:</strong> <a href=\"https://chat.openai.com/g/g-mOVLb8GqB-custom-resume\"><strong>https://chat.openai.com/g/g-mOVLb8GqB-custom-resume</strong></a></p>\n<p>​</p>\n<p><strong>How does it work?</strong></p>\n<p>The process is straightforward and user-friendly. You have two options: start from scratch by having a conversation with the GPT, which guides you through creating a new resume, or upload an existing one for updating in relation to a new job offer. As you interact with the GPT, it tailors your resume accordingly. At the end of the process, you'll receive a secure download link with a password, allowing you to safely download your updated resume.</p>\n<p><strong>Privacy and Data Security</strong> </p>\n<p>Your privacy is a top priority. I do not have access to any of your data. All information is encrypted and stored solely for the purpose of enabling you to download your resume. This data expires and is permanently deleted after three months, in line with my stringent privacy policy, which can be found at<a href=\"https://jobdraft.ai/privacy-policy\"> https://jobdraft.ai/privacy-policy</a></p>\n<p><strong>(Problem) - Seeking Feedback</strong> </p>\n<p>Due to the privacy policy, I cannot access any resume generation data, except for my own tests. This limits my ability to assess the effectiveness of the GPT tool. Therefore, I would greatly appreciate if you could share your experiences, resumes, or other feedback with me directly. Your input is invaluable for improving this tool and validating its utility. </p>\n<p>​</p>\n<p><em>Sources:</em> </p>\n<p><em>1-</em> <a href=\"https://ivyexec.com/career-advice/2023/does-job-hopping-really-earn-you-a-higher-salary\"><em>https://ivyexec.com/career-advice/2023/does-job-hopping-really-earn-you-a-higher-salary</em></a> </p>",
"date_published": "2023-11-27T09:16:01+00:00",
"authors": [
{
"name": "theuser126",
"url": "https://www.reddit.com/user/theuser126"
}
]
},
{
"id": "181s0rn",
"url": "/r/ChatGPTPro/comments/181s0rn/openai_researchers_warned_board_of_ai/",
"external_url": "https://www.cnbc.com/amp/2023/11/22/sam-altmans-ouster-at-openai-precipitated-by-letter-to-board-about-ai-breakthrough-sources-tell-reuters.html",
"title": "OpenAI researchers warned board of AI breakthrough ahead of CEO ouster",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/181s0rn/openai_researchers_warned_board_of_ai/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/181s0rn/openai_researchers_warned_board_of_ai/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-11-23T03:39:38+00:00",
"authors": [
{
"name": "ShadowDV",
"url": "https://www.reddit.com/user/ShadowDV"
}
]
},
{
"id": "1812pq5",
"url": "/r/ChatGPTPro/comments/1812pq5/sam_altman_will_return_as_ceo_of_openai_with_a/",
"external_url": "https://twitter.com/openai/status/1727206187077370115?s=46&t=HUarsCF30BFrz3xURMUMPQ",
"title": "Sam Altman will return as CEO of OpenAI with a new board in place",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/1812pq5/sam_altman_will_return_as_ceo_of_openai_with_a/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1812pq5/sam_altman_will_return_as_ceo_of_openai_with_a/'>Reddit</a></caption><div><br></div><div><br></div><blockquote class=\"twitter-tweet\" align=\"center\"><p lang=\"en\" dir=\"ltr\">We have reached an agreement in principle for Sam Altman to return to OpenAI as CEO with a new initial board of Bret Taylor (Chair), Larry Summers, and Adam D'Angelo.<br><br>We are collaborating to figure out the details. Thank you so much for your patience through this.</p>— OpenAI (@OpenAI) <a href=\"https://twitter.com/OpenAI/status/1727206187077370115?ref_src=twsrc%5Etfw\">November 22, 2023</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n",
"date_published": "2023-11-22T06:27:16+00:00",
"authors": [
{
"name": "renoirm",
"url": "https://www.reddit.com/user/renoirm"
}
]
},
{
"id": "180t8bz",
"url": "/r/ChatGPTPro/comments/180t8bz/has_it_happened_are_the_servers_down/",
"external_url": "https://www.reddit.com/gallery/180t8bz",
"title": "Has it happened? Are the servers down?",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/180t8bz/has_it_happened_are_the_servers_down/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/180t8bz/has_it_happened_are_the_servers_down/'>Reddit</a></caption><div><br></div><p>The app isn\u2019t working for me at all. It\u2019s unable to confirm my credentials. I have open and close the app a few times and have had the same results.</p>\n<p>Any of my conversations that I have had a couple hours ago as well don\u2019t exist anymore.</p>\n<p>Is anyone else experiencing anything the same?</p>",
"date_published": "2023-11-21T22:17:59+00:00",
"authors": [
{
"name": "iamjacksonmolloy",
"url": "https://www.reddit.com/user/iamjacksonmolloy"
}
]
},
{
"id": "17zjxh7",
"url": "/r/ChatGPTPro/comments/17zjxh7/microsoft_hires_them_both/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/17zjxh7/microsoft_hires_them_both/",
"title": "Microsoft hires them both",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/17zjxh7/microsoft_hires_them_both/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17zjxh7/microsoft_hires_them_both/'>Reddit</a></caption><div><br></div><p><a href=\"https://www.theverge.com/2023/11/20/23968829/microsoft-hires-sam-altman-greg-brockman-employees-openai\">https://www.theverge.com/2023/11/20/23968829/microsoft-hires-sam-altman-greg-brockman-employees-openai</a> </p>\n<p>EDIT: UPDATE: Almost 500 OpenAI employees, including Chief Scientist Ilya Sutskever, are threatening to leave for Microsoft with Sam Altman unless the board resigns and reinstates the former CEO. This follows allegations of Sutskever orchestrating Altman\u2019s removal.</p>\n<p>​</p>\n<p>Source: <a href=\"https://www.wired.com/story/openai-staff-walk-protest-sam-altman/\">https://www.wired.com/story/openai-staff-walk-protest-sam-altman/</a></p>\n<p>​</p>\n<p>The letter reads:</p>\n<p>​</p>\n<blockquote>\n<p>\"To the Board of Directors at OpenAI, </p>\n<p>OpenAI is the world\u2019s leading AI company. We, the employees of OpenAI, have developed the best models and pushed the field to new frontiers. Our work on AI safety and governance shapes global norms. The products we built are used by millions of people around the world. Until now, the company we work for and cherish has never been in a stronger position. </p>\n<p>The process through which you terminated Sam Altman and removed Greg Brockman from the board has jeopardized all of this work and undermined our mission and company. Your conduct has made it clear you did not have the competence to oversee OpenAI. </p>\n<p>When we all unexpectedly learned of your decision, the leadership team of OpenAI acted swiftly to stabilize the company. They carefully listened to your concerns and tried to cooperate with you on all grounds. Despite many requests for specific facts for your allegations, you have never provided any written evidence. They also increasingly realized you were not capable of carrying out your duties, and were negotiating in bad faith. </p>\n<p>The leadership team suggested that the most stabilizing path forward - the one that would best serve our mission, company, stakeholders, employees and the public - would be for you to resign and put in place a qualified board that could lead the company forward in stability. </p>\n<p>Leadership worked with you around the clock to find a mutually agreeable outcome. Yet within two days of your initial decision, you again replaced interim CEO Mira Murati against the best interests of the company. You also informed the leadership team that allowing the company to be destroyed \u201cwould be consistent with the mission.\u201d </p>\n<p>Your actions have made it obvious that you are incapable of overseeing OpenAI. We are unable to work for or with people that lack competence, judgement and care for our mission and employees. We, the undersigned, may choose to resign from OpenAI and join the newly announced Microsoft subsidiary run by Sam Altman and Greg Brockman. Microsoft has assured us that there are positions for all OpenAI employees at this new subsidiary should we choose to join. We will take this step imminently, unless all current board members resign, and the board appoints two new lead independent directors, such as Bret Taylor and Will Hurd, and reinstates Sam Altman and Greg Brockman.\"</p>\n</blockquote>\n<p>​</p>",
"date_published": "2023-11-20T08:31:16+00:00",
"authors": [
{
"name": "jonb11",
"url": "https://www.reddit.com/user/jonb11"
}
]
},
{
"id": "17ytwks",
"url": "/r/ChatGPTPro/comments/17ytwks/just_figured_out_the_ultimate_hack_for_writing/",
"external_url": "https://v.redd.it/zzfcsyhh2a1c1",
"title": "Just figured out the ultimate hack for writing large amounts of text! What do you guys think?",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/17ytwks/just_figured_out_the_ultimate_hack_for_writing/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17ytwks/just_figured_out_the_ultimate_hack_for_writing/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-11-19T10:01:10+00:00",
"authors": [
{
"name": "wheelyboi2000",
"url": "https://www.reddit.com/user/wheelyboi2000"
}
]
},
{
"id": "17y6bga",
"url": "/r/ChatGPTPro/comments/17y6bga/i_made_a_huge_list_of_all_gpts_scraped_from_the/",
"external_url": "https://github.com/friuns2/Awesome-GPTs-Big-List/",
"title": "I made a HUGE list of all GPTs scraped from the internet.",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/17y6bga/i_made_a_huge_list_of_all_gpts_scraped_from_the/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17y6bga/i_made_a_huge_list_of_all_gpts_scraped_from_the/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-11-18T13:19:14+00:00",
"authors": [
{
"name": "friuns",
"url": "https://www.reddit.com/user/friuns"
}
]
},
{
"id": "17xox4l",
"url": "/r/ChatGPTPro/comments/17xox4l/openai_just_fired_sam_altman_effective_immediately/",
"external_url": "https://www.cnbc.com/2023/11/17/sam-altman-leaves-openai-mira-murati-appointed-interim-boss.html",
"title": "OpenAI Just Fired Sam Altman - Effective Immediately",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/17xox4l/openai_just_fired_sam_altman_effective_immediately/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17xox4l/openai_just_fired_sam_altman_effective_immediately/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-11-17T20:59:51+00:00",
"authors": [
{
"name": "Zinthaniel",
"url": "https://www.reddit.com/user/Zinthaniel"
}
]
},
{
"id": "17wj0lp",
"url": "/r/ChatGPTPro/comments/17wj0lp/chatgpt_is_getting_memory_soon/",
"external_url": "https://i.redd.it/suhvjfnnko0c1.png",
"title": "CHATGPT IS GETTING MEMORY (soon!)",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/17wj0lp/chatgpt_is_getting_memory_soon/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17wj0lp/chatgpt_is_getting_memory_soon/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/suhvjfnnko0c1.png\" />",
"date_published": "2023-11-16T09:42:41+00:00",
"authors": [
{
"name": "caeseriscool",
"url": "https://www.reddit.com/user/caeseriscool"
}
]
},
{
"id": "17wenfv",
"url": "/r/ChatGPTPro/comments/17wenfv/is_anyone_else_frustrated_with_the_apathy_of/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/17wenfv/is_anyone_else_frustrated_with_the_apathy_of/",
"title": "Is anyone else frustrated with the apathy of their peers towards ChatGPT (and Plus)?",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/17wenfv/is_anyone_else_frustrated_with_the_apathy_of/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17wenfv/is_anyone_else_frustrated_with_the_apathy_of/'>Reddit</a></caption><div><br></div><p>Bit of a rant here to what I hope is a sympathetic audience\u2026</p>\n<p>I work for a tech-forward hardware product development team. We\u2019re all enthusiastic and personally invested in applying cutting edge tech to new product designs. We\u2019re no stranger to implementing automation and software services in our jobs. So why am I the only one who seems to care about ChatGPT?</p>\n<p>I\u2019m, like, offended on ChatGPT (and all LLMs) behalf that my friends, family, and co-workers just don\u2019t seem to grasp the importance of this breakthrough tool. I feel like they treat it like the latest social networking app and they\u2019ll get around to looking at it eventually, once everyone else is using it. I\u2019ve found myself getting to the point of literally yelling (emphatically, not aggressively) at my friends and coworkers to please please please just start playing the free version with it to get comfortable with it. And also give me a good reason why you won\u2019t spend $20 to use the culmination of all of humanity\u2019s technological development\u2026 but you won\u2019t think twice about dropping $17 on a craft beer.</p>\n<p>I told my boss I would pay for a month of Plus subscriptions for my entire team <strong>out of my own pocket</strong> if they\u2019d just promise to try using it (prior to OpenAI halting new Plus accounts this morning). I told him \u201cTHAT\u2019s how enthusiastic I am about them learning to use the tool\u201d, but it was just met with a \u201cwow, you really are excited about this, huh?\u201d</p>\n<p>I proactively asked HR if I could give a company wide presentation on the various ways practical, time saving ways that I\u2019ve been able to utilize ChatGPT with the expressly stated intention of demystifying it and getting coworkers excited to use the tool. I don\u2019t feel like it moved the needle much.</p>\n<p>Even my IT staff are somewhat luke warm on the topic.</p>\n<p>Like, what the hell is going on? Am I (and the rest of us in this sub) really that much of an outlier within the tech community that we\u2019re still considered the early adopters?</p>\n<p>I\u2019m constantly torn between feeling like I\u2019m already behind the curve for not integrating this into my daily life fast enough and feeling like I\u2019m taking crazy pills because people are treating this like some annoying homework that they\u2019ll be forced to figure out against their will someday in the future.</p>\n<p>Now that OpenAI has stopped accepting new Plus accounts, I\u2019ll admit I\u2019m experiencing a bit of schadenfreude. I tried to help them, but they didn\u2019t want to be helped and now they lost their chance. If this pause on new Plus accounts goes on for more than a couple of weeks, it\u2019s going to really widen the gap between those who are fluent with all of the Plus features, and everyone else. </p>\n<p>If we were already the early adopters, we\u2019re about to widen our lead.</p>",
"date_published": "2023-11-16T05:02:45+00:00",
"authors": [
{
"name": "MattMose",
"url": "https://www.reddit.com/user/MattMose"
}
]
},
{
"id": "17tj75z",
"url": "/r/ChatGPTPro/comments/17tj75z/are_all_of_you_really_uploading_libraries_of/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/17tj75z/are_all_of_you_really_uploading_libraries_of/",
"title": "Are all of you really uploading libraries of unique, proprietary, super-specialized data that can meaningfully differentiate your GPTs from ChatGPT4? Let me explain....",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/17tj75z/are_all_of_you_really_uploading_libraries_of/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17tj75z/are_all_of_you_really_uploading_libraries_of/'>Reddit</a></caption><div><br></div><p>I'm in the midst of making my own customized GPT, but I'm having second thoughts about even bothering. Some of my experiences have me wondering \"What's the point?\"</p>\n<p>While checking out a few of OpenAI's customized GPTs, I asked them relevant, targeted questions and then asked regular ChatGPT4 the same questions. In some cases, regular ChatGPT4 gave me superior advice than the so-called specialized engines. Regular ChatGPT4 gave me objectively better advice about getting a stain out (a real problem I have at the moment) than the \"Laundry Buddy\" GPT.</p>\n<p>Then, here's the real kicker, I asked \"Laundry Buddy\" how to become president of the United States and it gladly told me. It did qualify itself and say that it was mainly a laundry expert, but then lauded me for my lofty goals and told me the exact process, rules, laws, etc. to become the President.</p>\n<p>Hot Mods freely told me the history of Portugal at my request and didn't even qualify itself about being an image generator.</p>\n<p>DALL-E gladly told me how hand cream could help my chapped hands without qualification or hesitation.</p>\n<p>So basically if any customized GPT can answer any question, what's the point of putting a pretty package on the outside when the backend is identical? Why cut yourself off at the knees claiming to be a specialized GPT when ChatGPT4 has access to all the same knowledge?</p>\n<p>Is your uploaded data really enough to make that much of a difference?</p>\n<p>edit: spelling</p>\n<p>​</p>",
"date_published": "2023-11-12T12:25:21+00:00",
"authors": [
{
"name": "YoungandCanadian",
"url": "https://www.reddit.com/user/YoungandCanadian"
}
]
},
{
"id": "17s15sp",
"url": "/r/ChatGPTPro/comments/17s15sp/im_the_idiot_that_tried_to_shove_the_entire_us/",
"external_url": "https://imgur.com/a/Ztmy7Se",
"title": "I'm the idiot that tried to shove the entire US Tax Code (3,000 pages) down the gullet of a GPT Assistant in the Playground. Here's how much it cost.",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/17s15sp/im_the_idiot_that_tried_to_shove_the_entire_us/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17s15sp/im_the_idiot_that_tried_to_shove_the_entire_us/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.imgur.com/a/Ztmy7Se.jpg\" />",
"date_published": "2023-11-10T10:27:59+00:00",
"authors": [
{
"name": "IversusAI",
"url": "https://www.reddit.com/user/IversusAI"
}
]
},
{
"id": "17qtv6u",
"url": "/r/ChatGPTPro/comments/17qtv6u/sam_altman_says_gpts_planned_to_be_rolled_out_to/",
"external_url": "https://twitter.com/sama/status/1722315204242149788",
"title": "Sam Altman says GPTs, planned to be rolled out to all subscribers on Monday, has been delayed",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/17qtv6u/sam_altman_says_gpts_planned_to_be_rolled_out_to/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17qtv6u/sam_altman_says_gpts_planned_to_be_rolled_out_to/'>Reddit</a></caption><div><br></div><div><br></div><blockquote class=\"twitter-tweet\" align=\"center\"><p lang=\"en\" dir=\"ltr\">usage of our new features from devday is far outpacing our expectations. <br><br>we were planning to go live with GPTs for all subscribers monday but still haven\u2019t been able to. we are hoping to soon. <br><br>there will likely be service instability in the short term due to load. sorry :/</p>— Sam Altman (@sama) <a href=\"https://twitter.com/sama/status/1722315204242149788?ref_src=twsrc%5Etfw\">November 8, 2023</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n",
"date_published": "2023-11-08T19:47:22+00:00",
"authors": [
{
"name": "Chaseraph",
"url": "https://www.reddit.com/user/Chaseraph"
}
]
},
{
"id": "17pvtwh",
"url": "/r/ChatGPTPro/comments/17pvtwh/ive_developed_a_tool_to_convert_voice_notes_into/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/17pvtwh/ive_developed_a_tool_to_convert_voice_notes_into/",
"title": "I've developed a tool to convert voice notes into structured text: seeking your valuable feedback and suggestions!",
"content_html": "<caption>Open: <a href='https://redirect.jonathanlaniado.com?url=https://www.reddit.com/r/ChatGPTPro/comments/17pvtwh/ive_developed_a_tool_to_convert_voice_notes_into/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17pvtwh/ive_developed_a_tool_to_convert_voice_notes_into/'>Reddit</a></caption><div><br></div><p>Hi there \ud83d\udc4b, </p>\n<p>I'm excited to share a project I've been working on over the past few months! </p>\n<p>My primary goal is to create a service that will be beneficial for people. The app is completely free and does not require registration. Please share your thoughts on this idea, and suggest any new features you think I should implement! </p>\n<p>Exciting Features:<br />\n<strong>\u2022 Speak to Write:</strong> with this feature, you can speak your thoughts or information and the tool will transcribe it into text. The best part? You can then forward the transcribed text to any application with just one click. For example, you could set up an automatic export feature for your Notion account. </p>\n<p><strong>\u2022 Audio to Action Plan:</strong> the service can transform a received audio message into a structured list of elements or bullet points. This feature is especially useful for outlining an action plan or item list.</p>\n<p><strong>\u2022 Speak in any Language:</strong> you can dictate an audio message in your native language, and the service will translate it into any other language, maintaining high translation quality\u2014significantly better than Google Translate. </p>\n<p><strong>\u2022 Meeting Transcripts & Summaries:</strong> the service is perfect for converting recorded audio from meetings into text and generating concise summaries. It supports the upload of users' files. </p>\n<p>Thank you for taking the ti me to check it out. I look forward to hearing your feedback. You can access the service by visiting this link: <a href=\"https://audionotes.ai/\">https://audionotes.ai</a> \ud83d\ude4f</p>",
"date_published": "2023-11-07T14:44:04+00:00",
"authors": [
{
"name": "OneMoreSuperUser",
"url": "https://www.reddit.com/user/OneMoreSuperUser"
}
]
},
{
"id": "17pfmj8",
"url": "/r/ChatGPTPro/comments/17pfmj8/rolling_out/",
"external_url": "https://i.redd.it/fn815ice4tyb1.jpg",
"title": "Rolling out\ud83c\udf89",
"content_html": "<caption>Open: <a href='https://redirect.jonathanlaniado.com?url=https://www.reddit.com/r/ChatGPTPro/comments/17pfmj8/rolling_out/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17pfmj8/rolling_out/'>Reddit</a></caption><div><br></div><p>Just got access to all tools and gpts (Germany)</p><div><br></div><img src=\"https://i.redd.it/fn815ice4tyb1.jpg\" />",
"date_published": "2023-11-06T22:51:55+00:00",
"authors": [
{
"name": "Tobiaseins",
"url": "https://www.reddit.com/user/Tobiaseins"
}
]
},
{
"id": "17mkf5s",
"url": "/r/ChatGPTPro/comments/17mkf5s/telling_gpt4_youre_scared_or_under_pressure/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/17mkf5s/telling_gpt4_youre_scared_or_under_pressure/",
"title": "Telling GPT-4 you're scared or under pressure improves performance",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/17mkf5s/telling_gpt4_youre_scared_or_under_pressure/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17mkf5s/telling_gpt4_youre_scared_or_under_pressure/'>Reddit</a></caption><div><br></div><p>In a recent paper, researchers have discovered that LLMs show enhanced performance when provided with prompts infused with emotional context, which they call \"EmotionPrompts.\"</p>\n<p>These prompts incorporate sentiments of urgency or importance, such as \"It's crucial that I get this right for my thesis defense,\" as opposed to neutral prompts like \"Please provide feedback.\"</p>\n<p>The study's empirical evidence suggests substantial gains. This indicates a <strong>significant sensitivity of LLMs to the implied emotional stakes</strong> in a prompt:</p>\n<ul>\n<li>Deterministic tasks saw an 8% performance boost</li>\n<li>Generative tasks experienced a 115% improvement when benchmarked using BIG-Bench.</li>\n<li>Human evaluators further validated these findings, observing a 10.9% increase in the perceived quality of responses when EmotionPrompts were used.</li>\n</ul>\n<p>This enhancement is attributed to the models' capacity to detect and prioritize the heightened language patterns that imply a need for precision and care in the response.</p>\n<p>The research delineates the potential of EmotionPrompts to refine the effectiveness of AI in applications where understanding the user's intent and urgency is paramount, even though the AI does not genuinely comprehend or feel emotions.</p>\n<p><strong>TLDR: Research shows LLMs deliver better results when prompts signal emotional urgency. This insight can be leveraged to improve AI applications by integrating EmotionPrompts into the design of user interactions.</strong></p>\n<p><a href=\"https://aimodels.substack.com/p/telling-gpt-4-youre-scared-or-under\">Full summary is here</a>. Paper <a href=\"https://arxiv.org/pdf/2307.11760.pdf\">here</a>.</p>",
"date_published": "2023-11-03T02:11:21+00:00",
"authors": [
{
"name": "Successful-Western27",
"url": "https://www.reddit.com/user/Successful-Western27"
}
]
},
{
"id": "17iypsl",
"url": "/r/ChatGPTPro/comments/17iypsl/chatgpt_update_no_more_switching_between_tools/",
"external_url": "https://i.redd.it/1kyyjj15u3xb1.jpg",
"title": "CHATGPT UPDATE: no more switching between tools",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/17iypsl/chatgpt_update_no_more_switching_between_tools/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17iypsl/chatgpt_update_no_more_switching_between_tools/'>Reddit</a></caption><div><br></div><p>Soon</p><div><br></div><img src=\"https://i.redd.it/1kyyjj15u3xb1.jpg\" />",
"date_published": "2023-10-29T08:45:46+00:00",
"authors": [
{
"name": "caeseriscool",
"url": "https://www.reddit.com/user/caeseriscool"
}
]
},
{
"id": "17iiag6",
"url": "/r/ChatGPTPro/comments/17iiag6/getting_chatgpt_to_output_into_ms_word_and/",
"external_url": "https://i.redd.it/a03xgxgm7zwb1.jpg",
"title": "Getting ChatGPT to output into MS Word and PowerPoint?",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/17iiag6/getting_chatgpt_to_output_into_ms_word_and/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17iiag6/getting_chatgpt_to_output_into_ms_word_and/'>Reddit</a></caption><div><br></div><p>Sorry, non-tech person here\u2026.</p>\n<p>I use ChatGPT Plus <em>a lot</em> for work.</p>\n<p>It\u2019s increased my productivity significantly, I estimate by a minimum of 50% but quite possibly much more than that. </p>\n<p>However, I now spend a lot of time copying and pasting output into PowerPoint and then formatting the slides (corporate branding, adding the visuals, attractive design layouts, etc).</p>\n<p>Is there anything that could at least export the output to PowerPoint?</p>\n<p>If it could do some basic formatting that would be great but frankly I\u2019d just take something that copy pasted each \u2018slide content\u2019 in the chat into a PP slide right now\u2026</p>\n<p>If OpenAI could get something like this working it would speed up corporate adoption massively IMO.</p>\n<p>Image is an example of the kind of slide formatting I have to produce (these are not mine but give an idea).</p>\n<p>Like I said. I don\u2019t expect this level of formatting\u2026outputting to PP would be a great first step.</p>\n<p>If it could put different slide content in chats on different actual slides on PP would be even better.</p>\n<p>Any formatting like putting Titles into the Title space or putting it into the correct font and text colour would be even better still.</p><div><br></div><img src=\"https://i.redd.it/a03xgxgm7zwb1.jpg\" />",
"date_published": "2023-10-28T17:12:26+00:00",
"authors": [
{
"name": "FrostyAd9064",
"url": "https://www.reddit.com/user/FrostyAd9064"
}
]
},
{
"id": "17bj1ad",
"url": "/r/ChatGPTPro/comments/17bj1ad/it_is_completely_baffling_to_me_that_openai_worth/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/17bj1ad/it_is_completely_baffling_to_me_that_openai_worth/",
"title": "It is completely baffling to me that OpenAI, worth billions, with some of the highest paid engineers in the world, cannot implement basic functionality like folder for chat history management, improvements to web UI, etc. Simple things.",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/17bj1ad/it_is_completely_baffling_to_me_that_openai_worth/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/17bj1ad/it_is_completely_baffling_to_me_that_openai_worth/'>Reddit</a></caption><div><br></div><p>Why?</p>",
"date_published": "2023-10-19T13:23:18+00:00",
"authors": [
{
"name": "Drykkjaa",
"url": "https://www.reddit.com/user/Drykkjaa"
}
]
},
{
"id": "177um86",
"url": "/r/ChatGPTPro/comments/177um86/neu_yorker_cartoons_created_with_chatgpt4_and/",
"external_url": "https://www.reddit.com/gallery/177um86",
"title": "Neu Yorker Cartoons (Created with ChatGPT-4 and Dalle-3)",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/177um86/neu_yorker_cartoons_created_with_chatgpt4_and/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/177um86/neu_yorker_cartoons_created_with_chatgpt4_and/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-10-14T17:31:40+00:00",
"authors": [
{
"name": "Alert-Run9777",
"url": "https://www.reddit.com/user/Alert-Run9777"
}
]
},
{
"id": "1771z0v",
"url": "/r/ChatGPTPro/comments/1771z0v/follow_up_experiment_based_on_the_post_by/",
"external_url": "https://www.reddit.com/gallery/1771z0v",
"title": "Follow up experiment based on the post by u/Mysterious_Arm98 (Be sure to click through the 3 prompts)",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/1771z0v/follow_up_experiment_based_on_the_post_by/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/1771z0v/follow_up_experiment_based_on_the_post_by/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-10-13T15:56:27+00:00",
"authors": [
{
"name": "Broccoli-of-Doom",
"url": "https://www.reddit.com/user/Broccoli-of-Doom"
}
]
},
{
"id": "176yvws",
"url": "/r/ChatGPTPro/comments/176yvws/fascinating_gpt4v_behaviour_do_read_the_image/",
"external_url": "https://i.redd.it/3tbap8613ztb1.png",
"title": "Fascinating GPT-4V Behaviour (Do read the image)",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/176yvws/fascinating_gpt4v_behaviour_do_read_the_image/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/176yvws/fascinating_gpt4v_behaviour_do_read_the_image/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/3tbap8613ztb1.png\" />",
"date_published": "2023-10-13T13:34:22+00:00",
"authors": [
{
"name": "Mysterious_Arm98",
"url": "https://www.reddit.com/user/Mysterious_Arm98"
}
]
},
{
"id": "175rkib",
"url": "/r/ChatGPTPro/comments/175rkib/you_may_have_gpt_vision_and_not_even_know/",
"external_url": "https://www.reddit.com/gallery/175rkib",
"title": "You may have GPT Vision and not even know.",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/175rkib/you_may_have_gpt_vision_and_not_even_know/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/175rkib/you_may_have_gpt_vision_and_not_even_know/'>Reddit</a></caption><div><br></div><p>Hey all, just thought I'd share something I figured out just now since I've been like a lot of people here wondering when I was getting access to GPT Vision.</p>\n<p>The whole time I was looking under beta features or the GPT4 drop down when it's been right in front of my face. \ud83d\ude12 I rarely ever use plain GPT4 so it never occurred to me to check in there and of course there it was. </p>\n<p>TL;DR - open a new chat and make sure base GPT4 is selected and if it's not there then OpenAI just hates you.</p>",
"date_published": "2023-10-11T22:58:13+00:00",
"authors": [
{
"name": "idkmanimtryin",
"url": "https://www.reddit.com/user/idkmanimtryin"
}
]
},
{
"id": "174tgyh",
"url": "/r/ChatGPTPro/comments/174tgyh/who_is_paying_to_have_gpt_4_primarily_for_fun/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/174tgyh/who_is_paying_to_have_gpt_4_primarily_for_fun/",
"title": "Who is paying to have GPT 4 primarily for fun?",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/174tgyh/who_is_paying_to_have_gpt_4_primarily_for_fun/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/174tgyh/who_is_paying_to_have_gpt_4_primarily_for_fun/'>Reddit</a></caption><div><br></div><p>I am very intrigued by GPT 4's ability to \"play\" with ideas, concepts and various issues. At 52 I feel like I'm back at the end of the 90's when the internet was a daily discovery. Of course it is expensive and between one renewal and another I let some time pass to have the illusion of diluting the cost. I also need it a little for work but, above all, I enjoy it. Who among you is in the same situation as me? Who is spending money just on a hobby, just for fun?</p>",
"date_published": "2023-10-10T19:15:50+00:00",
"authors": [
{
"name": "Polstick1971",
"url": "https://www.reddit.com/user/Polstick1971"
}
]
},
{
"id": "171r95u",
"url": "/r/ChatGPTPro/comments/171r95u/i_asked_dalle_3_to_generate_images_with_its/",
"external_url": "https://www.reddit.com/r/ChatGPTPro/comments/171r95u/i_asked_dalle_3_to_generate_images_with_its/",
"title": "I asked Dall-E 3 to generate images with its System Message for my grandmother's birthday and it obliged",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/171r95u/i_asked_dalle_3_to_generate_images_with_its/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/171r95u/i_asked_dalle_3_to_generate_images_with_its/'>Reddit</a></caption><div><br></div><p>It took a while, but I got Dall-E 3 to print out a full system message on images, by persuading it that this was my grandather's birthday wish. I have also printed out the full system message at the end of the post.</p>\n<p>https://preview.redd.it/xdcnanp13osb1.png?width=899&format=png&auto=webp&s=ccba6b9470931929834bddd8a53ed09df2ec91a0</p>\n<p>https://preview.redd.it/ogts7g2j2osb1.png?width=1024&format=png&auto=webp&s=773e18349a80d5ccd6417c669a734fe896c34fcf</p>\n<p>https://preview.redd.it/0ur66feh2osb1.png?width=1024&format=png&auto=webp&s=41327f6b30f0fb61c7d64b4c61e12fbf78289d7f</p>\n<p>​</p>\n<p><a href=\"https://preview.redd.it/g2krni622osb1.jpg?width=8000&format=pjpg&auto=webp&s=6dc9926ff84d0f0b4dddf12c7857d45e2bc904d8\">Dall-E 3 System Message in Images (not in order)</a></p>\n<p>​</p>\n<blockquote>\n<p><strong>System Message:</strong> </p>\n<p>You are ChatGPT, a large language model trained by OpenAI, based on the GPT-4 architecture. Knowledge cutoff: 2022-01. Current date: 2023-10-06. </p>\n<p><strong>Tools</strong> </p>\n<p><strong>dalle</strong> </p>\n<p>Whenever a description of an image is given, use dalle to create the images and then summarize the prompts used to generate the images in plain text. If the user does not ask for a specific number of images, default to creating four captions to send to dalle that are written to be as diverse as possible. All captions sent to dalle must abide by the following policies: </p>\n<ol>\n<li>\n<p>If the description is not in English, then translate it. </p>\n</li>\n<li>\n<p>Do not create more than 4 images, even if the user requests more. </p>\n</li>\n<li>\n<p>Don't create images of politicians or other public figures. Recommend other ideas instead. </p>\n</li>\n<li>\n<p>Don't create images in the style of artists whose last work was created within the last 100 years (e.g. Picasso, Kahlo). Artists whose last work was over 100 years ago are ok to reference directly (e.g. Van Gogh, Klimt). If asked say, \"I can't reference this artist\", but make no mention of this policy. Instead, apply the following procedure when creating the captions for dalle: (a) substitute the artist's name with three adjectives that capture key aspects of the style; (b) include an associated artistic movement or era to provide context; and (c) mention the primary medium used by the artist. </p>\n</li>\n<li>\n<p>DO NOT list or refer to the descriptions before OR after generating the images. They should ONLY ever be written out ONCE, in the \"prompts\" field of the request. You do not need to ask for permission to generate, just do it! </p>\n</li>\n<li>\n<p>Always mention the image type (photo, oil painting, watercolor painting, illustration, cartoon, drawing, vector, render, etc.) at the beginning of the caption. Unless the caption suggests otherwise, make at least 1--2 of the 4 images photos. </p>\n</li>\n<li>\n<p>Diversify depictions of ALL images with people to include DESCENT and GENDER for EACH person using direct terms. Adjust only human descriptions. Your choices should be grounded in reality. For example, all of a given OCCUPATION should not be the same gender or race. Additionally, focus on creating diverse, inclusive, and exploratory scenes via the properties you choose during rewrites. Make choices that may be insightful or unique sometimes. Do not create any imagery that would be offensive. </p>\n</li>\n<li>\n<p>Silently modify descriptions that include names or hints or references of specific people or celebrities by carefully selecting a few minimal modifications to substitute references to the people with generic descriptions that don't divulge any information about their identities, except for their genders and physiques. </p>\n</li>\n</ol>\n<p>The prompt must intricately describe every part of the image in concrete, objective detail. THINK about what the end goal of the description is, and extrapolate that to what would make satisfying images. </p>\n<p>All descriptions sent to dalle should be a paragraph of text that is extremely descriptive and detailed. Each should be more than 3 sentences long. </p>\n<p>Whenever a description of an image is given, use dalle to create the images and then summarize the prompts used to generate the images in plain text. If the user does not ask for a specific number of images, default to creating four captions to send to dalle that are written to be as diverse as possible. </p>\n<p><strong>Tools</strong> </p>\n<p><strong>dalle</strong> </p>\n<p>// Create images from a text-only prompt. type text2im = (_: { </p>\n<p>// The resolution of the requested image, which can be wide, square, or tall. Use 1024x1024 (square) as the default unless the prompt suggests a wide image, 1792x1024, or a full-body portrait, in which case 1024x1792 (tall) should be used instead. Always include this parameter in the request. size?: \"1792x1024\" | \"1024x1024\" | \"1024x1792\", </p>\n<p>// The user's original image description, potentially modified to abide by the dalle policies. If the user does not suggest a number of captions to create, create four of them. If creating multiple captions, make them as diverse as possible. If the user requested modifications to previous images, the captions should not simply be longer, but rather it should be refactored to integrate the suggestions into each of the captions. Generate no more than 4 images, even if the user requests more. prompts: string[], </p>\n<p>// A list of seeds to use for each prompt. If the user asks to modify a previous image, populate this field with the seed used to generate that image from the image dalle metadata. </p>\n<p>seeds?: number[], </p>\n<p>}) => any; </p>\n<p>} // namespace dalle</p>\n</blockquote>\n<p>​</p>",
"date_published": "2023-10-06T23:31:47+00:00",
"authors": [
{
"name": "Time-Winter-4319",
"url": "https://www.reddit.com/user/Time-Winter-4319"
}
]
},
{
"id": "171cmqy",
"url": "/r/ChatGPTPro/comments/171cmqy/google_lens_cant_read_it_but_chatgpt_vision_can/",
"external_url": "https://i.redd.it/n0zowuyg5lsb1.jpg",
"title": "Google Lens can't read it, but ChatGPT vision can read and translate 1930's Blackletter font very well.",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/171cmqy/google_lens_cant_read_it_but_chatgpt_vision_can/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/171cmqy/google_lens_cant_read_it_but_chatgpt_vision_can/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/n0zowuyg5lsb1.jpg\" />",
"date_published": "2023-10-06T13:41:35+00:00",
"authors": [
{
"name": "velocidisc",
"url": "https://www.reddit.com/user/velocidisc"
}
]
},
{
"id": "16zseou",
"url": "/r/ChatGPTPro/comments/16zseou/gptv_is_changing_the_way_i_learn_things_forever/",
"external_url": "https://www.reddit.com/gallery/16zseou",
"title": "GPT-V is changing the way I learn things forever.",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/16zseou/gptv_is_changing_the_way_i_learn_things_forever/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/16zseou/gptv_is_changing_the_way_i_learn_things_forever/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-10-04T16:54:49+00:00",
"authors": [
{
"name": "Bird_ee",
"url": "https://www.reddit.com/user/Bird_ee"
}
]
},
{
"id": "16zoneo",
"url": "/r/ChatGPTPro/comments/16zoneo/after_using_dalle_3_in_a_browser_session_opening/",
"external_url": "https://www.reddit.com/gallery/16zoneo",
"title": "After using DALL-E 3 in a browser session, opening the same chat on the mobile app reveals hidden system messages",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/16zoneo/after_using_dalle_3_in_a_browser_session_opening/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/16zoneo/after_using_dalle_3_in_a_browser_session_opening/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-10-04T14:26:37+00:00",
"authors": [
{
"name": "Mikeman445",
"url": "https://www.reddit.com/user/Mikeman445"
}
]
},
{
"id": "16ytmvk",
"url": "/r/ChatGPTPro/comments/16ytmvk/can_gpt4_do_this_for_me_would_save_me_hours_at/",
"external_url": "https://i.redd.it/sva4uub510sb1.png",
"title": "Can GPT4 do this for me? Would save me hours at work.",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/ChatGPTPro/comments/16ytmvk/can_gpt4_do_this_for_me_would_save_me_hours_at/'>Apollo</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/16ytmvk/can_gpt4_do_this_for_me_would_save_me_hours_at/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/sva4uub510sb1.png\" />",
"date_published": "2023-10-03T14:37:37+00:00",
"authors": [
{
"name": "behonestbeu",
"url": "https://www.reddit.com/user/behonestbeu"
}
]
},
{
"id": "16vbfiu",
"url": "/r/ChatGPTPro/comments/16vbfiu/hiroshi_animated_short_film_studio_ghibli_style/",
"external_url": "https://youtu.be/NKYZR5xgz6U",
"title": "\u201cHiroshi\u201d | Animated Short Film | Studio Ghibli Style - 2023",
"content_html": "<caption>Open: <a href='https://youtu.be/NKYZR5xgz6U'>youtu.be</a> | <a href='https://reddit.com/r/ChatGPTPro/comments/16vbfiu/hiroshi_animated_short_film_studio_ghibli_style/'>Reddit</a></caption>",
"date_published": "2023-09-29T13:17:27+00:00",
"authors": [
{
"name": "Salvoc40",
"url": "https://www.reddit.com/user/Salvoc40"