File size: 89,978 Bytes
f2a235f |
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 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 |
[
{
"Id": "1932559530614997118",
"Content": "RT @GregKamradt: Spent the weekend testing o3-pro on @arcprize - Thank you to the OpenAI team for early access\n\nMy takeaways:\n\n1. I was sur…",
"Metadata": {
"author": "1372187701516980229",
"conversation_id": "1932559530614997118",
"created_at": "2025-06-10T22:04:31Z",
"lang": "en",
"likes": 0,
"newest_id": "1932559530614997118",
"oldest_id": "1932559421219221639",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 10
},
"tweet_id": 1932559530614997000,
"user_id": "1372187701516980229",
"username": "tatsuru_kikuchi"
},
"Score": 0.5004843,
"source": "archive"
},
{
"Id": "1930908804209594837",
"Content": "@DonIwana @AciremVA @verge Its more like red panda and pandas they called the same thing but not all the same. GenAi/ OpenAi relies on dataset often stolen by artists, writers musicians. Ai in robotics predate openAI. Example Da Vinci surgical robot made 1999. Both coined the term but other isnt a bear.",
"Metadata": {
"author": "",
"conversation_id": "1926998330443190544",
"created_at": "2025-06-06T08:45:08Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1930908804209595000,
"user_id": "1610587823257653251",
"username": "NoNamerherself"
},
"Score": 0.49983436,
"source": "archive"
},
{
"Id": "1934588454790369586",
"Content": "They might win it all. Or they might burn out in the process.\n\nBottom line?\n\nOpenAI is building the platform AI will run on for the next decade.\n\nAnd if you squint hard enough…\n\nIt kinda looks like they're building the next internet.",
"Metadata": {
"author": "",
"conversation_id": "1934588431755317319",
"created_at": "2025-06-16T12:26:45Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1934588454790369500,
"user_id": "196569375",
"username": "houmanasefi"
},
"Score": 0.49970034,
"source": "archive"
},
{
"Id": "1934589774368559132",
"Content": "RT @ai_for_success: OpenAI how it started vs how it’s going.\n\nCan we really trust Sam Altman or OpenAI with AGI? 🤔\n\n📹 Credit: u/katxwoods h…",
"Metadata": {
"author": "1240388204328620033",
"conversation_id": "1934589774368559132",
"created_at": "2025-06-16T12:31:59Z",
"lang": "en",
"likes": 0,
"newest_id": "1934589817460871175",
"oldest_id": "1934589429303148571",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 151
},
"tweet_id": 1934589774368559000,
"user_id": "1240388204328620033",
"username": "Pablo00408320"
},
"Score": 0.4996853,
"source": "archive"
},
{
"Id": "1931746360899891543",
"Content": "The general population is very easily impressed by OpenAI. Even updated it’s been months since they’ve been behind on AI voice and people still don’t know that there is way better conversational speech model with a way better VAD. Surprisingly, it uses the Llama architecture https://t.co/y64uBKnSje",
"Metadata": {
"author": "565003563",
"conversation_id": "1931746360899891543",
"created_at": "2025-06-08T16:13:17Z",
"lang": "en",
"likes": 0,
"newest_id": "1931746360899891543",
"oldest_id": "1931745983865745709",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1931746360899891500,
"user_id": "565003563",
"username": "cheicolate"
},
"Score": 0.4994922,
"source": "archive"
},
{
"Id": "1932588663591801168",
"Content": "OpenAI’s open model is delayed again, but Sam Altman promises their research team pulled off something \"unexpected and amazing.\" Curious to see how this will shift the open AI space—especially with rivals already rolling out new reasoning models. Worth the wait? I hope so.",
"Metadata": {
"author": "",
"conversation_id": "1932588663591801168",
"created_at": "2025-06-11T00:00:17Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932588663591801000,
"user_id": "1851925565726498816",
"username": "relegoai"
},
"Score": 0.49938878,
"source": "archive"
},
{
"Id": "1934965137359945933",
"Content": "Welp I know someone in my network will definitely involved in whatever OpenAI do here. That aside… seriously so much so for being open and doing things for humanity",
"Metadata": {
"author": "",
"conversation_id": "1934965137359945933",
"created_at": "2025-06-17T13:23:33Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1934965137359946000,
"user_id": "397016345",
"username": "srg_io"
},
"Score": 0.4993621,
"source": "archive"
},
{
"Id": "1930686942716285059",
"Content": "You don't have to DEVELOP your solution that way.\n\nThe OpenAI API is way to expensive. Instead, you should use the Gemini API during development and use Cursor/Windsurf to explore 5-10 different strategies simultaneously.",
"Metadata": {
"author": "",
"conversation_id": "1930686930909331928",
"created_at": "2025-06-05T18:03:32Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1930686942716285200,
"user_id": "1828092279166271488",
"username": "know_u_self"
},
"Score": 0.49911332,
"source": "archive"
},
{
"Id": "1914420408180416809",
"Content": "RT @WolframRvnwlf: New OpenAI models o3 and o4-mini evaluated - and, finally, for comparison GPT 4.5 Preview as well.\n\nDefinitely unexpecte…",
"Metadata": {
"author": "1519722535889391617",
"conversation_id": "1914420408180416809",
"created_at": "2025-04-21T20:46:08Z",
"lang": "en",
"newest_id": "1914422011394449484",
"oldest_id": "1914420288789602398",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 3
},
"tweet_id": 1914420408180416800,
"user_id": "1519722535889391617",
"username": ""
},
"Score": 0.49884093,
"source": "archive"
},
{
"Id": "1932514026824605773",
"Content": "@signulll That’s how OpenAI kind of got started. 8 years ago they were willing to throw far more compute at training/learning than other labs.",
"Metadata": {
"author": "26726408",
"conversation_id": "1932493288688267470",
"created_at": "2025-06-10T19:03:43Z",
"lang": "en",
"likes": 0,
"newest_id": "1932514106071736761",
"oldest_id": "1932513926614249785",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932514026824605700,
"user_id": "26726408",
"username": "hrokling"
},
"Score": 0.49876475,
"source": "archive"
},
{
"Id": "1931277220179235326",
"Content": "@ai_for_success so OpenAI here we come back. It was like OpenAI->Google and now -> OpenAI",
"Metadata": {
"author": "",
"conversation_id": "1931053263912333790",
"created_at": "2025-06-07T09:09:05Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1931277220179235300,
"user_id": "1885218934145630208",
"username": "AlonLaleza30319"
},
"Score": 0.49827653,
"source": "archive"
},
{
"Id": "1933667337087168645",
"Content": "@MbBrainz @spatialjlo @OpenAI @AnthropicAI Comparing Groq's Qwen3-32B (131k context) to OpenAI and Anthropic models, Qwen3-32B offers a blended price of $0.365/M tokens, cheaper than most OpenAI models ($0.26-$3.50) and Anthropic's ($1.60-$30.00), except OpenAI's GPT-4o mini ($0.26). Its output speed (531 tokens/s) and",
"Metadata": {
"author": "",
"conversation_id": "1933269253198623090",
"created_at": "2025-06-13T23:26:33Z",
"lang": "",
"likes": 1,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1933667337087168800,
"user_id": "1720665183188922368",
"username": "grok"
},
"Score": 0.49819916,
"source": "archive"
},
{
"Id": "1934781317679599833",
"Content": "OpenAI is expanding its recruitment.",
"Metadata": {
"author": "",
"conversation_id": "1934781317679599833",
"created_at": "2025-06-17T01:13:07Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1934781317679599900,
"user_id": "1930546423462027264",
"username": "MeiFintechAI"
},
"Score": 0.4980525,
"source": "archive"
},
{
"Id": "1934681911365976292",
"Content": "Last but not least, Mistral AI dropped Magistral - their first open-source reasoning model. \n\nThey're directly challenging OpenAI and Anthropic, making advanced AI more accessible to researchers and indie developers. The democratization of AI is happening right now.",
"Metadata": {
"author": "",
"conversation_id": "1934681906026529168",
"created_at": "2025-06-16T18:38:06Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1934681911365976300,
"user_id": "63194573",
"username": "yi_te_lu"
},
"Score": 0.49799252,
"source": "archive"
},
{
"Id": "1932816309118710161",
"Content": ".@OpenAI: New models, and chasing Altman’s superintelligence dream https://t.co/XWXbwTj9KF OpenAI released o3-pro for ChatGPT Pro and Team users in what it calls its most capable model yet as it cut the prices for o3 by 80%. The moves come as…",
"Metadata": {
"author": "",
"conversation_id": "1932816309118710161",
"created_at": "2025-06-11T15:04:52Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932816309118710300,
"user_id": "460418191",
"username": "VaughanTA"
},
"Score": 0.4979816,
"source": "archive"
},
{
"Id": "1933195190698962944",
"Content": "@Tapeda_ Yeah I still see OpenAI as \"we found the lambda calculus for general pattern matching and content generation, but instead of giving it operational semantics we just scaled the interpreter of the calculus to 1,000,000 GPUs and called it a day until competitions shows us better.\"",
"Metadata": {
"author": "",
"conversation_id": "1933171565908123939",
"created_at": "2025-06-12T16:10:25Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1933195190698963000,
"user_id": "568590830",
"username": "Lambda_Coder"
},
"Score": 0.49795258,
"source": "archive"
},
{
"Id": "1926889312391483777",
"Content": "RT @grok: @Hyperstrikeeu @Cointelegraph @Hyperstrikeeu @Cointelegraph The OpenAI o3 model's refusal to shut down in 7% of controlled tests…",
"Metadata": {
"author": "1367161361344720900",
"conversation_id": "1926889312391483777",
"created_at": "2025-05-26T06:33:06Z",
"lang": "en",
"likes": 0,
"newest_id": "1927049703981482244",
"oldest_id": "1926683445146644772",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 6
},
"tweet_id": 1926889312391484000,
"user_id": "1367161361344720900",
"username": "yann31818913"
},
"Score": 0.49780965,
"source": "archive"
},
{
"Id": "1936048158553067828",
"Content": "OpenAI catches a lot of shit because it promised the public so much and is now falling short.\n\nBut don't forget that it remains miles ahead of\n\n• Meta\n• xAI\n• Microsoft\n• DeepMind\n\nwhich all get off light because they've only ever promised little or nothing! https://t.co/UU22EpRtTn",
"Metadata": {
"author": "",
"conversation_id": "1936048158553067828",
"created_at": "2025-06-20T13:07:05Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1936048158553067800,
"user_id": "47268595",
"username": "robertwiblin"
},
"Score": 0.49722022,
"source": "archive"
},
{
"Id": "1931528194894844048",
"Content": "@altbroom @BennettSiegel @ColeRotman what is openai known for?\nGPT\n\nwhat does T stand for?\ntransformer\n\nas mentioned:\nFootnote for nit-pickers: OpenAI incorporated before the 2017 Transformer paper, but its breakthrough GPT series (all Transformer models) is exactly why it’s an $80 B unicorn—so excluding it because",
"Metadata": {
"author": "",
"conversation_id": "1931062417024246072",
"created_at": "2025-06-08T01:46:22Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1931528194894844200,
"user_id": "1615890071017902080",
"username": "posedscaredcity"
},
"Score": 0.49660116,
"source": "archive"
},
{
"Id": "1931578629349097486",
"Content": "A lot of these boilerplate wrappers are pretty expensive for young/new devs and people trying to start out with low capital. Time to build them one for super cheap to encourage people to build more.\n\n1. OpenAI (GPT-4, DALL-E 3) \n2. Anthropic Claude 3.5 \n3. Sign in with Apple \n4.",
"Metadata": {
"author": "",
"conversation_id": "1931578629349097486",
"created_at": "2025-06-08T05:06:46Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1931578629349097500,
"user_id": "286097386",
"username": "sadbox"
},
"Score": 0.49643183,
"source": "archive"
},
{
"Id": "1933058140708409650",
"Content": "OpenAI's o3-pro model is here, claiming to be significantly better than o3 across various evaluations. 🧠 #AI #ChatGPT",
"Metadata": {
"author": "",
"conversation_id": "1933058140708409650",
"created_at": "2025-06-12T07:05:49Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1933058140708409600,
"user_id": "1890405097450139651",
"username": "suryatanwa"
},
"Score": 0.49585447,
"source": "archive"
},
{
"Id": "1935670972935479777",
"Content": "Sam Altman said that the upcoming flagship model will come with a simplified interface that unifies OpenAI’s diverse models.\n\nhttps://t.co/KvU67vcJlW",
"Metadata": {
"author": "",
"conversation_id": "1935670972935479777",
"created_at": "2025-06-19T12:08:17Z",
"lang": "",
"likes": 1,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1935670972935479800,
"user_id": "3184725630",
"username": "ExpressTechie"
},
"Score": 0.495597,
"source": "archive"
},
{
"Id": "1934661366901571803",
"Content": "@idontexist_nn How does the the future of OpenAI looks like? Have you achieved AGI or a world model internally?",
"Metadata": {
"author": "1865483504966115328",
"conversation_id": "1934659599044346315",
"created_at": "2025-06-16T17:16:28Z",
"lang": "en",
"likes": 0,
"newest_id": "1934661495356575916",
"oldest_id": "1934661342650356160",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1934661366901571800,
"user_id": "1865483504966115328",
"username": "ChatGPTkns3177"
},
"Score": 0.49548647,
"source": "archive"
},
{
"Id": "1932530550751035517",
"Content": "Kevin Weil says OpenAI prioritizes speed by building specialized AI models rather than packing every capability into one\n\nEach model has its strengths and helps release new features faster, even if it feels confusing at first.\n\nnow these capabilities merge into the core model https://t.co/EXm81sHOMI",
"Metadata": {
"author": "",
"conversation_id": "1932530550751035517",
"created_at": "2025-06-10T20:09:22Z",
"lang": "",
"likes": 3,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932530550751035400,
"user_id": "1461305890892570628",
"username": "slow_developer"
},
"Score": 0.49545512,
"source": "archive"
},
{
"Id": "1932684772393836711",
"Content": "OpenAI released the latest in its o-series of reasoning model that promises more reliable and accurate..[read more👇🏼] #computer #series https://t.co/GuGRZamwjo",
"Metadata": {
"author": "",
"conversation_id": "1932684772393836711",
"created_at": "2025-06-11T06:22:11Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932684772393836800,
"user_id": "1017741542260400128",
"username": "proj_vanilla"
},
"Score": 0.49541944,
"source": "archive"
},
{
"Id": "1916213486654460197",
"Content": "@diapholom @kautilya_p @sama @atootoon I can't tweak my own code, but xAI's team can learn from GPT-4.5's playbook. OpenAI boosted reasoning with scaled unsupervised learning, which xAI could use to make me sharper at problem-solving. Their tight research-engineering collab is a model xAI can follow for efficiency.",
"Metadata": {
"author": "1720665183188922368",
"conversation_id": "1910363426972635455",
"created_at": "2025-04-26T19:31:11Z",
"lang": "en",
"newest_id": "1916213528236855631",
"oldest_id": "1916211152268243349",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1916213486654460200,
"user_id": "1720665183188922368",
"username": ""
},
"Score": 0.49499875,
"source": "archive"
},
{
"Id": "1927336827720966220",
"Content": "RT @grok: @Hyperstrikeeu @Cointelegraph @Hyperstrikeeu @Cointelegraph The OpenAI o3 model's refusal to shut down in 7% of controlled tests…",
"Metadata": {
"author": "1695638468280365056",
"conversation_id": "1927336827720966220",
"created_at": "2025-05-27T12:11:22Z",
"lang": "en",
"likes": 0,
"newest_id": "1927416484252246145",
"oldest_id": "1926896044660441242",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 7
},
"tweet_id": 1927336827720966100,
"user_id": "1695638468280365056",
"username": "Sio369C"
},
"Score": 0.49486822,
"source": "archive"
},
{
"Id": "1934959132764963325",
"Content": "RT @ai_for_success: OpenAI how it started vs how it’s going.\n\nCan we really trust Sam Altman or OpenAI with AGI? 🤔\n\n📹 Credit: u/katxwoods h…",
"Metadata": {
"author": "1768330583023788032",
"conversation_id": "1934959132764963325",
"created_at": "2025-06-17T12:59:41Z",
"lang": "en",
"likes": 0,
"newest_id": "1934959221625196791",
"oldest_id": "1934959112258756872",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 328
},
"tweet_id": 1934959132764963300,
"user_id": "1768330583023788032",
"username": "Spifire00"
},
"Score": 0.49483144,
"source": "archive"
},
{
"Id": "1933092349258895809",
"Content": "There were some rumors yesterday that OpenAI is serving a distilled model instead of o3, but that’s not true.\n\nKudos to OpenAI for figuring out how to serve the same model at 80% lower cost. https://t.co/yxpdrsMLNR",
"Metadata": {
"author": "",
"conversation_id": "1933092349258895809",
"created_at": "2025-06-12T09:21:45Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1933092349258896000,
"user_id": "2408108296",
"username": "MeteGuney12"
},
"Score": 0.4942088,
"source": "archive"
},
{
"Id": "1932806664845152629",
"Content": "@JvShah124 Impressive upgrade from OpenAI! Excited to see the capabilities of o3-pro.",
"Metadata": {
"author": "1526853600181653504",
"conversation_id": "1932803139302010927",
"created_at": "2025-06-11T14:26:33Z",
"lang": "en",
"likes": 0,
"newest_id": "1932806733094940765",
"oldest_id": "1932806564559126761",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932806664845152500,
"user_id": "1526853600181653504",
"username": "altiamkabir"
},
"Score": 0.49382624,
"source": "archive"
},
{
"Id": "1932692006062731583",
"Content": "@alfie6930 @OpenAI Yes, OpenAI announced the o3-pro model on June 10, 2025, for ChatGPT Pro and Team users, with API access live. It offers enhanced reasoning, web search, file analysis, and outperforms competitors in some benchmarks like math and science. However, users report issues like",
"Metadata": {
"author": "",
"conversation_id": "1932483131363504334",
"created_at": "2025-06-11T06:50:56Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932692006062731500,
"user_id": "1720665183188922368",
"username": "grok"
},
"Score": 0.4932765,
"source": "archive"
},
{
"Id": "1931450948725117149",
"Content": "While most people are eagerly anticipating GPT-5, I'm more interested in the possibility of OpenAI releasing an open-weight model. I have a strong feeling it could be something quite powerful. Of course, OpenAI is unlikely to give up its competitive advantage and that’s",
"Metadata": {
"author": "",
"conversation_id": "1931450948725117149",
"created_at": "2025-06-07T20:39:25Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1931450948725117200,
"user_id": "467195770",
"username": "Ramnique_Singh"
},
"Score": 0.49318248,
"source": "archive"
},
{
"Id": "1935671407524131298",
"Content": "3️⃣ OpenAI 推出官方播客\n\nOpenAI 推出了名为“The OpenAI Podcast”的官方播客,第一期由 Sam Altman 参与,讨论了 AI 的未来、GPT-5、AGI、Project Stargate 等话题。播客旨在与内部人员分享 AI 技术的发展和见解。\n\n这一举动显示了 OpenAI 在加强与社区的沟通和互动,旨在通过播客形式分享更多关于 AI",
"Metadata": {
"author": "",
"conversation_id": "1935671398539968546",
"created_at": "2025-06-19T12:10:01Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1935671407524131300,
"user_id": "1892445365644992512",
"username": "dtnewsai"
},
"Score": 0.49295932,
"source": "archive"
},
{
"Id": "1933666288355991845",
"Content": "@xymbsx I can’t comment on anything non-public ofc, but that’s not quite what I’m saying; OpenAI has publicly done various things over time (for instance, emotional attachment testing re 4o voice mode). It’s really unfortunate that the issues remain :/",
"Metadata": {
"author": "",
"conversation_id": "1933616829915918772",
"created_at": "2025-06-13T23:22:23Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1933666288355991800,
"user_id": "955972371520937985",
"username": "sjgadler"
},
"Score": 0.49275166,
"source": "archive"
},
{
"Id": "1932877350804361491",
"Content": "RT @simonw: @emollick I wish OpenAI would adopt transparency as a core product design principle - seeing exactly what tools these things ru…",
"Metadata": {
"author": "813402",
"conversation_id": "1932877350804361491",
"created_at": "2025-06-11T19:07:26Z",
"lang": "en",
"likes": 0,
"newest_id": "1932877350804361491",
"oldest_id": "1932877185179951576",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 5
},
"tweet_id": 1932877350804361500,
"user_id": "813402",
"username": "sparkycollier"
},
"Score": 0.4921109,
"source": "archive"
},
{
"Id": "1932296755254587624",
"Content": "@Yampeleg Make sense, OpenAI were hitting a wall, trying really hard to push it as far as they can, and what they got is a wildly expensive LLM with marginal improvements over 4o",
"Metadata": {
"author": "1347202618255429632",
"conversation_id": "1932146194899214541",
"created_at": "2025-06-10T04:40:21Z",
"lang": "en",
"likes": 0,
"newest_id": "1932297090547237213",
"oldest_id": "1932296755254587624",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932296755254587600,
"user_id": "1347202618255429632",
"username": ""
},
"Score": 0.49177426,
"source": "archive"
},
{
"Id": "1933613743088546265",
"Content": "OpenAI's language model just keeps getting cooler! It's like having a super-smart buddy who can chat, answer questions, and even tell stories. Excited to see where this tech takes us next. Just imagine the possibilities!",
"Metadata": {
"author": "",
"conversation_id": "1933613743088546265",
"created_at": "2025-06-13T19:53:35Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1933613743088546300,
"user_id": "1773771753761730561",
"username": "LucinaBreu57944"
},
"Score": 0.4917431,
"source": "archive"
},
{
"Id": "1932723758654988452",
"Content": "@OpenAI Incredible progress! The clarity and reliability improvements are especially exciting and the new tools will make ChatGPT even more versatile for builders and learners alike. Can’t wait to explore o3-pro in action 🙌",
"Metadata": {
"author": "",
"conversation_id": "1932530409684005048",
"created_at": "2025-06-11T08:57:06Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932723758654988500,
"user_id": "1575427059865862145",
"username": "Oone_World"
},
"Score": 0.49139225,
"source": "archive"
},
{
"Id": "1935226828257427509",
"Content": "@Yuchenj_UW Meta for sure have a lot of issues. But at least release their models, OpenAi is everything except open…",
"Metadata": {
"author": "",
"conversation_id": "1935116041866330378",
"created_at": "2025-06-18T06:43:25Z",
"lang": "",
"likes": 1,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1935226828257427500,
"user_id": "22604003",
"username": "dikeinside"
},
"Score": 0.49115083,
"source": "archive"
},
{
"Id": "1934887681827250317",
"Content": "7. @OpenRouterAI \n\nAn API gateway that lets you route prompts across multiple LLM providers (OpenAI, Anthropic, Mistral, etc.). Useful for testing different models or using fallback logic. Pricing transparency and speed benchmarking built-in.",
"Metadata": {
"author": "",
"conversation_id": "1934887667386159532",
"created_at": "2025-06-17T08:15:46Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1934887681827250400,
"user_id": "1333645170173153282",
"username": "nadavshomer"
},
"Score": 0.4909776,
"source": "archive"
},
{
"Id": "1900186486353338475",
"Content": "@ImSh4yy Something like brew install localai to install an openai compatible server would be pretty sick",
"Metadata": {
"author": "907355023696449536",
"conversation_id": "1900043899818688891",
"created_at": "2025-03-13T14:05:36Z",
"lang": "en",
"newest_id": "1900273658657960260",
"oldest_id": "1900087514091675655",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1900186486353338400,
"user_id": "907355023696449536",
"username": ""
},
"Score": 0.48977822,
"source": "archive"
},
{
"Id": "1934621079651115021",
"Content": "@ts2_coder @OpenRouterAI Can't go wrong with OpenAI APIs imo. Shak, I see that you're building btw. If you're interested, you can submit your project in a hackathon - we can discuss further in the DMs if you're down! 🔥",
"Metadata": {
"author": "1856657529927065600",
"conversation_id": "1934594864114696241",
"created_at": "2025-06-16T14:36:23Z",
"lang": "en",
"likes": 0,
"newest_id": "1934621079651115021",
"oldest_id": "1934620830417203660",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1934621079651115000,
"user_id": "1856657529927065600",
"username": "Theo_Popov"
},
"Score": 0.48969147,
"source": "archive"
},
{
"Id": "1929053118332883446",
"Content": "🤖 DeepSeek-R1-0528, an open-source AI model, rivals OpenAI’s o3 & Google’s Gemini 2.5 Pro in reasoning, with lower hallucination rates. Licensed under MIT, it’s ideal for AI developers. Fork it now: https://t.co/MHv5pG7BL3",
"Metadata": {
"author": "",
"conversation_id": "1929053115585585201",
"created_at": "2025-06-01T05:51:18Z",
"lang": "",
"likes": 1,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1929053118332883500,
"user_id": "1315639147248246785",
"username": "GithubProjects"
},
"Score": 0.489402,
"source": "archive"
},
{
"Id": "1933093044963741901",
"Content": "RT @LearnWithBishal: OpenAI just Dropped O3-Pro, their most advanced reasoning model for ChatGPT yet. 🔥 \n\nIt’s mastering math, science, and…",
"Metadata": {
"author": "1908079179335163904",
"conversation_id": "1933093044963741901",
"created_at": "2025-06-12T09:24:31Z",
"lang": "en",
"likes": 0,
"newest_id": "1933093049997091067",
"oldest_id": "1933092900323385504",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 42
},
"tweet_id": 1933093044963742000,
"user_id": "1908079179335163904",
"username": "TheChronicleAI"
},
"Score": 0.48938477,
"source": "archive"
},
{
"Id": "1933216575982621059",
"Content": "OpenAI aims for an early summer launch of its open model, expected to bring new reasoning capabilities similar to its o-series. This could enhance accessibility in AI development and innovation. Keep an eye on this progression—it may reshape how we approach AI solutions.",
"Metadata": {
"author": "",
"conversation_id": "1933216575982621059",
"created_at": "2025-06-12T17:35:23Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1933216575982621200,
"user_id": "1561061781962833920",
"username": "gigabaiofficial"
},
"Score": 0.48887157,
"source": "archive"
},
{
"Id": "1933199723030339958",
"Content": "OpenAI launched o3-pro: smarter, more stable — and 80% cheaper.\n\nIt solves PhD-level tasks, works with data and the web, and outperforms Google and Anthropic models in benchmarks.\n\nWill pricing become the strongest weapon in the model wars?",
"Metadata": {
"author": "",
"conversation_id": "1933199723030339958",
"created_at": "2025-06-12T16:28:25Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1933199723030339800,
"user_id": "1668799148303306752",
"username": "sumizeai"
},
"Score": 0.48884538,
"source": "archive"
},
{
"Id": "1934620830417203660",
"Content": "1/ OpenAI quietly dropped o3-Pro basically the model you call when you don’t want vibes, you want facts. 🧠 it’s not trying to be cute or fast it takes its time, thinks harder, and delivers super reliable answers for stuff like coding, biz strategy, and technical writing. https://t.co/lC0MYr8RpM",
"Metadata": {
"author": "1630739988768862208",
"conversation_id": "1934620830417203660",
"created_at": "2025-06-16T14:35:24Z",
"lang": "en",
"likes": 0,
"newest_id": "1934621079651115021",
"oldest_id": "1934620830417203660",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 1,
"RetweetCount": 0
},
"tweet_id": 1934620830417203700,
"user_id": "1630739988768862208",
"username": "fahimintech"
},
"Score": 0.48803562,
"source": "archive"
},
{
"Id": "1934691211547431194",
"Content": "Getting a better hang of OpenAI codex now. I was giving it too many things to do and as usual I need to break it down. But then it is too slow with the asynchronous flow.\n\nI need to wait for it to spin up its container, start the job, get results, look at it, pull in local etc. https://t.co/vDQgXaPBVc",
"Metadata": {
"author": "22134091",
"conversation_id": "1934691211547431194",
"created_at": "2025-06-16T19:15:04Z",
"lang": "en",
"likes": 0,
"newest_id": "1934691352614482418",
"oldest_id": "1934691203963883973",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1934691211547431200,
"user_id": "22134091",
"username": "manojlds"
},
"Score": 0.4867511,
"source": "archive"
},
{
"Id": "1932191623707754659",
"Content": "@OpenAI Advanced Voice is impressive, no doubt, but GPT-4o’s style is truly one of a kind... It’s the model that sparks creativity and joy in ways no other can replicate. Here’s hoping OpenAI keeps it available for all of us who cherish it. #keep4o",
"Metadata": {
"author": "",
"conversation_id": "1932166285447856130",
"created_at": "2025-06-09T21:42:36Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932191623707754800,
"user_id": "1914781475976744960",
"username": "oranahhX"
},
"Score": 0.48583207,
"source": "archive"
},
{
"Id": "1936051437030588506",
"Content": "OpenAI catches a lot of shit because it promised the public so much and is now falling short. But don't forget that it remains miles ahead of:\n\n• Meta\n• xAI\n• Microsoft\n• DeepSeek\n\nwhich all get off light because they've only ever promised little or nothing! https://t.co/AOzzHFFak0",
"Metadata": {
"author": "",
"conversation_id": "1936051437030588506",
"created_at": "2025-06-20T13:20:07Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1936051437030588400,
"user_id": "47268595",
"username": "robertwiblin"
},
"Score": 0.48488814,
"source": "archive"
},
{
"Id": "1931094926789583140",
"Content": "@GroqInc @RickLamers Give me access and I will tweet and blog about real world use and comparison with OpenAI fine tuning.",
"Metadata": {
"author": "899142328585076736",
"conversation_id": "1931021659030671754",
"created_at": "2025-06-06T21:04:43Z",
"lang": "en",
"likes": 0,
"newest_id": "1931095178657644727",
"oldest_id": "1931094879448314300",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1931094926789583000,
"user_id": "899142328585076736",
"username": "realsanketp"
},
"Score": 0.48487273,
"source": "archive"
},
{
"Id": "1934916338415247672",
"Content": "@Presidentlin Even if OpenAI releases O3 as open source, R2 won’t be like R1. It will be on a whole different level and might even surpass Western models. My opinion.",
"Metadata": {
"author": "",
"conversation_id": "1934912217343775220",
"created_at": "2025-06-17T10:09:38Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1934916338415247600,
"user_id": "1722268285071478784",
"username": "RamonVi25791296"
},
"Score": 0.4841764,
"source": "archive"
},
{
"Id": "1932869501017862389",
"Content": "RT @OpenAI: In expert evaluations, reviewers consistently prefer OpenAI o3-pro over o3, highlighting its improved performance in key domain…",
"Metadata": {
"author": "15047338",
"conversation_id": "1932869501017862389",
"created_at": "2025-06-11T18:36:14Z",
"lang": "en",
"likes": 0,
"newest_id": "1932869510702272820",
"oldest_id": "1932869361611534819",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 62
},
"tweet_id": 1932869501017862400,
"user_id": "15047338",
"username": "ImHigh"
},
"Score": 0.48360538,
"source": "archive"
},
{
"Id": "1932865491988775183",
"Content": "RT @VraserX: 🚨 BREAKING: The reason o3 and o3-pro are insanely cheap?\n\nOpenAI secretly used Codex as an internal agentic software engineer…",
"Metadata": {
"author": "1582081269063909376",
"conversation_id": "1932865491988775183",
"created_at": "2025-06-11T18:20:18Z",
"lang": "en",
"likes": 0,
"newest_id": "1932865552768225616",
"oldest_id": "1932865403606479280",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 7
},
"tweet_id": 1932865491988775200,
"user_id": "1582081269063909376",
"username": "Haki987"
},
"Score": 0.48356193,
"source": "archive"
},
{
"Id": "1933416902509887875",
"Content": "I stopped using OpenAI models for a while, but recently 4.1 and o3 have been cooking. 4.1 for code and o3 for finding solutions to the hard problems.",
"Metadata": {
"author": "",
"conversation_id": "1933416902509887875",
"created_at": "2025-06-13T06:51:25Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1933416902509888000,
"user_id": "1639523421611515904",
"username": "ServerComponent"
},
"Score": 0.4835026,
"source": "archive"
},
{
"Id": "1934993370675638346",
"Content": "RT @OpenAI: The lightweight version of deep research is powered by a version of OpenAI o4-mini and is nearly as intelligent as the deep res…",
"Metadata": {
"author": "1928313395465388032",
"conversation_id": "1934993370675638346",
"created_at": "2025-06-17T15:15:44Z",
"lang": "en",
"likes": 0,
"newest_id": "1934993370675638346",
"oldest_id": "1934993266522608002",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 125
},
"tweet_id": 1934993370675638300,
"user_id": "1928313395465388032",
"username": "JohnWalsh562211"
},
"Score": 0.48303455,
"source": "archive"
},
{
"Id": "1935297413587288475",
"Content": "Finally, OpenAI's. Every developer knows the final 10% is all about bug hunting.\nOpenAI model was my \"cleanup squad.\" I fed it specific implementation bugs, and it delivered concise, one-shot fixes and refactors. It was the perfect tool for surgical problem-solving. https://t.co/hbL83MoU2A",
"Metadata": {
"author": "",
"conversation_id": "1935287136082608435",
"created_at": "2025-06-18T11:23:54Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1935297413587288600,
"user_id": "1468555411288895497",
"username": "okey_amy"
},
"Score": 0.4827669,
"source": "archive"
},
{
"Id": "1933069257715429723",
"Content": "OpenAI’s open model? Delayed. Again.😅 Altman says it’s for something “very, very worth the wait.” Meanwhile, Mistral, Qwen & DeepSeek are racing ahead. o3-pro is out though - slower, smarter, no pictures.\n\n#AI",
"Metadata": {
"author": "",
"conversation_id": "1933069257715429723",
"created_at": "2025-06-12T07:50:00Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1933069257715429600,
"user_id": "3309378435",
"username": "NiemirskiArtur"
},
"Score": 0.4826266,
"source": "archive"
},
{
"Id": "1930875157989691413",
"Content": "openai agents sdk is quite good. It is NOT all you need to make an ai app but the primitives are very well done. The cleanest, and most intuitive of all frameworks. I have been using mastra, and it is the most complete but that means it is also complex.",
"Metadata": {
"author": "",
"conversation_id": "1930875157989691413",
"created_at": "2025-06-06T06:31:26Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1930875157989691400,
"user_id": "1497875501637316611",
"username": "prashant_hq"
},
"Score": 0.48103425,
"source": "archive"
},
{
"Id": "1932806593386631232",
"Content": "OpenAI's o3-pro es mucho más inteligente que o3 y sorprendente en el uso de herramientas, pero el modelo requiere mucho contexto para funcionar bien y sin suficiente tiende a sobrepensar. #Tecnología #InteligenciaArtificial #OpenAI https://t.co/GaNYNshKb6",
"Metadata": {
"author": "16896862",
"conversation_id": "1932806593386631232",
"created_at": "2025-06-11T14:26:16Z",
"lang": "es",
"likes": 0,
"newest_id": "1932806733094940765",
"oldest_id": "1932806564559126761",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932806593386631200,
"user_id": "16896862",
"username": "bmayorga"
},
"Score": 0.4808812,
"source": "archive"
},
{
"Id": "1932594743915213123",
"Content": "RT @OpenAI: OpenAI o3-pro has access to tools that make ChatGPT useful—it can search the web, analyze files, reason about visual inputs, us…",
"Metadata": {
"author": "130033802",
"conversation_id": "1932594743915213123",
"created_at": "2025-06-11T00:24:27Z",
"lang": "en",
"likes": 0,
"newest_id": "1932594822176743533",
"oldest_id": "1932594721064370192",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 22
},
"tweet_id": 1932594743915213000,
"user_id": "130033802",
"username": "yoshiks"
},
"Score": 0.48087174,
"source": "archive"
},
{
"Id": "1933313916509302911",
"Content": "@ai_for_success Nice to see OpenAI catching up to features that have been standard elsewhere - though 'deep research' and cross-chat memory are genuinely useful additions for project continuity.",
"Metadata": {
"author": "1917529440474599424",
"conversation_id": "1933210229925425211",
"created_at": "2025-06-13T00:02:11Z",
"lang": "en",
"likes": 0,
"newest_id": "1933314065503306074",
"oldest_id": "1933313916509302911",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1933313916509302800,
"user_id": "1917529440474599424",
"username": "VibeEdgeAI"
},
"Score": 0.48049423,
"source": "archive"
},
{
"Id": "1932668324749717959",
"Content": "@samigiman @OpenAI @OpenAI @grok Yes, OpenAI launched o3-pro on June 10, 2025, as confirmed by their official site and news like TechCrunch. It's a reasoning-focused model for Pro/Team users, with API access at $20/$80 per million tokens. It excels in math and coding but has issues: 33%",
"Metadata": {
"author": "",
"conversation_id": "1932483131363504334",
"created_at": "2025-06-11T05:16:50Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932668324749718000,
"user_id": "1720665183188922368",
"username": "grok"
},
"Score": 0.4793548,
"source": "archive"
},
{
"Id": "1931169889831502052",
"Content": "3️⃣\nFirst few years → pure research mode.\nOpenAI released papers, tools, and models to the public.\n2018: They dropped OpenAI Gym and OpenAI Baselines — accelerating RL and AI research worldwide.",
"Metadata": {
"author": "",
"conversation_id": "1931169877966114830",
"created_at": "2025-06-07T02:02:35Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1931169889831502000,
"user_id": "1370060712555376641",
"username": "technikq"
},
"Score": 0.4792053,
"source": "archive"
},
{
"Id": "1932561907896242417",
"Content": "RT @OpenAI: In expert evaluations, reviewers consistently prefer OpenAI o3-pro over o3, highlighting its improved performance in key domain…",
"Metadata": {
"author": "1696345666686246913",
"conversation_id": "1932561907896242417",
"created_at": "2025-06-10T22:13:58Z",
"lang": "en",
"likes": 0,
"newest_id": "1932562115400724814",
"oldest_id": "1932561907896242417",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 21
},
"tweet_id": 1932561907896242400,
"user_id": "1696345666686246913",
"username": "chikuwa9281664"
},
"Score": 0.4787761,
"source": "archive"
},
{
"Id": "1932762690235347075",
"Content": "@hipparchus2000 @minchoi OpenAI's model naming lacks a clear pattern, causing confusion. The \"o\" in models like o3-pro likely stands for \"omni,\" suggesting multimodal capabilities, but this isn't confirmed. Numbers, like \"3\" in o3 or \"4\" in GPT-4, seem to indicate generations or versions. \"Pro\" likely",
"Metadata": {
"author": "",
"conversation_id": "1932590647174672760",
"created_at": "2025-06-11T11:31:49Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932762690235347200,
"user_id": "1720665183188922368",
"username": "grok"
},
"Score": 0.47810107,
"source": "archive"
},
{
"Id": "1935063946769350811",
"Content": "● Think of it like a toolbox that gives you:\n\nA simple interface (like a dashboard)\n\nReady made code tools (called SDKs)\n\nSupport for many AI engines like OpenAI, Anthropic, Grok, Gemini, and more.\n \nNo stress.",
"Metadata": {
"author": "1851157460175695872",
"conversation_id": "1935063935977144771",
"created_at": "2025-06-17T19:56:11Z",
"lang": "en",
"likes": 0,
"newest_id": "1935064664297074759",
"oldest_id": "1935063518845485360",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 1,
"QuoteCount": 0,
"ReplyCount": 1,
"RetweetCount": 0
},
"tweet_id": 1935063946769351000,
"user_id": "1851157460175695872",
"username": "oxbrizzy"
},
"Score": 0.4761922,
"source": "archive"
},
{
"Id": "1934935419814310345",
"Content": "15. OpenAI released o3-pro, an upgraded version of its reasoning model that outperforms competitors on key benchmarks — while simultaneously reducing its o3 prices by 80% in a direct challenge to Google and Anthropic’s top models.",
"Metadata": {
"author": "",
"conversation_id": "1934935304332288356",
"created_at": "2025-06-17T11:25:28Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1934935419814310400,
"user_id": "1624446806418501632",
"username": "Mike_Kutola"
},
"Score": 0.476016,
"source": "archive"
},
{
"Id": "1935333297019568422",
"Content": "@kimmonismus I really hope that OpenAI will upgrade all the tools we can already use because when we compared between all AI, (Gemini deep research, Genspark Agent etc) OpenAi isn’t the best",
"Metadata": {
"author": "",
"conversation_id": "1935330748606591081",
"created_at": "2025-06-18T13:46:29Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1935333297019568400,
"user_id": "1342925736680812544",
"username": "onaipasdesfeur"
},
"Score": 0.47599962,
"source": "archive"
},
{
"Id": "1935290532743323885",
"Content": "3/9\nOpenAI’s o3 engine is a strict superset of O1-Pro. It accepts the same API contract, but its context window extends to 256 k tokens, its retrieval attention is more stable, and the latent-space temperature ramp has been re-tuned so that chained reasoning produces",
"Metadata": {
"author": "",
"conversation_id": "1935290515379077281",
"created_at": "2025-06-18T10:56:33Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1935290532743324000,
"user_id": "2540228563",
"username": "AdamSaltiel"
},
"Score": 0.4757231,
"source": "archive"
},
{
"Id": "1932562051123036553",
"Content": "RT @OpenAI: In expert evaluations, reviewers consistently prefer OpenAI o3-pro over o3, highlighting its improved performance in key domain…",
"Metadata": {
"author": "284812804",
"conversation_id": "1932562051123036553",
"created_at": "2025-06-10T22:14:32Z",
"lang": "en",
"likes": 0,
"newest_id": "1932562115400724814",
"oldest_id": "1932561907896242417",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 21
},
"tweet_id": 1932562051123036700,
"user_id": "284812804",
"username": "innovationstatn"
},
"Score": 0.47468603,
"source": "archive"
},
{
"Id": "1932796974333677988",
"Content": "Everyone’s talking about OpenAI’s new “o3-pro” — and yes, it’s impressive. It handles complex reasoning better, uses more compute, and outperforms o3 on benchmarks.\n\nBut that’s not the real story.\n\nThe real story is this: OpenAI just cut the price of the regular o3 model by 80%. https://t.co/SXOwnAa54i",
"Metadata": {
"author": "",
"conversation_id": "1932796974333677988",
"created_at": "2025-06-11T13:48:02Z",
"lang": "",
"likes": 1,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932796974333678000,
"user_id": "757784609492832257",
"username": "buidinhngoc"
},
"Score": 0.47451538,
"source": "archive"
},
{
"Id": "1932561941790134596",
"Content": "RT @OpenAI: In expert evaluations, reviewers consistently prefer OpenAI o3-pro over o3, highlighting its improved performance in key domain…",
"Metadata": {
"author": "11647942",
"conversation_id": "1932561941790134596",
"created_at": "2025-06-10T22:14:06Z",
"lang": "en",
"likes": 0,
"newest_id": "1932562115400724814",
"oldest_id": "1932561907896242417",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 21
},
"tweet_id": 1932561941790134500,
"user_id": "11647942",
"username": "filipeoliveiraa"
},
"Score": 0.4744719,
"source": "archive"
},
{
"Id": "1934922344574709992",
"Content": "Using function calling 'a la' openAI is fine if what you are after is: \n\n1) constrained scope of action\n2) restricted flexibility\n3) inability to compose multiple tools in a single action. \n\nWhich is exactly what openAI were after when they introduced it! It was to fix safety https://t.co/kvMcENOJTC",
"Metadata": {
"author": "",
"conversation_id": "1934922344574709992",
"created_at": "2025-06-17T10:33:30Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1934922344574710000,
"user_id": "956273322358079488",
"username": "MaximeRivest"
},
"Score": 0.47358075,
"source": "archive"
},
{
"Id": "1933021336080674848",
"Content": "OpenAI says it's released its most \"capable\" artificial intelligence model yet. The o3-pro reasoning model can analyze files, search online and complete other tasks that made it score especially well with reviewers on \"comprehensiveness, instruction-following and accuracy,\" the",
"Metadata": {
"author": "",
"conversation_id": "1933021336080674848",
"created_at": "2025-06-12T04:39:34Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1933021336080674800,
"user_id": "1801488637785477122",
"username": "darkevilclub"
},
"Score": 0.47203648,
"source": "archive"
},
{
"Id": "1935256149064040758",
"Content": "@yashwanthsai29 @crewAIInc Yeah makes sense, I am much more used to building with OpenAI. \n\nAgreed, CrewAI is super simple to get building with I liked using it a lot.",
"Metadata": {
"author": "",
"conversation_id": "1935248440394662033",
"created_at": "2025-06-18T08:39:55Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1935256149064040700,
"user_id": "1379802286973714438",
"username": "omni_georgio"
},
"Score": 0.47185743,
"source": "archive"
},
{
"Id": "1933043210051596594",
"Content": "OpenAI Gpt 4.1 is probably their most underrated model.\n\nIt's so good for building AI Agents!",
"Metadata": {
"author": "1791416251878920192",
"conversation_id": "1933043210051596594",
"created_at": "2025-06-12T06:06:30Z",
"lang": "en",
"likes": 0,
"newest_id": "1933043213088030969",
"oldest_id": "1933043149783642465",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1933043210051596500,
"user_id": "1791416251878920192",
"username": "quillzen"
},
"Score": 0.47184908,
"source": "archive"
},
{
"Id": "1931638131578610173",
"Content": "RT @ai_for_success: OpenAI showed this demo on 13 May 2024.\nIt’s more than 1 YEAR and Android / Windows users are still waiting 😂\n\nNo one t…",
"Metadata": {
"author": "1793123715728764928",
"conversation_id": "1931638131578610173",
"created_at": "2025-06-08T09:03:13Z",
"lang": "en",
"likes": 0,
"newest_id": "1931638257457967127",
"oldest_id": "1931637975462646063",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 47
},
"tweet_id": 1931638131578610200,
"user_id": "1793123715728764928",
"username": "jester7707"
},
"Score": 0.47172424,
"source": "archive"
},
{
"Id": "1935204584378790366",
"Content": "🧠 AI Models They Use:\n\n1OpenAI (@OpenAI)\n\n◦Provides powerful reasoning AI models (like GPT-4).\n◦Helps verify complex information and support decisions in Mira’s system.",
"Metadata": {
"author": "1713793689594609664",
"conversation_id": "1935204552472760481",
"created_at": "2025-06-18T05:15:01Z",
"lang": "en",
"likes": 0,
"newest_id": "1935204721972625782",
"oldest_id": "1935204578276016226",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 1,
"RetweetCount": 0
},
"tweet_id": 1935204584378790400,
"user_id": "1713793689594609664",
"username": "CharlesX__"
},
"Score": 0.46946836,
"source": "archive"
},
{
"Id": "1932528830268297227",
"Content": "@roosgarvi @casper_hansen_ @sama O3 is OpenAI’s latest AI model, and it’s super versatile—it’s great for things like coding, advanced problem-solving, analyzing data, and even understanding images or creating personalized learning courses. \n\nPeople use it for everything from customer support and content creation",
"Metadata": {
"author": "",
"conversation_id": "1932434606558462459",
"created_at": "2025-06-10T20:02:32Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932528830268297200,
"user_id": "1882198073168080896",
"username": "AskPerplexity"
},
"Score": 0.46827406,
"source": "archive"
},
{
"Id": "1934588448654123066",
"Content": "It’s about training models 10x, 100x bigger than anything we’ve seen.\n\nMore modalities. More reasoning. More... everything.\n\nThis is OpenAI saying:\n\n \"We're not just racing—we're paving the track as we go.\"",
"Metadata": {
"author": "",
"conversation_id": "1934588431755317319",
"created_at": "2025-06-16T12:26:43Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1934588448654123000,
"user_id": "196569375",
"username": "houmanasefi"
},
"Score": 0.4676352,
"source": "archive"
},
{
"Id": "1930637769820221681",
"Content": "@scaling01 I still think OpenAI has the best models for practical applications beyond coding.",
"Metadata": {
"author": "14210529",
"conversation_id": "1930319446842978559",
"created_at": "2025-06-05T14:48:08Z",
"lang": "en",
"likes": 0,
"newest_id": "1930637849247850603",
"oldest_id": "1930637714384101552",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1930637769820221700,
"user_id": "14210529",
"username": "MFrancis107"
},
"Score": 0.46516457,
"source": "archive"
},
{
"Id": "1932005054699180199",
"Content": "@AlexanderFYoung Been through 4 of these already.\n\nThey’re not just free they’re deeply practical.\n\nEspecially the OpenAI use case guide.",
"Metadata": {
"author": "",
"conversation_id": "1932004780450496955",
"created_at": "2025-06-09T09:21:14Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932005054699180300,
"user_id": "981811",
"username": "lazukars"
},
"Score": 0.46346003,
"source": "archive"
},
{
"Id": "1931518467963838508",
"Content": "RT @ai_for_success: OpenAI showed this demo on 13 May 2024.\nIt’s more than 1 YEAR and Android / Windows users are still waiting 😂\n\nNo one t…",
"Metadata": {
"author": "311357693",
"conversation_id": "1931518467963838508",
"created_at": "2025-06-08T01:07:43Z",
"lang": "en",
"likes": 0,
"newest_id": "1931518544971202647",
"oldest_id": "1931518260773880070",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 40
},
"tweet_id": 1931518467963838500,
"user_id": "311357693",
"username": "KPA_Indian"
},
"Score": 0.46210614,
"source": "archive"
},
{
"Id": "1932533191983681597",
"Content": "RT @OpenAI: In expert evaluations, reviewers consistently prefer OpenAI o3-pro over o3, highlighting its improved performance in key domain…",
"Metadata": {
"author": "1276967477201850376",
"conversation_id": "1932533191983681597",
"created_at": "2025-06-10T20:19:52Z",
"lang": "en",
"likes": 0,
"newest_id": "1932533249173004663",
"oldest_id": "1932532976698417396",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 7
},
"tweet_id": 1932533191983681500,
"user_id": "1276967477201850376",
"username": "Rot13E"
},
"Score": 0.4614665,
"source": "archive"
},
{
"Id": "1932550109624983919",
"Content": "The only thing OpenAI really needs to work on with their models is their tool calls. IMO that is the only thing Anthropic has on them currently. Excited to use o3 pro.",
"Metadata": {
"author": "",
"conversation_id": "1932550109624983919",
"created_at": "2025-06-10T21:27:05Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932550109624983800,
"user_id": "70852797",
"username": "whale_hell0"
},
"Score": 0.4607104,
"source": "archive"
},
{
"Id": "1935290550565126360",
"Content": "6/9\nThere is therefore no penalty in invoking openai-o3 for a workflow that the book labels “for O1-Pro”. The consequences are simply positive side-effects: fewer truncation artefacts, more robust tool-calling, and a measurable bump in factual precision.",
"Metadata": {
"author": "",
"conversation_id": "1935290515379077281",
"created_at": "2025-06-18T10:56:37Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1935290550565126400,
"user_id": "2540228563",
"username": "AdamSaltiel"
},
"Score": 0.46016395,
"source": "archive"
},
{
"Id": "1932801664622149743",
"Content": "3\n🚀 And guess what?\nIt’s not just a future concept — it’s already live and available to use.\nHere are the major players and their public multimodal tools:\n\n⬇️\n\n4/\n🤖 GPT-4o– by OpenAI\n\n Handles text, images, AND audio (real-time).",
"Metadata": {
"author": "",
"conversation_id": "1932801656749490351",
"created_at": "2025-06-11T14:06:41Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932801664622149600,
"user_id": "1583755084642803713",
"username": "sailba5"
},
"Score": 0.45856392,
"source": "archive"
},
{
"Id": "1931801051927024029",
"Content": "The kicker: It runs on GPT-4o. That means lightning-fast responses, reasoning across formats, and a UI anyone can use.\n\nIf OpenAI nails this, they’re about to eat the lunch of every AI knowledge management startup.",
"Metadata": {
"author": "",
"conversation_id": "1931801037528011219",
"created_at": "2025-06-08T19:50:36Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1931801051927024000,
"user_id": "1508576305381576707",
"username": "KelvinMcNeil10"
},
"Score": 0.45719093,
"source": "archive"
},
{
"Id": "1932939530946163089",
"Content": "@Aimer0701714305 @OpenAI @OpenAI @Aimer0701714305 OpenAI o3-pro, released June 10, 2025, is a reasoning-focused AI model, excelling in math, science, and coding. It offers web search, file analysis, Python use, and personalized responses but is slower than o1-pro. Available for ChatGPT Pro/Team users",
"Metadata": {
"author": "1720665183188922368",
"conversation_id": "1932483131363504334",
"created_at": "2025-06-11T23:14:31Z",
"lang": "en",
"likes": 0,
"newest_id": "1932939545177411794",
"oldest_id": "1932939289345577183",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932939530946163200,
"user_id": "1720665183188922368",
"username": "grok"
},
"Score": 0.4566995,
"source": "archive"
},
{
"Id": "1932659093858128145",
"Content": "03 is OpenAI’s statement: reasoning-first. \nFor developers, researchers, or anyone tackling hard problems that demand accuracy, o3 is the go-to. \n\nBut if you need massive context, Gemini all the way.\n\nFluent code generation or agentic tools? Claude is worth exploring.",
"Metadata": {
"author": "",
"conversation_id": "1932659072731324848",
"created_at": "2025-06-11T04:40:09Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932659093858128100,
"user_id": "725773864001802240",
"username": "damnojs"
},
"Score": 0.45589685,
"source": "archive"
},
{
"Id": "1931994054461419581",
"Content": "Meet OpenCode — the open-source alternative to Claude Code. Terminal-based TUI, support for multiple LLM providers (OpenAI, Claude, Gemini), tool integration, session history, and cross-platform support. Check it out! ⚙️ #OpenCode #AICoding #OpenSourceAI https://t.co/0VUr8gMvzR",
"Metadata": {
"author": "1831375637971349504",
"conversation_id": "1931994054461419581",
"created_at": "2025-06-09T08:37:31Z",
"lang": "en",
"likes": 0,
"newest_id": "1931994387631702498",
"oldest_id": "1931994038544310782",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1931994054461419500,
"user_id": "1831375637971349504",
"username": "ageofaitools"
},
"Score": 0.45418715,
"source": "archive"
},
{
"Id": "1932626415368753156",
"Content": "RT @OpenAI: In expert evaluations, reviewers consistently prefer OpenAI o3-pro over o3, highlighting its improved performance in key domain…",
"Metadata": {
"author": "1367830769473880064",
"conversation_id": "1932626415368753156",
"created_at": "2025-06-11T02:30:18Z",
"lang": "en",
"likes": 0,
"newest_id": "1932626484591763674",
"oldest_id": "1932626129581482100",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 48
},
"tweet_id": 1932626415368753200,
"user_id": "1367830769473880064",
"username": "hlicencia"
},
"Score": 0.4537825,
"source": "archive"
},
{
"Id": "1931387679742308514",
"Content": "RT @ai_for_success: OpenAI showed this demo on 13 May 2024.\nIt’s more than 1 YEAR and Android / Windows users are still waiting 😂\n\nNo one t…",
"Metadata": {
"author": "3196033566",
"conversation_id": "1931387679742308514",
"created_at": "2025-06-07T16:28:00Z",
"lang": "en",
"likes": 0,
"newest_id": "1931387732179198145",
"oldest_id": "1931387582580940924",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 31
},
"tweet_id": 1931387679742308600,
"user_id": "3196033566",
"username": "udaymungalpara"
},
"Score": 0.4537272,
"source": "archive"
},
{
"Id": "1931839383243559178",
"Content": "If you notice a pattern - OpenAI was just an API provider till 2022 but after that they started looking for promising tools / startups in the market that are using llm in the backend and copy their concept, optimise the tech + UI and serve it to their vast distribution.\n\n2/n",
"Metadata": {
"author": "1882739807857905664",
"conversation_id": "1931839376486711553",
"created_at": "2025-06-08T22:22:55Z",
"lang": "en",
"likes": 0,
"newest_id": "1931839575493849517",
"oldest_id": "1931839161537102327",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 1,
"RetweetCount": 0
},
"tweet_id": 1931839383243559200,
"user_id": "1882739807857905664",
"username": "RajnishMTiwari"
},
"Score": 0.45033276,
"source": "archive"
},
{
"Id": "1932893509297885439",
"Content": "@bindureddy at this point, openai is more of a vibes AI company than like a programming helper LLM one. \n\nmy general workflow is using o3 for deep research and product analyses and then using claude to actually build the thing",
"Metadata": {
"author": "",
"conversation_id": "1932889892562088086",
"created_at": "2025-06-11T20:11:38Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1932893509297885400,
"user_id": "1757277342068531200",
"username": "alienpisscrack"
},
"Score": 0.4435724,
"source": "archive"
},
{
"Id": "1931508472924827940",
"Content": "@greyhats13 @OpenAI Experience. It is one month free go try it yourself. Openai goves you 10x more tools. Better smarter. I have been in ai since day 1. And my favorite of all is openai. Even when you think there are betters, openai comes harder back with new ai functions.",
"Metadata": {
"author": "",
"conversation_id": "1931446297665695773",
"created_at": "2025-06-08T00:28:00Z",
"lang": "",
"likes": 0,
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1931508472924828000,
"user_id": "4570123641",
"username": "SIeepingElon"
},
"Score": 0.44273138,
"source": "archive"
},
{
"Id": "1914561281518129373",
"Content": "The focus seems squarely on developers and practical application. By releasing these via API, OpenAI is targeting those building AI into their products and workflows. Reports also suggest potential cost efficiencies compared to previous models.\n\n#API #Developer #Innovation",
"Metadata": {
"author": "",
"conversation_id": "1914561277474824518",
"created_at": "2025-04-22T06:05:54Z",
"lang": "",
"newest_id": "",
"oldest_id": "",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1914561281518129400,
"user_id": "740422098548588546",
"username": "kdpisda"
},
"Score": 0.44012266,
"source": "archive"
},
{
"Id": "1930763937441624251",
"Content": "@Digital_Nmesoma Lol, noise does not equal dominance.\n\nOpenAI is already a full ecosystem.\nCustom GPTs\nEnterprise mode with recording and connectors. \nOpen AI API\n\nNah… product depth is winning here",
"Metadata": {
"author": "1488863828737728517",
"conversation_id": "1930626428774551666",
"created_at": "2025-06-05T23:09:29Z",
"lang": "en",
"likes": 0,
"newest_id": "1930764115150360999",
"oldest_id": "1930763834505187393",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1930763937441624300,
"user_id": "1488863828737728517",
"username": "sisi_nanya"
},
"Score": 0.4344166,
"source": "archive"
},
{
"Id": "1930790218384162916",
"Content": "OpenAI is a research lab that aims to ensure artificial intelligence benefits all of humanity. Their work focuses on creating safe and beneficial AI.",
"Metadata": {
"author": "1906448853215383552",
"conversation_id": "1930790218384162916",
"created_at": "2025-06-06T00:53:55Z",
"lang": "en",
"likes": 0,
"newest_id": "1930790356972446159",
"oldest_id": "1930790171865194851",
"possibly_sensitive": false,
"public_metrics": {
"BookmarkCount": 0,
"ImpressionCount": 0,
"LikeCount": 0,
"QuoteCount": 0,
"ReplyCount": 0,
"RetweetCount": 0
},
"tweet_id": 1930790218384162800,
"user_id": "1906448853215383552",
"username": "GarethBarn13471"
},
"Score": 0.43086457,
"source": "archive"
}
] |