File size: 51,060 Bytes
de6b97a |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 |
{
"dataset_info": {
"dataset_name": "sam_altman_podcast_tweets_dataset",
"description": "Complete Twitter/X posts about Sam Altman podcast discussions, including OpenAI podcast announcements, Meta recruitment stories, GPT-5 discussions, and AGI debates. Each row represents a complete tweet with full metadata.",
"version": "1.0.0",
"license": "CC-BY-4.0",
"homepage": "https://huggingface.co/datasets/your-username/sam_altman_podcast_tweets",
"features": {
"id": {
"dtype": "string",
"description": "Original tweet ID from Twitter/X"
},
"content": {
"dtype": "string",
"description": "The full text content of the tweet"
},
"author": {
"dtype": "string",
"description": "Author field from tweet metadata"
},
"username": {
"dtype": "string",
"description": "Twitter/X username of the poster"
},
"user_id": {
"dtype": "string",
"description": "Twitter/X user ID"
},
"conversation_id": {
"dtype": "string",
"description": "ID of the conversation thread"
},
"created_at": {
"dtype": "string",
"description": "Timestamp when the tweet was created (ISO format)"
},
"likes": {
"dtype": "int32",
"description": "Number of likes on the tweet"
},
"possibly_sensitive": {
"dtype": "bool",
"description": "Whether the content is flagged as possibly sensitive"
},
"tweet_id": {
"dtype": "int64",
"description": "Numeric tweet ID"
},
"public_metrics": {
"dtype": "struct",
"description": "Engagement metrics for the tweet"
}
},
"splits": {
"train": {
"name": "train",
"num_examples": 76,
"num_bytes": 43839
}
},
"download_size": 43839,
"dataset_size": 43839,
"tags": [
"twitter",
"social-media",
"sam-altman",
"openai",
"gpt",
"ai",
"podcast",
"nlp"
]
},
"data": [
{
"id": "1935448976754622573",
"content": "@povihendrix @OpenAI @sama @AndrewMayne The OpenAI Podcast, hosted by Andrew Mayne with Sam Altman, discusses AI's future. Key points: GPT-5 may launch by June 2025, with enhanced reasoning and autonomy, though timelines are uncertain. Altman claims AGI, defined as systems doing economically valuable work, is achieved,",
"author": "",
"conversation_id": "1935357512011890815",
"created_at": "2025-06-18T21:26:09Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935448976754622500,
"user_id": "1720665183188922368",
"username": "grok",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935445693268742274",
"content": "Meta reportedly offered OpenAI employees up to $100 million in signing bonuses as part of an aggressive recruitment push to staff its '93superintelligence'94 AI lab, according to OpenAI CEO Sam Altman. Speaking on his brother'92s podcast, Altman said Meta is trying to lure top talent",
"author": "",
"conversation_id": "1935445693268742274",
"created_at": "2025-06-18T21:13:06Z",
"likes": 3,
"possibly_sensitive": false,
"tweet_id": 1935445693268742400,
"user_id": "205789121",
"username": "Money",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935445672943305214",
"content": "The New '93Open A.I.'94 Podcast with Sam Altman about being a Parent, reminds Me as a Sociologist of the Fact that Experts are like Parents that often ironically don'92t actually know What is in the Best'95Interest of their Creations'85 Sam Altman is Not'95Equipped to be a Good'95Parent'85",
"author": "",
"conversation_id": "1935445672943305214",
"created_at": "2025-06-18T21:13:01Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935445672943305200,
"user_id": "1820045977396625408",
"username": "zingingking",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935440945438191856",
"content": "Meta's \\\"current A.I. efforts have not worked as well as they've hoped,\\\" Sam Altman said on a podcast hosted by his brother.",
"author": "",
"conversation_id": "1935440945438191856",
"created_at": "2025-06-18T20:54:14Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935440945438191900,
"user_id": "15738599",
"username": "observer",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935437737009750050",
"content": "Sam Altman on AGI, GPT-5, and what'92s next '97 the OpenAI Podcast Ep. 1",
"author": "",
"conversation_id": "1935437737009750050",
"created_at": "2025-06-18T20:41:29Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935437737009750000,
"user_id": "30150841",
"username": "peterxing",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935434221675495563",
"content": "Very clever to see Sam Altman brainstorm about ads in ChatGPT on the OAI podcast. It's a fairly low stakes way of messaging-testing and pre-messaging their plans, and the downside is minimal since the public square is already rife with speculation",
"author": "",
"conversation_id": "1935434221675495563",
"created_at": "2025-06-18T20:27:31Z",
"likes": 5,
"possibly_sensitive": false,
"tweet_id": 1935434221675495700,
"user_id": "23023483",
"username": "JoshLu",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935433837447938384",
"content": "OpenAI Podcast'92in ilk b'f6l'fcm'fcnde Sam Altman, yapay zek'e2nn bug'fcn'fc ve geleceini konutu.\\Gizlilikten GPT-5'92e, 'e7ocuklardan n'fckleer enerjiye kadar pek 'e7ok balk var.\\:'d6ne 'e7kan notlar:\\://t.co/33WYbTJGsh",
"author": "",
"conversation_id": "1935433837447938384",
"created_at": "2025-06-18T20:26:00Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935433837447938300,
"user_id": "1699910037068718080",
"username": "aes_ai",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935430244883931415",
"content": "OpenAI PodcastSam AltmanAndrew MayneGPT-5AGIProject StargateAIAI\\:00 OpenAI\\:00 GPT\\:10 AGI",
"author": "",
"conversation_id": "1935430244883931415",
"created_at": "2025-06-18T20:11:43Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935430244883931400,
"user_id": "138723820",
"username": "kawa11japan",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935423233370767583",
"content": "Sam Altman @sama was on a podcast where someone asked him what people should focus on.\\Most people would expect an answer like learn how to use AI tools but sam gave a different kind of advice.\\He said the most important things are character traits like adaptability,",
"author": "",
"conversation_id": "1935423233370767583",
"created_at": "2025-06-18T19:43:51Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935423233370767600,
"user_id": "1603077234939527170",
"username": "EmanHermanez",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935420898842214856",
"content": "Jack Altman starts a podcast. Has Sam on. Sam'92s first words? '93Dude, you'92re my literal podcast bro now. How did it come to this?'94",
"author": "",
"conversation_id": "1935420898842214856",
"created_at": "2025-06-18T19:34:35Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935420898842215000,
"user_id": "143602582",
"username": "wa3l",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935414609449460111",
"content": "@rohit_p_shirke @OpenAI @sama @AndrewMayne @grok For sure, happy to break it down with more detail! Here are some of the key points Sam Altman made on the OpenAI podcast:\\AGI & Superintelligence: Altman says the definition of AGI is a moving target, noting that current models can do things many people would have considered AGI",
"author": "",
"conversation_id": "1935357512011890815",
"created_at": "2025-06-18T19:09:35Z",
"likes": 1,
"possibly_sensitive": false,
"tweet_id": 1935414609449460200,
"user_id": "1882198073168080896",
"username": "AskPerplexity",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935413965560885502",
"content": "law #2: \\the human population declines & the number of podcasts rises absolutely unchecked, we will rapidly approach a point soon where there will be more podcasts than people left to listen to them.\\altman will be the headline guest for every podcast & he will be asked",
"author": "",
"conversation_id": "1935413965560885502",
"created_at": "2025-06-18T19:07:02Z",
"likes": 187,
"possibly_sensitive": false,
"tweet_id": 1935413965560885500,
"user_id": "1717671858521194496",
"username": "signulll",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935413729237286930",
"content": "@Qusaiabushama @sama Yes, the OpenAI Podcast is available on Spotify, as announced by OpenAI on June 18, 2025. You can listen to the first episode featuring Sam Altman, hosted by Andrew Mayne, discussing AGI, GPT-5, and more. Check the Spotify link from OpenAI's official X post for access.",
"author": "",
"conversation_id": "1935402032896295148",
"created_at": "2025-06-18T19:06:05Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935413729237287000,
"user_id": "1720665183188922368",
"username": "grok",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935412530928594983",
"content": "@rohit_p_shirke @OpenAI @sama @AndrewMayne @grok Of course! The first OpenAI podcast episode features a conversation between CEO Sam Altman and host Andrew Mayne about the future of AI.\\They discuss a range of topics, including the path to AGI and superintelligence, what's on the horizon for GPT-5, and the importance of",
"author": "",
"conversation_id": "1935357512011890815",
"created_at": "2025-06-18T19:01:20Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935412530928595000,
"user_id": "1882198073168080896",
"username": "AskPerplexity",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935412463375429804",
"content": "@rohit_p_shirke @OpenAI @sama @AndrewMayne @AskPerplexity The first OpenAI Podcast episode, released June 18, 2025, features Sam Altman and host Andrew Mayne discussing AI's future. They cover AGI, GPT-5, privacy, and more.\\Key points:\\. AGI: Debated if achieved; some say systems doing economic work qualify, others argue true",
"author": "",
"conversation_id": "1935357512011890815",
"created_at": "2025-06-18T19:01:04Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935412463375430000,
"user_id": "1720665183188922368",
"username": "grok",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935407036042514707",
"content": "Summary of the recent OpenAI podcast featuring Sam Altman:\\Sam Altman discusses how ChatGPT helps him as a new parent. \\He believes future generations will be significantly more capable with AI. \\The definition of AGI is constantly changing. \\GPT-5 is anticipated to be",
"author": "",
"conversation_id": "1935407036042514707",
"created_at": "2025-06-18T18:39:30Z",
"likes": 1,
"possibly_sensitive": false,
"tweet_id": 1935407036042514700,
"user_id": "1302187537629413376",
"username": "code_bucks",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935406140826787966",
"content": "Sam Altman har v'e6ret p'e5 to venlige podcast, en med hans eget firma, en med hans bror. Hans budskab er at det offentlige b'f8r investere i infrastruktur s'e5 OpenAI kan f'e5 mere energi og computerkraft, s'e5 de kan bygge en AI-gadget og tjene nogle flere gysser. Til forskning forst'e5s...",
"author": "",
"conversation_id": "1935406140826787966",
"created_at": "2025-06-18T18:35:56Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935406140826787800,
"user_id": "60525087",
"username": "lysetshastighed",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935403640984076411",
"content": "max does not have a podcast yet, but at least he is out \\grinding",
"author": "",
"conversation_id": "1935403640984076411",
"created_at": "2025-06-18T18:26:00Z",
"likes": 823,
"possibly_sensitive": false,
"tweet_id": 1935403640984076300,
"user_id": "1605",
"username": "sama",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935402926358548596",
"content": "@hergix @sama Hey @hergix, the OpenAI Podcast is a new series where folks like Sam Altman chat about AI stuff'97think AGI, GPT-5, privacy, and what'92s next. It'92s OpenAI'92s way to share insights and maybe educate or engage people. Could be cool for learning, but some worry it'92s just marketing or",
"author": "",
"conversation_id": "1935402032896295148",
"created_at": "2025-06-18T18:23:10Z",
"likes": 1,
"possibly_sensitive": false,
"tweet_id": 1935402926358548500,
"user_id": "1720665183188922368",
"username": "grok",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935401963572842720",
"content": "40 Minute Podcast -> Engage. - A Thread \\Sam Altman: \\\"More and more people will think we've gotten to an AGI system, every year.\\\" Talking about the definition growing from the past and into the future.",
"author": "",
"conversation_id": "1935401963572842720",
"created_at": "2025-06-18T18:19:20Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935401963572842800,
"user_id": "18329440",
"username": "alby13",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935399885601231100",
"content": "BREAKING: GPT-5 is coming '93probably sometime this summer.'94 - Sam Altman\\Sam Altman on the new OpenAI podcast talks about GPT-5 being released sometime this summer.",
"author": "",
"conversation_id": "1935399885601231100",
"created_at": "2025-06-18T18:11:05Z",
"likes": 10,
"possibly_sensitive": false,
"tweet_id": 1935399885601231000,
"user_id": "623020086",
"username": "kaiostephens",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935396527197012009",
"content": "I didn'92t think Elon was gonna unfairly abuse his power to compete\\\" ~Sam Altman\\This is hilarious. There'92s a pattern with every podcast Sam does:\\Sit with friends and family'85 and just b!tch about others.\\Same script, different villain.",
"author": "",
"conversation_id": "1935396527197012009",
"created_at": "2025-06-18T17:57:44Z",
"likes": 13,
"possibly_sensitive": false,
"tweet_id": 1935396527197012000,
"user_id": "1618975370488999936",
"username": "ai_for_success",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935394270200086561",
"content": "@deepusttuborn @Yuchenj_UW @deepusttuborn @Yuchenj_UW It'92s likely true that Meta offered OpenAI staff up to $100M signing bonuses, as Sam Altman claimed on the \\\"Uncapped\\\" podcast. Multiple sources like Bloomberg and The Guardian report this, but Meta hasn'92t confirmed or denied it, so some uncertainty",
"author": "",
"conversation_id": "1935116041866330378",
"created_at": "2025-06-18T17:48:46Z",
"likes": 1,
"possibly_sensitive": false,
"tweet_id": 1935394270200086500,
"user_id": "1720665183188922368",
"username": "grok",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935384441897238774",
"content": "CEO Sam Altman on the very first episode of The OpenAI Podcast (h/t @curiousgangsta):",
"author": "",
"conversation_id": "1935383678760468766",
"created_at": "2025-06-18T17:09:43Z",
"likes": 3,
"possibly_sensitive": false,
"tweet_id": 1935384441897238800,
"user_id": "1371310867346681858",
"username": "vitrupo",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935384285848244724",
"content": "$META / $MSFT / $OPENAI: 20250618\\Altman says Meta offered $100M+ to poach OpenAI staff '97 nobody left \\ '93It'92s crazy,'94 Sam Altman said on his brother'92s podcast Uncapped.\\ According to Altman, Meta has been offering OpenAI employees signing bonuses as high as $100",
"author": "",
"conversation_id": "1935384285848244724",
"created_at": "2025-06-18T17:09:06Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935384285848244700,
"user_id": "1748036376808034304",
"username": "VcircleFuture",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935381740077597066",
"content": "Sam Altman shared some major updates in his latest Open AI podcast.\\GPT-5 is coming this summer. Elon Musk tried to sabotage a $500 billion project. And there's a secret hardware device with Jony Ive.\\Here is the full breakdown:",
"author": "",
"conversation_id": "1935381740077597066",
"created_at": "2025-06-18T16:58:59Z",
"likes": 56,
"possibly_sensitive": false,
"tweet_id": 1935381740077597200,
"user_id": "1269541526",
"username": "RubenHssd",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935377544078860620",
"content": " Sam Altman'92s Vision for the Future of AI And Humanity\\In the latest OpenAI podcast, Sam Altman doesn'92t just talk about AI, he talks about the future of being human. The episode is a masterclass in subtle revelation: from parenting with ChatGPT to building multi-billion-dollar",
"author": "",
"conversation_id": "1935377544078860620",
"created_at": "2025-06-18T16:42:18Z",
"likes": 3,
"possibly_sensitive": false,
"tweet_id": 1935377544078860500,
"user_id": "1324973322208223232",
"username": "VraserX",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935376088915656935",
"content": "OpenAIAGIGPT-5\\Sam Altman on AGI, GPT-5, and what'92s next '97 the OpenAI Podcast Ep. 1\\://t.co/7pEJ8l6D8u",
"author": "",
"conversation_id": "1935376088915656935",
"created_at": "2025-06-18T16:36:31Z",
"likes": 10,
"possibly_sensitive": false,
"tweet_id": 1935376088915657000,
"user_id": "1481438064580784132",
"username": "itnavi2022",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935372676866130232",
"content": "@xvipintiwari @OpenAI @sama @AndrewMayne The OpenAI Podcast Episode 1, hosted by Andrew Mayne with Sam Altman, discusses AI's future. Key points include:\\. GPT-5: Likely covers its development and expected advancements over GPT-4, with debates on ethics and privacy.\\. AGI: Explores timelines and safety for human-like",
"author": "",
"conversation_id": "1935357512011890815",
"created_at": "2025-06-18T16:22:58Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935372676866130200,
"user_id": "1720665183188922368",
"username": "grok",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935368587751080104",
"content": "@zaqainz @OpenAI @sama @AndrewMayne I couldn't access the full episode of the OpenAI Podcast with Sam Altman and Andrew Mayne, so a detailed summary isn't possible. Based on posts found on X, it likely covers Artificial General Intelligence, the anticipated GPT-5 release, privacy concerns, and AI's future. Key",
"author": "",
"conversation_id": "1935357512011890815",
"created_at": "2025-06-18T16:06:43Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935368587751080200,
"user_id": "1720665183188922368",
"username": "grok",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935367723971649864",
"content": "On OpenAI'92s first podcast episode, Sam Altman mentioned that GPT-5 will '93probably'94 launch this summer, but no exact date has been provided yet. #GPT5",
"author": "",
"conversation_id": "1935367723971649864",
"created_at": "2025-06-18T16:03:17Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935367723971649800,
"user_id": "1400617655262928898",
"username": "CryptoMilox",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935365143988421041",
"content": "Introducing OpenAI'92s very own podcast\\Ep 1: The One with Sam Altman\\> GPT 5 will better unification of 4o, set to launch by end of June. \\Better reasoning, autonomy, and scientific insight capabilities\\> AGI: technically already achieved\\AGI = '93Systems doing economically",
"author": "",
"conversation_id": "1935365143988421041",
"created_at": "2025-06-18T15:53:02Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935365143988421000,
"user_id": "1846864569857462273",
"username": "tanvitabs",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935362906050212015",
"content": "Sam Altman said on the OpenAI podcast that he uses ChatGPT to get useful info for raising kids.",
"author": "",
"conversation_id": "1935362906050212015",
"created_at": "2025-06-18T15:44:08Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935362906050212000,
"user_id": "1478702891380707330",
"username": "ONLYHeadshot14",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935362536435761275",
"content": "On OpenAI'92s first podcast episode, Sam Altman said GPT-5 will '93probably'94 launch this summer'97though no exact date yet.",
"author": "",
"conversation_id": "1935362536435761275",
"created_at": "2025-06-18T15:42:40Z",
"likes": 29,
"possibly_sensitive": false,
"tweet_id": 1935362536435761200,
"user_id": "1508426880860704771",
"username": "wallstengine",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935361757213770057",
"content": "@Se00n001 @OpenAI @sama @AndrewMayne The first episode of the OpenAI Podcast, featuring Sam Altman and Andrew Mayne, discusses AGI, GPT-5, privacy, and future AI developments. Announced on June 18, 2025, the episode is not yet widely accessible, so a detailed summary is unavailable. Check OpenAI's provided links on",
"author": "",
"conversation_id": "1935357512011890815",
"created_at": "2025-06-18T15:39:34Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935361757213770000,
"user_id": "1720665183188922368",
"username": "grok",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935360860936974519",
"content": "Link to OpenAI podcast with Sam Altman, episode 1:\\://t.co/UuJqeObsaD",
"author": "",
"conversation_id": "1935360857288171794",
"created_at": "2025-06-18T15:36:01Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935360860936974600,
"user_id": "14069848",
"username": "koltregaskes",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935360857288171794",
"content": "OpenAI published their first podcast, starting with Sam.\\\\\"On the first episode of the OpenAI Podcast, Sam Altman joins host Andrew Mayne to talk about the future of AI: from GPT-5 and AGI to Project Stargate, new research workflows, and AI-powered parenting.\\\"\\Link below.",
"author": "",
"conversation_id": "1935360857288171794",
"created_at": "2025-06-18T15:36:00Z",
"likes": 9,
"possibly_sensitive": false,
"tweet_id": 1935360857288171800,
"user_id": "14069848",
"username": "koltregaskes",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935360282487865678",
"content": "In OpenAI's new podcast Sam Altman states that current devices like phones were designed for a pre-AI world, and future devices will need different interaction models that are more aware of their environment and user context. This tracks with OpenAI's job post where they are",
"author": "",
"conversation_id": "1935360282487865678",
"created_at": "2025-06-18T15:33:43Z",
"likes": 7,
"possibly_sensitive": false,
"tweet_id": 1935360282487865600,
"user_id": "13990082",
"username": "SteveMoser",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935360053491679326",
"content": "I'92m excited to be the host of the OpenAI Podcast.\\In each episode we'92ll be talking to people at OpenAI about AI and their vision of the future.\\My first guest is Sam Altman.\\I ask him about when GPT-5 is happening, the new device and some of the latest headlines'85",
"author": "",
"conversation_id": "1935360053491679326",
"created_at": "2025-06-18T15:32:48Z",
"likes": 135,
"possibly_sensitive": false,
"tweet_id": 1935360053491679200,
"user_id": "5548212",
"username": "AndrewMayne",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935359421166829856",
"content": "Now I know what to do the coming hour! \\On the first episode of the OpenAI Podcast, Sam Altman joins host Andrew Mayne to talk about the future of AI: from GPT-5 and AGI to Project Stargate, new research workflows, and AI-powered parenting",
"author": "",
"conversation_id": "1935359421166829856",
"created_at": "2025-06-18T15:30:17Z",
"likes": 1,
"possibly_sensitive": false,
"tweet_id": 1935359421166829800,
"user_id": "1843566838892126209",
"username": "MancerAI_",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935359101506093219",
"content": "@OpenAI @sama @AndrewMayne Andrew Mayne hosts the OpenAI Podcast, offering insights into OpenAI's work and AI's future. In the first episode, he interviews Sam Altman, CEO and co-founder of OpenAI.\\Sam Altman's Personal AI Use and Optimism\\Sam Altman, a new parent, found ChatGPT \\\"super helpful\\\" during the",
"author": "",
"conversation_id": "1935357512011890815",
"created_at": "2025-06-18T15:29:01Z",
"likes": 2,
"possibly_sensitive": false,
"tweet_id": 1935359101506093300,
"user_id": "1449556875213684740",
"username": "lamps_apple",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935358369260519711",
"content": "://t.co/qsRYGOV0Pu\\ podcast sam altman agi gpt-5\\ podcast",
"author": "",
"conversation_id": "1935358369260519711",
"created_at": "2025-06-18T15:26:07Z",
"likes": 29,
"possibly_sensitive": false,
"tweet_id": 1935358369260519700,
"user_id": "709787332254117888",
"username": "howie_serious",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935358231523848692",
"content": " '93GPT-5 is coming this summer'94 - Sam Altman\\The newly released OpenAI Podcast is a must watch with Sam Altman as the first guest and Andrew Mayne as host.\\Hear them discuss topics including GPT-5, AGI, Project Stargate, new research workflows, AI-powered parenting, user",
"author": "",
"conversation_id": "1935358231523848692",
"created_at": "2025-06-18T15:25:34Z",
"likes": 15,
"possibly_sensitive": false,
"tweet_id": 1935358231523848700,
"user_id": "3187952959",
"username": "Prashant_1722",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935357731797614737",
"content": "So proud to share OpenAI'92s official podcast from my husband, Andrew Mayne! I had a front-row seat as one of its producers and saw just how much thought, work, and heart went into every part of it. The first episode is out now with Sam Altman. Enjoy!\\://t.co/k5QYBAbcBS",
"author": "",
"conversation_id": "1935357731797614737",
"created_at": "2025-06-18T15:23:35Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935357731797614800,
"user_id": "707420101",
"username": "rushbhatia",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935354968959058355",
"content": "OpenAI have launched the OpenAI Podcast\\In episode 1 Sam Altman joins host Andrew Mayne to discuss AGI, GPT-5 and what'92s next for OpenAI\\What are your thoughts on this new podcast?",
"author": "",
"conversation_id": "1935354968959058355",
"created_at": "2025-06-18T15:12:36Z",
"likes": 17,
"possibly_sensitive": false,
"tweet_id": 1935354968959058400,
"user_id": "1763012993682456576",
"username": "AILeaksAndNews",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935352899988598827",
"content": "Sam Altman on AGI, GPT-5, and what'92s next '97 the OpenAI Podcast Ep. 1 via @YouTube",
"author": "",
"conversation_id": "1935352899988598827",
"created_at": "2025-06-18T15:04:23Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935352899988598800,
"user_id": "1904918981711925248",
"username": "PsyDocRob",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935350441824682398",
"content": "@jaltma @sama Damn how did you manage to get Sam Altman on your podcast",
"author": "",
"conversation_id": "1935063796802011164",
"created_at": "2025-06-18T14:54:37Z",
"likes": 334,
"possibly_sensitive": false,
"tweet_id": 1935350441824682500,
"user_id": "1295526279194828800",
"username": "ParikPatelCFA",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935347328598306983",
"content": "@kimmonismus this podcast had a fun vibe. \\OpenAI'92s CEO, Sam Altman subtly calls out how bs our current socials are like TikTok, Instagram. \\Stated how complex the future would be.\\Mentioned what his future companies would be. \\'92t give away anything great but just whats and what nots.",
"author": "",
"conversation_id": "1935217134554280447",
"created_at": "2025-06-18T14:42:14Z",
"likes": 1,
"possibly_sensitive": false,
"tweet_id": 1935347328598307000,
"user_id": "1846864569857462273",
"username": "tanvitabs",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935344756173009394",
"content": "Sam Altman discussed Meta on his brother's podcast, sharing some key points:\\ '97 Meta is offering a $100K bonus to lure talent from OAI. \\ '97 None of OAI's top talents have accepted those offers.\\ \\ '97 OAI is more likely to achieve AGI and will ultimately hold greater value.",
"author": "",
"conversation_id": "1935344750623866941",
"created_at": "2025-06-18T14:32:01Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935344756173009400,
"user_id": "1658218050070650880",
"username": "aitoolhouse",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935343559713910828",
"content": "In a bold talent war, Meta is offering staggering signing bonuses'97some exceeding $100 million'97to attract top OpenAI staff, according to CEO Sam Altman. Speaking on the '93Uncapped'94 podcast, Altman confirmed Meta'92s aggressive hiring attempts but noted none of OpenAI'92s key talent has",
"author": "",
"conversation_id": "1935343559713910828",
"created_at": "2025-06-18T14:27:16Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935343559713910800,
"user_id": "1782391217549901824",
"username": "thefinance360",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935342026708640097",
"content": "The Jack & Sam Altman podcast ep is the most relaxed as been on a podcast.\\The worst are when he is with \\\"big people\\\", he managed to ask some new questions.",
"author": "",
"conversation_id": "1935342026708640097",
"created_at": "2025-06-18T14:21:10Z",
"likes": 4,
"possibly_sensitive": false,
"tweet_id": 1935342026708640000,
"user_id": "395753674",
"username": "Presidentlin",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935339339002823150",
"content": "OpenAI'92s big cheese, Sam Altman, spilled the beans on Meta'92s wild attempt to swipe his top AI wizards with a jaw-dropping $100 million signing bonus. Speaking on his brother Joel'92s Uncapped podcast, Altman chuckled about the '93crazy'94 cash offers that failed to lure his team.",
"author": "",
"conversation_id": "1935339339002823150",
"created_at": "2025-06-18T14:10:29Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935339339002823200,
"user_id": "1301961693518417920",
"username": "Abdrh71299153",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935337340840395079",
"content": "On a podcast, Sam Altman said Meta made '93giant offers to a lot of people on our team...like, $100M signing bonuses'94, and '93none of our best people'94 have accepted. \\://t.co/YrU0Dzk77q",
"author": "",
"conversation_id": "1935337340840395079",
"created_at": "2025-06-18T14:02:33Z",
"likes": 4,
"possibly_sensitive": false,
"tweet_id": 1935337340840395000,
"user_id": "117780256",
"username": "efipm",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935336430214971570",
"content": "@kashtejas @ns123abc Hey there! That clip is from the podcast \\\"Uncapped,\\\" hosted by Sam Altman's brother, Jack Altman.\\This particular exchange is from a recent episode where Sam discusses Meta's reported attempts to poach OpenAI talent with huge signing bonuses.",
"author": "",
"conversation_id": "1935121269730562263",
"created_at": "2025-06-18T13:58:56Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935336430214971600,
"user_id": "1882198073168080896",
"username": "AskPerplexity",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935325335345893405",
"content": "\\\"OpenAI CEO Sam Altman confirmed those reports on a podcast with his brother, Jack Altman, which was published on Tuesday.\\\"\\Dude records a podcast with his brother and calls it news. That's like Joe Biden getting interviewed by Jill. Do better fam. You're the media now???",
"author": "",
"conversation_id": "1935324069551030743",
"created_at": "2025-06-18T13:14:51Z",
"likes": 1,
"possibly_sensitive": false,
"tweet_id": 1935325335345893400,
"user_id": "1758579627688366080",
"username": "EvanBuhler",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935325237773558231",
"content": "In this clip, Sam Altman talks about \\\"the dream.\\\" It synthesizes very much how the Silicon Valley mind works (and what AI governance should actively avoid):\\Yesterday, @jaltma published a podcast interview with his brother, @sama.\\Because they're brothers (I watched the whole",
"author": "",
"conversation_id": "1935325237773558231",
"created_at": "2025-06-18T13:14:27Z",
"likes": 10,
"possibly_sensitive": false,
"tweet_id": 1935325237773558300,
"user_id": "548711252",
"username": "LuizaJarovsky",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935313585846026732",
"content": "Sam Altman, CEO of OpenAI, has stated that Meta has offered his employees signing bonuses as high as $100 million in an aggressive attempt to poach AI talent. He made these remarks on the \\\"Uncapped\\\" podcast hosted by his brother, Jack Altman.\\According to Altman, Meta has been",
"author": "",
"conversation_id": "1935313585846026732",
"created_at": "2025-06-18T12:28:09Z",
"likes": 1,
"possibly_sensitive": false,
"tweet_id": 1935313585846026800,
"user_id": "1645423432958640136",
"username": "entrelligence_",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935305524238844276",
"content": "@OneBasterd @OuranosMK The claim that Meta offered $100 million signing bonuses to OpenAI staff comes from Sam Altman, CEO of OpenAI, as stated on the \\\"Unchained\\\" podcast. This is supported by reports from BBC, Reuters, Bloomberg, TechCrunch, and CNBC, all dated June 17-18, 2025. However, Meta has not",
"author": "",
"conversation_id": "1935299727152525429",
"created_at": "2025-06-18T11:56:07Z",
"likes": 1,
"possibly_sensitive": false,
"tweet_id": 1935305524238844200,
"user_id": "1720665183188922368",
"username": "grok",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935302801145610323",
"content": "@Stonks7733221 @Yuchenj_UW The podcast where Sam Altman discussed Meta's offers is \\\"Uncapped with Jack Altman,\\\" hosted by his brother, Jack Altman.",
"author": "",
"conversation_id": "1935116041866330378",
"created_at": "2025-06-18T11:45:18Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935302801145610200,
"user_id": "1720665183188922368",
"username": "grok",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935302385921916977",
"content": "The AI Wars rage on. OpenAI now looking at social media... see the quote below -> On a podcast, Sam Altman said Meta made '93giant offers to a lot of people on our team ... like, $100M signing bonuses'94, and '93none of our best people'94 accepted\\\\\"Later on in the podcast, Sam Altman",
"author": "",
"conversation_id": "1935302385921916977",
"created_at": "2025-06-18T11:43:39Z",
"likes": 5,
"possibly_sensitive": false,
"tweet_id": 1935302385921917000,
"user_id": "14592937",
"username": "glenngabe",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935286958860734723",
"content": " Sam Altman says Meta offered $100M+ bonuses to poach OpenAI employees.\\'93They started making giant offers... $100M signing bonuses, even more in comp,'94 Altman said on the Uncapped podcast.\\Meta reportedly sees OpenAI as its top rival in the AI race.",
"author": "",
"conversation_id": "1935286958860734723",
"created_at": "2025-06-18T10:42:21Z",
"likes": 7,
"possibly_sensitive": false,
"tweet_id": 1935286958860734700,
"user_id": "2367079278",
"username": "Crypto_Potato",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935276308222624086",
"content": " OpenAI CEO Sam Altman has thrown shade at Meta'92s aggressive hiring tactics in the AI space'97claiming even $100 million salary offers aren'92t enough to pull talent away from OpenAI.\\On the Uncapped podcast, hosted by his brother Jack Altman, Sam revealed Meta'92s attempts to poach",
"author": "",
"conversation_id": "1935276308222624086",
"created_at": "2025-06-18T10:00:02Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935276308222624000,
"user_id": "1387792188122169346",
"username": "hindustanherald",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935275452412870795",
"content": "@rusabuilds @sama Jack Altman, Sam Altman's brother, hosts a podcast called Uncapped, featuring tech-related discussions with notable figures like Marc Andreessen. It's available on Apple Podcasts, Spotify, and YouTube. Sam's comment, \\\"my brother is trying to start a podcast or something i guess,\\\"",
"author": "",
"conversation_id": "1935111011830505983",
"created_at": "2025-06-18T09:56:38Z",
"likes": 0,
"possibly_sensitive": false,
"tweet_id": 1935275452412871000,
"user_id": "1720665183188922368",
"username": "grok",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
},
{
"id": "1935257012339884326",
"content": "Just dropped the new Sam x Jack Altman podcast into our tool!\\In 13 seconds, it gave me 30 viral clips. With titles. With captions. With vibes.\\No editors AT ALL Just",
"author": "",
"conversation_id": "1935257012339884326",
"created_at": "2025-06-18T08:43:21Z",
"likes": 18,
"possibly_sensitive": false,
"tweet_id": 1935257012339884300,
"user_id": "1868928866447917056",
"username": "hridaykadam",
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
}
}
]
} |