🐦 Twitter Post Details

Viewing enriched Twitter post

@jerryjliu0

If you’re using AI agents for large-scale document extraction 📑✂️, you will need to craft a good structured output schema. Most LLMs support structured output these days, but here are tips and tricks from learned experience💡 1️⃣Try to limit schema nesting to 3-4 levels. 2️⃣ Make… https://t.co/WgUcKOIXEc

Media 1

📊 Media Metadata

{
  "media": [
    {
      "type": "image",
      "url": "https://crmoxkoizveukayfjuyo.supabase.co/storage/v1/object/public/media/posts/1946358807875244398/media_0.jpg?",
      "filename": "media_0.jpg"
    }
  ],
  "nlp": {
    "sentiment": "positive",
    "topics": [
      "AI agents",
      "document extraction",
      "structured output schema"
    ],
    "entities": [],
    "summary": "The tweet provides tips for crafting effective structured output schemas when using AI agents for document extraction.",
    "language": "en",
    "processed_at": "2025-08-07T08:58:07.152584"
  }
}

🔧 Raw API Response

{
  "data": {
    "threaded_conversation_with_injections_v2": {
      "instructions": [
        {
          "type": "TimelineClearCache"
        },
        {
          "type": "TimelineAddEntries",
          "entries": [
            {
              "entryId": "tweet-1946358807875244398",
              "sortIndex": "1953466920862744576",
              "content": {
                "entryType": "TimelineTimelineItem",
                "__typename": "TimelineTimelineItem",
                "itemContent": {
                  "itemType": "TimelineTweet",
                  "__typename": "TimelineTweet",
                  "tweet_results": {
                    "result": {
                      "__typename": "Tweet",
                      "rest_id": "1946358807875244398",
                      "has_birdwatch_notes": false,
                      "core": {
                        "user_results": {
                          "result": {
                            "__typename": "User",
                            "id": "VXNlcjozNjk3Nzc0MTY=",
                            "rest_id": "369777416",
                            "affiliates_highlighted_label": {},
                            "has_graduated_access": true,
                            "is_blue_verified": true,
                            "profile_image_shape": "Circle",
                            "legacy": {
                              "can_dm": true,
                              "can_media_tag": true,
                              "created_at": "Wed Sep 07 22:54:31 +0000 2011",
                              "default_profile": true,
                              "default_profile_image": false,
                              "description": "co-founder/CEO @llama_index\n\nCareers: https://t.co/EUnMNmbCtx\nEnterprise: https://t.co/Ht5jwxSrQB",
                              "entities": {
                                "description": {
                                  "urls": [
                                    {
                                      "display_url": "llamaindex.ai/careers",
                                      "expanded_url": "https://www.llamaindex.ai/careers",
                                      "url": "https://t.co/EUnMNmbCtx",
                                      "indices": [
                                        38,
                                        61
                                      ]
                                    },
                                    {
                                      "display_url": "llamaindex.ai/contact",
                                      "expanded_url": "https://www.llamaindex.ai/contact",
                                      "url": "https://t.co/Ht5jwxSrQB",
                                      "indices": [
                                        74,
                                        97
                                      ]
                                    }
                                  ]
                                },
                                "url": {
                                  "urls": [
                                    {
                                      "display_url": "llamaindex.ai",
                                      "expanded_url": "https://www.llamaindex.ai/",
                                      "url": "https://t.co/YiIfjVlzb6",
                                      "indices": [
                                        0,
                                        23
                                      ]
                                    }
                                  ]
                                }
                              },
                              "fast_followers_count": 0,
                              "favourites_count": 7776,
                              "followers_count": 64130,
                              "friends_count": 1378,
                              "has_custom_timelines": true,
                              "is_translator": false,
                              "listed_count": 1295,
                              "location": "",
                              "media_count": 1244,
                              "name": "Jerry Liu",
                              "normal_followers_count": 64130,
                              "pinned_tweet_ids_str": [
                                "1953108641558540720"
                              ],
                              "possibly_sensitive": false,
                              "profile_image_url_https": "https://pbs.twimg.com/profile_images/1283610285031460864/1Q4zYhtb_normal.jpg",
                              "profile_interstitial_type": "",
                              "screen_name": "jerryjliu0",
                              "statuses_count": 6037,
                              "translator_type": "none",
                              "url": "https://t.co/YiIfjVlzb6",
                              "verified": false,
                              "want_retweets": false,
                              "withheld_in_countries": []
                            },
                            "tipjar_settings": {}
                          }
                        }
                      },
                      "unmention_data": {},
                      "edit_control": {
                        "edit_tweet_ids": [
                          "1946358807875244398"
                        ],
                        "editable_until_msecs": "1752886676000",
                        "is_edit_eligible": true,
                        "edits_remaining": "5"
                      },
                      "is_translatable": false,
                      "views": {
                        "count": "10198",
                        "state": "EnabledWithCount"
                      },
                      "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
                      "note_tweet": {
                        "is_expandable": true,
                        "note_tweet_results": {
                          "result": {
                            "id": "Tm90ZVR3ZWV0OjE5NDYzNTg4MDc2OTA2OTQ2NTY=",
                            "text": "If you’re using AI agents for large-scale document extraction 📑✂️, you will need to craft a good structured output schema.\n\nMost LLMs support structured output these days, but here are tips and tricks from learned experience💡\n1️⃣Try to limit schema nesting to 3-4 levels.\n2️⃣ Make fields optional. This allows LLMs to have a cop-out and give a null value. This is better than having it hallucinate values!\n3️⃣ When trying to extract a variable number of entities, use the array type.\n4️⃣ Use descriptive field names and descriptions to help inform the LLM on how to fill in the output.\n5️⃣ Start small.\n\nIf you’re using Python, these are usually defined in Pydantic. We’ve learned these lessons over time as we built out document extraction for various use cases, and want to share best practices with you - even if you’re just directly feeding the text tokens into the LLM.\n\nIn the meantime if you’re interested in document extraction, check out the below!\nDocs: https://t.co/DqavGh0Wu5\nLlamaCloud https://t.co/f0vlqtOtQv",
                            "entity_set": {
                              "hashtags": [],
                              "symbols": [],
                              "urls": [
                                {
                                  "display_url": "docs.cloud.llamaindex.ai/llamaextract/f…",
                                  "expanded_url": "https://docs.cloud.llamaindex.ai/llamaextract/features/schema_design",
                                  "url": "https://t.co/DqavGh0Wu5",
                                  "indices": [
                                    964,
                                    987
                                  ]
                                },
                                {
                                  "display_url": "cloud.llamaindex.ai/?utm_campaign=…",
                                  "expanded_url": "https://cloud.llamaindex.ai/?utm_campaign=extract&utm_medium=jl_socials",
                                  "url": "https://t.co/f0vlqtOtQv",
                                  "indices": [
                                    999,
                                    1022
                                  ]
                                }
                              ],
                              "user_mentions": []
                            },
                            "richtext": {
                              "richtext_tags": []
                            },
                            "media": {
                              "inline_media": []
                            }
                          }
                        }
                      },
                      "legacy": {
                        "bookmark_count": 147,
                        "bookmarked": false,
                        "created_at": "Fri Jul 18 23:57:56 +0000 2025",
                        "conversation_id_str": "1946358807875244398",
                        "display_text_range": [
                          0,
                          281
                        ],
                        "entities": {
                          "hashtags": [],
                          "media": [
                            {
                              "display_url": "pic.x.com/WgUcKOIXEc",
                              "expanded_url": "https://x.com/jerryjliu0/status/1946358807875244398/photo/1",
                              "id_str": "1946358792561549312",
                              "indices": [
                                282,
                                305
                              ],
                              "media_key": "3_1946358792561549312",
                              "media_url_https": "https://pbs.twimg.com/media/GwLbAnQW4AAKoE6.jpg",
                              "type": "photo",
                              "url": "https://t.co/WgUcKOIXEc",
                              "ext_media_availability": {
                                "status": "Available"
                              },
                              "features": {
                                "large": {
                                  "faces": []
                                },
                                "medium": {
                                  "faces": []
                                },
                                "small": {
                                  "faces": []
                                },
                                "orig": {
                                  "faces": []
                                }
                              },
                              "sizes": {
                                "large": {
                                  "h": 676,
                                  "w": 1337,
                                  "resize": "fit"
                                },
                                "medium": {
                                  "h": 607,
                                  "w": 1200,
                                  "resize": "fit"
                                },
                                "small": {
                                  "h": 344,
                                  "w": 680,
                                  "resize": "fit"
                                },
                                "thumb": {
                                  "h": 150,
                                  "w": 150,
                                  "resize": "crop"
                                }
                              },
                              "original_info": {
                                "height": 676,
                                "width": 1337,
                                "focus_rects": [
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 1207,
                                    "h": 676
                                  },
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 676,
                                    "h": 676
                                  },
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 593,
                                    "h": 676
                                  },
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 338,
                                    "h": 676
                                  },
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 1337,
                                    "h": 676
                                  }
                                ]
                              },
                              "media_results": {
                                "result": {
                                  "media_key": "3_1946358792561549312"
                                }
                              }
                            }
                          ],
                          "symbols": [],
                          "timestamps": [],
                          "urls": [],
                          "user_mentions": []
                        },
                        "extended_entities": {
                          "media": [
                            {
                              "display_url": "pic.x.com/WgUcKOIXEc",
                              "expanded_url": "https://x.com/jerryjliu0/status/1946358807875244398/photo/1",
                              "id_str": "1946358792561549312",
                              "indices": [
                                282,
                                305
                              ],
                              "media_key": "3_1946358792561549312",
                              "media_url_https": "https://pbs.twimg.com/media/GwLbAnQW4AAKoE6.jpg",
                              "type": "photo",
                              "url": "https://t.co/WgUcKOIXEc",
                              "ext_media_availability": {
                                "status": "Available"
                              },
                              "features": {
                                "large": {
                                  "faces": []
                                },
                                "medium": {
                                  "faces": []
                                },
                                "small": {
                                  "faces": []
                                },
                                "orig": {
                                  "faces": []
                                }
                              },
                              "sizes": {
                                "large": {
                                  "h": 676,
                                  "w": 1337,
                                  "resize": "fit"
                                },
                                "medium": {
                                  "h": 607,
                                  "w": 1200,
                                  "resize": "fit"
                                },
                                "small": {
                                  "h": 344,
                                  "w": 680,
                                  "resize": "fit"
                                },
                                "thumb": {
                                  "h": 150,
                                  "w": 150,
                                  "resize": "crop"
                                }
                              },
                              "original_info": {
                                "height": 676,
                                "width": 1337,
                                "focus_rects": [
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 1207,
                                    "h": 676
                                  },
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 676,
                                    "h": 676
                                  },
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 593,
                                    "h": 676
                                  },
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 338,
                                    "h": 676
                                  },
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 1337,
                                    "h": 676
                                  }
                                ]
                              },
                              "media_results": {
                                "result": {
                                  "media_key": "3_1946358792561549312"
                                }
                              }
                            }
                          ]
                        },
                        "favorite_count": 119,
                        "favorited": false,
                        "full_text": "If you’re using AI agents for large-scale document extraction 📑✂️, you will need to craft a good structured output schema.\n\nMost LLMs support structured output these days, but here are tips and tricks from learned experience💡\n1️⃣Try to limit schema nesting to 3-4 levels.\n2️⃣ Make… https://t.co/WgUcKOIXEc",
                        "is_quote_status": false,
                        "lang": "en",
                        "possibly_sensitive": false,
                        "possibly_sensitive_editable": true,
                        "quote_count": 4,
                        "reply_count": 6,
                        "retweet_count": 24,
                        "retweeted": false,
                        "user_id_str": "369777416",
                        "id_str": "1946358807875244398"
                      },
                      "quick_promote_eligibility": {
                        "eligibility": "IneligibleNotProfessional"
                      }
                    }
                  },
                  "tweetDisplayType": "Tweet"
                },
                "clientEventInfo": {
                  "component": "tweet",
                  "element": "tweet"
                }
              }
            },
            {
              "entryId": "conversationthread-1946645009106911333",
              "sortIndex": "1953466920862744566",
              "content": {
                "entryType": "TimelineTimelineModule",
                "__typename": "TimelineTimelineModule",
                "items": [
                  {
                    "entryId": "conversationthread-1946645009106911333-tweet-1946645009106911333",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1946645009106911333",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjoxMDYyMDM0MzIzMjQ5ODgxMDg4",
                                  "rest_id": "1062034323249881088",
                                  "affiliates_highlighted_label": {},
                                  "has_graduated_access": true,
                                  "is_blue_verified": true,
                                  "profile_image_shape": "Circle",
                                  "legacy": {
                                    "can_dm": true,
                                    "can_media_tag": true,
                                    "created_at": "Mon Nov 12 17:28:09 +0000 2018",
                                    "default_profile": true,
                                    "default_profile_image": false,
                                    "description": "Ai Updates | Post about Ai Innovation, Tools, Tech, Career and Jobs | 500k+ Followers Across All Platforms",
                                    "entities": {
                                      "description": {
                                        "urls": []
                                      },
                                      "url": {
                                        "urls": [
                                          {
                                            "display_url": "linktr.ee/codewithimansh…",
                                            "expanded_url": "https://linktr.ee/codewithimanshu.in",
                                            "url": "https://t.co/dt6KPRmVjm",
                                            "indices": [
                                              0,
                                              23
                                            ]
                                          }
                                        ]
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 73428,
                                    "followers_count": 20739,
                                    "friends_count": 272,
                                    "has_custom_timelines": true,
                                    "is_translator": false,
                                    "listed_count": 118,
                                    "location": "Check Me Here👉",
                                    "media_count": 4468,
                                    "name": "Himanshu Kumar",
                                    "normal_followers_count": 20739,
                                    "pinned_tweet_ids_str": [
                                      "1953373070225485918"
                                    ],
                                    "possibly_sensitive": false,
                                    "profile_banner_url": "https://pbs.twimg.com/profile_banners/1062034323249881088/1702925578",
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/1736815259951017986/Hyit0PGJ_normal.jpg",
                                    "profile_interstitial_type": "",
                                    "screen_name": "codewithimanshu",
                                    "statuses_count": 66220,
                                    "translator_type": "none",
                                    "url": "https://t.co/dt6KPRmVjm",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "professional": {
                                    "rest_id": "1642959797803958272",
                                    "professional_type": "Creator",
                                    "category": []
                                  },
                                  "tipjar_settings": {
                                    "is_enabled": false
                                  }
                                }
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1946645009106911333"
                              ],
                              "editable_until_msecs": "1752954911000",
                              "is_edit_eligible": false,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "155",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
                            "legacy": {
                              "bookmark_count": 1,
                              "bookmarked": false,
                              "created_at": "Sat Jul 19 18:55:11 +0000 2025",
                              "conversation_id_str": "1946358807875244398",
                              "display_text_range": [
                                12,
                                103
                              ],
                              "entities": {
                                "hashtags": [],
                                "symbols": [],
                                "timestamps": [],
                                "urls": [],
                                "user_mentions": [
                                  {
                                    "id_str": "369777416",
                                    "name": "Jerry Liu",
                                    "screen_name": "jerryjliu0",
                                    "indices": [
                                      0,
                                      11
                                    ]
                                  }
                                ]
                              },
                              "favorite_count": 0,
                              "favorited": false,
                              "full_text": "@jerryjliu0 Smart schema design is key.. plus, consider versioning it asap for iterative development...",
                              "in_reply_to_screen_name": "jerryjliu0",
                              "in_reply_to_status_id_str": "1946358807875244398",
                              "in_reply_to_user_id_str": "369777416",
                              "is_quote_status": false,
                              "lang": "en",
                              "quote_count": 0,
                              "reply_count": 0,
                              "retweet_count": 0,
                              "retweeted": false,
                              "user_id_str": "1062034323249881088",
                              "id_str": "1946645009106911333"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "HighQuality"
                          },
                          "timelinesDetails": {
                            "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                          }
                        }
                      }
                    }
                  }
                ],
                "metadata": {
                  "conversationMetadata": {
                    "allTweetIds": [
                      "1946645009106911333"
                    ],
                    "enableDeduplication": true
                  }
                },
                "displayType": "VerticalConversation",
                "clientEventInfo": {
                  "component": "tweet",
                  "details": {
                    "conversationDetails": {
                      "conversationSection": "HighQuality"
                    },
                    "timelinesDetails": {
                      "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                    }
                  }
                }
              }
            },
            {
              "entryId": "conversationthread-1951096889715335450",
              "sortIndex": "1953466920862744556",
              "content": {
                "entryType": "TimelineTimelineModule",
                "__typename": "TimelineTimelineModule",
                "items": [
                  {
                    "entryId": "conversationthread-1951096889715335450-promoted-tweet-1951096889715335450-27ec057fb15b32d",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "TweetWithVisibilityResults",
                            "tweet": {
                              "rest_id": "1951096889715335450",
                              "has_birdwatch_notes": false,
                              "core": {
                                "user_results": {
                                  "result": {
                                    "__typename": "User",
                                    "id": "VXNlcjoxMzk5NzY2MTUzMDUzMDYxMTIx",
                                    "rest_id": "1399766153053061121",
                                    "affiliates_highlighted_label": {
                                      "label": {
                                        "url": {
                                          "url": "https://twitter.com/X",
                                          "urlType": "DeepLink"
                                        },
                                        "badge": {
                                          "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg"
                                        },
                                        "description": "X",
                                        "userLabelType": "BusinessLabel",
                                        "userLabelDisplayType": "Badge"
                                      }
                                    },
                                    "has_graduated_access": true,
                                    "is_blue_verified": true,
                                    "profile_image_shape": "Square",
                                    "legacy": {
                                      "can_dm": true,
                                      "can_media_tag": false,
                                      "created_at": "Tue Jun 01 16:34:27 +0000 2021",
                                      "default_profile": true,
                                      "default_profile_image": false,
                                      "description": "Subscribe for the best X experience: ad-free, post edits, content monetization, Grok AI with higher limits, video downloads, long posts, X Pro, and more.",
                                      "entities": {
                                        "description": {
                                          "urls": []
                                        },
                                        "url": {
                                          "urls": [
                                            {
                                              "display_url": "x.com/i/premium_sign…",
                                              "expanded_url": "https://x.com/i/premium_sign_up",
                                              "url": "https://t.co/zJi0ZdXW63",
                                              "indices": [
                                                0,
                                                23
                                              ]
                                            }
                                          ]
                                        }
                                      },
                                      "fast_followers_count": 0,
                                      "favourites_count": 652,
                                      "followers_count": 1148604,
                                      "friends_count": 2,
                                      "has_custom_timelines": true,
                                      "is_translator": false,
                                      "listed_count": 1765,
                                      "location": "",
                                      "media_count": 64,
                                      "name": "Premium",
                                      "normal_followers_count": 1148604,
                                      "pinned_tweet_ids_str": [
                                        "1943790713881473349"
                                      ],
                                      "possibly_sensitive": false,
                                      "profile_banner_url": "https://pbs.twimg.com/profile_banners/1399766153053061121/1690180776",
                                      "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683366300054069248/67v23AEj_normal.jpg",
                                      "profile_interstitial_type": "",
                                      "screen_name": "premium",
                                      "statuses_count": 1275,
                                      "translator_type": "none",
                                      "url": "https://t.co/zJi0ZdXW63",
                                      "verified": false,
                                      "verified_type": "Business",
                                      "want_retweets": false,
                                      "withheld_in_countries": []
                                    },
                                    "tipjar_settings": {}
                                  }
                                }
                              },
                              "card": {
                                "rest_id": "card://1951096886875578368",
                                "legacy": {
                                  "binding_values": [
                                    {
                                      "key": "unified_card",
                                      "value": {
                                        "string_value": "{\"type\":\"image_website\",\"component_objects\":{\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"\\u0627\\u0634\\u062A\\u0631\\u0643\",\"is_rtl\":true},\"subtitle\":{\"content\":\"x.com\",\"is_rtl\":false},\"destination\":\"browser_1\"}},\"media_1\":{\"type\":\"media\",\"data\":{\"id\":\"3_1951083807379017728\",\"destination\":\"browser_1\"}}},\"destination_objects\":{\"browser_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://x.com/i/premium_sign_up?tier=premium&referring_page=ad_static_generalmark\",\"vanity\":\"x.com\"}}}},\"components\":[\"media_1\",\"details_1\"],\"media_entities\":{\"3_1951083807379017728\":{\"id\":1951083807379017728,\"id_str\":\"1951083807379017728\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GxOkYrHX0AAierY.png\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":352,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":69,\"y\":0,\"h\":800,\"w\":702},{\"x\":220,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}},\"source_user_id\":1399766153053061121,\"source_user_id_str\":\"1399766153053061121\",\"media_key\":\"3_1951083807379017728\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":11,\"green\":20,\"blue\":30},\"percentage\":90.16},{\"rgb\":{\"red\":107,\"green\":114,\"blue\":124},\"percentage\":7.97},{\"rgb\":{\"red\":198,\"green\":200,\"blue\":204},\"percentage\":2.59},{\"rgb\":{\"red\":38,\"green\":36,\"blue\":31},\"percentage\":0.12}]}},\"ttl\":-1}}}},\"experiment_signals\":{}}",
                                        "type": "STRING"
                                      }
                                    },
                                    {
                                      "key": "card_url",
                                      "value": {
                                        "scribe_key": "card_url",
                                        "string_value": "https://twitter.com",
                                        "type": "STRING"
                                      }
                                    }
                                  ],
                                  "card_platform": {
                                    "platform": {
                                      "audience": {
                                        "name": "production"
                                      },
                                      "device": {
                                        "name": "Android",
                                        "version": "12"
                                      }
                                    }
                                  },
                                  "name": "unified_card",
                                  "url": "card://1951096886875578368",
                                  "user_refs_results": []
                                }
                              },
                              "unmention_data": {},
                              "edit_control": {
                                "edit_tweet_ids": [
                                  "1951096889715335450"
                                ],
                                "editable_until_msecs": "1754016322000",
                                "is_edit_eligible": false,
                                "edits_remaining": "5"
                              },
                              "is_translatable": true,
                              "views": {
                                "count": "3175859",
                                "state": "EnabledWithCount"
                              },
                              "source": "<a href=\"https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels\" rel=\"nofollow\">advertiser-interface</a>",
                              "legacy": {
                                "bookmark_count": 67,
                                "bookmarked": false,
                                "created_at": "Fri Aug 01 01:45:22 +0000 2025",
                                "conversation_control": {
                                  "policy": "ByInvitation",
                                  "conversation_owner_results": {
                                    "result": {
                                      "__typename": "User",
                                      "legacy": {
                                        "screen_name": "premium"
                                      }
                                    }
                                  }
                                },
                                "conversation_id_str": "1951096889715335450",
                                "display_text_range": [
                                  0,
                                  25
                                ],
                                "entities": {
                                  "hashtags": [],
                                  "symbols": [],
                                  "timestamps": [],
                                  "urls": [],
                                  "user_mentions": []
                                },
                                "favorite_count": 490,
                                "favorited": false,
                                "full_text": "استمتع بأفضل تجربة على X.",
                                "is_quote_status": false,
                                "lang": "ar",
                                "limited_actions": "limited_replies",
                                "quote_count": 5,
                                "reply_count": 0,
                                "retweet_count": 45,
                                "retweeted": false,
                                "scopes": {
                                  "followers": false
                                },
                                "user_id_str": "1399766153053061121",
                                "id_str": "1951096889715335450"
                              },
                              "quick_promote_eligibility": {
                                "eligibility": "IneligibleNotProfessional"
                              }
                            },
                            "limitedActionResults": {
                              "limited_actions": [
                                {
                                  "action": "Reply",
                                  "prompt": {
                                    "__typename": "CtaLimitedActionPrompt",
                                    "cta_type": "SeeConversation",
                                    "headline": {
                                      "text": "Who can reply?",
                                      "entities": []
                                    },
                                    "subtext": {
                                      "text": "People the author mentioned can reply",
                                      "entities": []
                                    }
                                  }
                                }
                              ]
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet",
                        "promotedMetadata": {
                          "advertiser_results": {
                            "result": {
                              "__typename": "User",
                              "id": "VXNlcjoxMzk5NzY2MTUzMDUzMDYxMTIx",
                              "rest_id": "1399766153053061121",
                              "affiliates_highlighted_label": {
                                "label": {
                                  "url": {
                                    "url": "https://twitter.com/X",
                                    "urlType": "DeepLink"
                                  },
                                  "badge": {
                                    "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg"
                                  },
                                  "description": "X",
                                  "userLabelType": "BusinessLabel",
                                  "userLabelDisplayType": "Badge"
                                }
                              },
                              "has_graduated_access": true,
                              "is_blue_verified": true,
                              "profile_image_shape": "Square",
                              "legacy": {
                                "can_dm": true,
                                "can_media_tag": false,
                                "created_at": "Tue Jun 01 16:34:27 +0000 2021",
                                "default_profile": true,
                                "default_profile_image": false,
                                "description": "Subscribe for the best X experience: ad-free, post edits, content monetization, Grok AI with higher limits, video downloads, long posts, X Pro, and more.",
                                "entities": {
                                  "description": {
                                    "urls": []
                                  },
                                  "url": {
                                    "urls": [
                                      {
                                        "display_url": "x.com/i/premium_sign…",
                                        "expanded_url": "https://x.com/i/premium_sign_up",
                                        "url": "https://t.co/zJi0ZdXW63",
                                        "indices": [
                                          0,
                                          23
                                        ]
                                      }
                                    ]
                                  }
                                },
                                "fast_followers_count": 0,
                                "favourites_count": 652,
                                "followers_count": 1148604,
                                "friends_count": 2,
                                "has_custom_timelines": true,
                                "is_translator": false,
                                "listed_count": 1765,
                                "location": "",
                                "media_count": 64,
                                "name": "Premium",
                                "normal_followers_count": 1148604,
                                "pinned_tweet_ids_str": [
                                  "1943790713881473349"
                                ],
                                "possibly_sensitive": false,
                                "profile_banner_url": "https://pbs.twimg.com/profile_banners/1399766153053061121/1690180776",
                                "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683366300054069248/67v23AEj_normal.jpg",
                                "profile_interstitial_type": "",
                                "screen_name": "premium",
                                "statuses_count": 1275,
                                "translator_type": "none",
                                "url": "https://t.co/zJi0ZdXW63",
                                "verified": false,
                                "verified_type": "Business",
                                "want_retweets": false,
                                "withheld_in_countries": []
                              },
                              "tipjar_settings": {}
                            }
                          },
                          "adMetadataContainer": {
                            "renderLegacyWebsiteCard": false
                          },
                          "disclosureType": "NoDisclosure",
                          "experimentValues": [
                            {
                              "key": "website_card_variation",
                              "value": "0"
                            }
                          ],
                          "impressionId": "27ec057fb15b32d",
                          "impressionString": "27ec057fb15b32d",
                          "clickTrackingInfo": {
                            "urlParams": [
                              {
                                "key": "twclid",
                                "value": "220zbkpvy9s455758b6tqo4ya5"
                              }
                            ]
                          }
                        }
                      },
                      "clientEventInfo": {
                        "component": "tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "HighQuality"
                          },
                          "timelinesDetails": {
                            "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                          }
                        }
                      }
                    }
                  }
                ],
                "displayType": "VerticalConversation",
                "clientEventInfo": {
                  "component": "tweet",
                  "details": {
                    "conversationDetails": {
                      "conversationSection": "HighQuality"
                    },
                    "timelinesDetails": {
                      "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                    }
                  }
                }
              }
            },
            {
              "entryId": "conversationthread-1946363784509206551",
              "sortIndex": "1953466920862744546",
              "content": {
                "entryType": "TimelineTimelineModule",
                "__typename": "TimelineTimelineModule",
                "items": [
                  {
                    "entryId": "conversationthread-1946363784509206551-tweet-1946363784509206551",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1946363784509206551",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjoxODQ5MDcxMjIzMzIzNDIyNzIw",
                                  "rest_id": "1849071223323422720",
                                  "affiliates_highlighted_label": {},
                                  "has_graduated_access": true,
                                  "is_blue_verified": true,
                                  "profile_image_shape": "Circle",
                                  "legacy": {
                                    "can_dm": false,
                                    "can_media_tag": true,
                                    "created_at": "Wed Oct 23 12:52:10 +0000 2024",
                                    "default_profile": true,
                                    "default_profile_image": false,
                                    "description": "",
                                    "entities": {
                                      "description": {
                                        "urls": []
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 2523,
                                    "followers_count": 226,
                                    "friends_count": 141,
                                    "has_custom_timelines": false,
                                    "is_translator": false,
                                    "listed_count": 0,
                                    "location": "",
                                    "media_count": 0,
                                    "name": "Citta Del Sole",
                                    "normal_followers_count": 226,
                                    "pinned_tweet_ids_str": [],
                                    "possibly_sensitive": false,
                                    "profile_banner_url": "https://pbs.twimg.com/profile_banners/1849071223323422720/1739878576",
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/1924476347411206144/2jsL7uom_normal.jpg",
                                    "profile_interstitial_type": "",
                                    "screen_name": "Citta_delSole",
                                    "statuses_count": 3499,
                                    "translator_type": "none",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "tipjar_settings": {}
                                }
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1946363784509206551"
                              ],
                              "editable_until_msecs": "1752887862000",
                              "is_edit_eligible": false,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "203",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"https://twitter.com\" rel=\"nofollow\">TweetDeck Web App</a>",
                            "legacy": {
                              "bookmark_count": 0,
                              "bookmarked": false,
                              "created_at": "Sat Jul 19 00:17:42 +0000 2025",
                              "conversation_id_str": "1946358807875244398",
                              "display_text_range": [
                                25,
                                182
                              ],
                              "entities": {
                                "hashtags": [],
                                "symbols": [],
                                "timestamps": [],
                                "urls": [],
                                "user_mentions": [
                                  {
                                    "id_str": "369777416",
                                    "name": "Jerry Liu",
                                    "screen_name": "jerryjliu0",
                                    "indices": [
                                      0,
                                      11
                                    ]
                                  },
                                  {
                                    "id_str": "1604278358296055808",
                                    "name": "LlamaIndex 🦙",
                                    "screen_name": "llama_index",
                                    "indices": [
                                      12,
                                      24
                                    ]
                                  }
                                ]
                              },
                              "favorite_count": 0,
                              "favorited": false,
                              "full_text": "@jerryjliu0 @llama_index structured data is just spicy regex for AI agents. schema design = make or break for extraction at scale. get it right or watch your agents spiral into chaos",
                              "in_reply_to_screen_name": "jerryjliu0",
                              "in_reply_to_status_id_str": "1946358807875244398",
                              "in_reply_to_user_id_str": "369777416",
                              "is_quote_status": false,
                              "lang": "en",
                              "quote_count": 0,
                              "reply_count": 0,
                              "retweet_count": 0,
                              "retweeted": false,
                              "user_id_str": "1849071223323422720",
                              "id_str": "1946363784509206551"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "HighQuality"
                          },
                          "timelinesDetails": {
                            "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                          }
                        }
                      }
                    }
                  }
                ],
                "metadata": {
                  "conversationMetadata": {
                    "allTweetIds": [
                      "1946363784509206551"
                    ],
                    "enableDeduplication": true
                  }
                },
                "displayType": "VerticalConversation",
                "clientEventInfo": {
                  "component": "tweet",
                  "details": {
                    "conversationDetails": {
                      "conversationSection": "HighQuality"
                    },
                    "timelinesDetails": {
                      "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                    }
                  }
                }
              }
            },
            {
              "entryId": "conversationthread-1946686664358711689",
              "sortIndex": "1953466920862744536",
              "content": {
                "entryType": "TimelineTimelineModule",
                "__typename": "TimelineTimelineModule",
                "items": [
                  {
                    "entryId": "conversationthread-1946686664358711689-tweet-1946686664358711689",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1946686664358711689",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjozNzEwNDYxMzA=",
                                  "rest_id": "371046130",
                                  "affiliates_highlighted_label": {},
                                  "has_graduated_access": true,
                                  "is_blue_verified": false,
                                  "profile_image_shape": "Circle",
                                  "legacy": {
                                    "can_dm": false,
                                    "can_media_tag": true,
                                    "created_at": "Sat Sep 10 03:09:48 +0000 2011",
                                    "default_profile": true,
                                    "default_profile_image": false,
                                    "description": "Shipping/bridging Engineering ⇆ Science #SoftwareArchitecture #FunctionalProgramming #MachineLearning #BigData #MachineLearningEngineering #CompilerDesign",
                                    "entities": {
                                      "description": {
                                        "urls": []
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 19921,
                                    "followers_count": 772,
                                    "friends_count": 773,
                                    "has_custom_timelines": true,
                                    "is_translator": false,
                                    "listed_count": 33,
                                    "location": "Europe",
                                    "media_count": 776,
                                    "name": "KSE",
                                    "normal_followers_count": 772,
                                    "pinned_tweet_ids_str": [
                                      "1084552382871228421"
                                    ],
                                    "possibly_sensitive": false,
                                    "profile_banner_url": "https://pbs.twimg.com/profile_banners/371046130/1507360067",
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/926749870001676288/2n1TOqD6_normal.jpg",
                                    "profile_interstitial_type": "",
                                    "screen_name": "semanticbeeng",
                                    "statuses_count": 5503,
                                    "translator_type": "none",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "tipjar_settings": {}
                                }
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1946686664358711689"
                              ],
                              "editable_until_msecs": "1752964843000",
                              "is_edit_eligible": false,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "77",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
                            "quoted_status_result": {
                              "result": {
                                "__typename": "Tweet",
                                "rest_id": "1667075684349489153",
                                "has_birdwatch_notes": false,
                                "core": {
                                  "user_results": {
                                    "result": {
                                      "__typename": "User",
                                      "id": "VXNlcjozNzEwNDYxMzA=",
                                      "rest_id": "371046130",
                                      "affiliates_highlighted_label": {},
                                      "has_graduated_access": true,
                                      "is_blue_verified": false,
                                      "profile_image_shape": "Circle",
                                      "legacy": {
                                        "can_dm": false,
                                        "can_media_tag": true,
                                        "created_at": "Sat Sep 10 03:09:48 +0000 2011",
                                        "default_profile": true,
                                        "default_profile_image": false,
                                        "description": "Shipping/bridging Engineering ⇆ Science #SoftwareArchitecture #FunctionalProgramming #MachineLearning #BigData #MachineLearningEngineering #CompilerDesign",
                                        "entities": {
                                          "description": {
                                            "urls": []
                                          }
                                        },
                                        "fast_followers_count": 0,
                                        "favourites_count": 19921,
                                        "followers_count": 772,
                                        "friends_count": 773,
                                        "has_custom_timelines": true,
                                        "is_translator": false,
                                        "listed_count": 33,
                                        "location": "Europe",
                                        "media_count": 776,
                                        "name": "KSE",
                                        "normal_followers_count": 772,
                                        "pinned_tweet_ids_str": [
                                          "1084552382871228421"
                                        ],
                                        "possibly_sensitive": false,
                                        "profile_banner_url": "https://pbs.twimg.com/profile_banners/371046130/1507360067",
                                        "profile_image_url_https": "https://pbs.twimg.com/profile_images/926749870001676288/2n1TOqD6_normal.jpg",
                                        "profile_interstitial_type": "",
                                        "screen_name": "semanticbeeng",
                                        "statuses_count": 5503,
                                        "translator_type": "none",
                                        "verified": false,
                                        "want_retweets": false,
                                        "withheld_in_countries": []
                                      },
                                      "tipjar_settings": {}
                                    }
                                  }
                                },
                                "unmention_data": {},
                                "edit_control": {
                                  "edit_tweet_ids": [
                                    "1667075684349489153"
                                  ],
                                  "editable_until_msecs": "1686300390000",
                                  "is_edit_eligible": false,
                                  "edits_remaining": "5"
                                },
                                "is_translatable": false,
                                "views": {
                                  "count": "3621",
                                  "state": "EnabledWithCount"
                                },
                                "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
                                "legacy": {
                                  "bookmark_count": 4,
                                  "bookmarked": false,
                                  "created_at": "Fri Jun 09 07:46:30 +0000 2023",
                                  "conversation_id_str": "1570044606338990081",
                                  "display_text_range": [
                                    9,
                                    289
                                  ],
                                  "entities": {
                                    "hashtags": [
                                      {
                                        "indices": [
                                          11,
                                          25
                                        ],
                                        "text": "SemanticLayer"
                                      },
                                      {
                                        "indices": [
                                          231,
                                          235
                                        ],
                                        "text": "GPL"
                                      },
                                      {
                                        "indices": [
                                          279,
                                          289
                                        ],
                                        "text": "SmartData"
                                      }
                                    ],
                                    "media": [
                                      {
                                        "display_url": "pic.x.com/gPu5i4fbFh",
                                        "expanded_url": "https://x.com/semanticbeeng/status/1667075684349489153/photo/1",
                                        "id_str": "1667074834000490497",
                                        "indices": [
                                          290,
                                          313
                                        ],
                                        "media_key": "3_1667074834000490497",
                                        "media_url_https": "https://pbs.twimg.com/media/FyKjup6XsAEsKuq.png",
                                        "type": "photo",
                                        "url": "https://t.co/gPu5i4fbFh",
                                        "ext_media_availability": {
                                          "status": "Available"
                                        },
                                        "features": {
                                          "large": {
                                            "faces": []
                                          },
                                          "medium": {
                                            "faces": []
                                          },
                                          "small": {
                                            "faces": []
                                          },
                                          "orig": {
                                            "faces": []
                                          }
                                        },
                                        "sizes": {
                                          "large": {
                                            "h": 490,
                                            "w": 839,
                                            "resize": "fit"
                                          },
                                          "medium": {
                                            "h": 490,
                                            "w": 839,
                                            "resize": "fit"
                                          },
                                          "small": {
                                            "h": 397,
                                            "w": 680,
                                            "resize": "fit"
                                          },
                                          "thumb": {
                                            "h": 150,
                                            "w": 150,
                                            "resize": "crop"
                                          }
                                        },
                                        "original_info": {
                                          "height": 490,
                                          "width": 839,
                                          "focus_rects": [
                                            {
                                              "x": 0,
                                              "y": 0,
                                              "w": 839,
                                              "h": 470
                                            },
                                            {
                                              "x": 237,
                                              "y": 0,
                                              "w": 490,
                                              "h": 490
                                            },
                                            {
                                              "x": 267,
                                              "y": 0,
                                              "w": 430,
                                              "h": 490
                                            },
                                            {
                                              "x": 360,
                                              "y": 0,
                                              "w": 245,
                                              "h": 490
                                            },
                                            {
                                              "x": 0,
                                              "y": 0,
                                              "w": 839,
                                              "h": 490
                                            }
                                          ]
                                        },
                                        "media_results": {
                                          "result": {
                                            "media_key": "3_1667074834000490497"
                                          }
                                        }
                                      },
                                      {
                                        "display_url": "pic.x.com/gPu5i4fbFh",
                                        "expanded_url": "https://x.com/semanticbeeng/status/1667075684349489153/photo/1",
                                        "id_str": "1667075119938781185",
                                        "indices": [
                                          290,
                                          313
                                        ],
                                        "media_key": "3_1667075119938781185",
                                        "media_url_https": "https://pbs.twimg.com/media/FyKj_THXwAE5yTq.png",
                                        "type": "photo",
                                        "url": "https://t.co/gPu5i4fbFh",
                                        "ext_media_availability": {
                                          "status": "Available"
                                        },
                                        "features": {
                                          "large": {
                                            "faces": [
                                              {
                                                "x": 54,
                                                "y": 271,
                                                "h": 38,
                                                "w": 38
                                              },
                                              {
                                                "x": 384,
                                                "y": 176,
                                                "h": 123,
                                                "w": 123
                                              }
                                            ]
                                          },
                                          "medium": {
                                            "faces": [
                                              {
                                                "x": 54,
                                                "y": 271,
                                                "h": 38,
                                                "w": 38
                                              },
                                              {
                                                "x": 384,
                                                "y": 176,
                                                "h": 123,
                                                "w": 123
                                              }
                                            ]
                                          },
                                          "small": {
                                            "faces": [
                                              {
                                                "x": 45,
                                                "y": 227,
                                                "h": 31,
                                                "w": 31
                                              },
                                              {
                                                "x": 322,
                                                "y": 147,
                                                "h": 103,
                                                "w": 103
                                              }
                                            ]
                                          },
                                          "orig": {
                                            "faces": [
                                              {
                                                "x": 54,
                                                "y": 271,
                                                "h": 38,
                                                "w": 38
                                              },
                                              {
                                                "x": 384,
                                                "y": 176,
                                                "h": 123,
                                                "w": 123
                                              }
                                            ]
                                          }
                                        },
                                        "sizes": {
                                          "large": {
                                            "h": 464,
                                            "w": 810,
                                            "resize": "fit"
                                          },
                                          "medium": {
                                            "h": 464,
                                            "w": 810,
                                            "resize": "fit"
                                          },
                                          "small": {
                                            "h": 390,
                                            "w": 680,
                                            "resize": "fit"
                                          },
                                          "thumb": {
                                            "h": 150,
                                            "w": 150,
                                            "resize": "crop"
                                          }
                                        },
                                        "original_info": {
                                          "height": 464,
                                          "width": 810,
                                          "focus_rects": [
                                            {
                                              "x": 0,
                                              "y": 10,
                                              "w": 810,
                                              "h": 454
                                            },
                                            {
                                              "x": 193,
                                              "y": 0,
                                              "w": 464,
                                              "h": 464
                                            },
                                            {
                                              "x": 222,
                                              "y": 0,
                                              "w": 407,
                                              "h": 464
                                            },
                                            {
                                              "x": 309,
                                              "y": 0,
                                              "w": 232,
                                              "h": 464
                                            },
                                            {
                                              "x": 0,
                                              "y": 0,
                                              "w": 810,
                                              "h": 464
                                            }
                                          ]
                                        },
                                        "media_results": {
                                          "result": {
                                            "media_key": "3_1667075119938781185"
                                          }
                                        }
                                      }
                                    ],
                                    "symbols": [],
                                    "timestamps": [],
                                    "urls": [
                                      {
                                        "display_url": "linkml.io/linkml/faq/why…",
                                        "expanded_url": "https://linkml.io/linkml/faq/why-linkml.html",
                                        "url": "https://t.co/9E8HthBM9U",
                                        "indices": [
                                          255,
                                          278
                                        ]
                                      }
                                    ],
                                    "user_mentions": [
                                      {
                                        "id_str": "394221688",
                                        "name": "Simon Späti 🏔️",
                                        "screen_name": "sspaeti",
                                        "indices": [
                                          0,
                                          8
                                        ]
                                      }
                                    ]
                                  },
                                  "extended_entities": {
                                    "media": [
                                      {
                                        "display_url": "pic.x.com/gPu5i4fbFh",
                                        "expanded_url": "https://x.com/semanticbeeng/status/1667075684349489153/photo/1",
                                        "id_str": "1667074834000490497",
                                        "indices": [
                                          290,
                                          313
                                        ],
                                        "media_key": "3_1667074834000490497",
                                        "media_url_https": "https://pbs.twimg.com/media/FyKjup6XsAEsKuq.png",
                                        "type": "photo",
                                        "url": "https://t.co/gPu5i4fbFh",
                                        "ext_media_availability": {
                                          "status": "Available"
                                        },
                                        "features": {
                                          "large": {
                                            "faces": []
                                          },
                                          "medium": {
                                            "faces": []
                                          },
                                          "small": {
                                            "faces": []
                                          },
                                          "orig": {
                                            "faces": []
                                          }
                                        },
                                        "sizes": {
                                          "large": {
                                            "h": 490,
                                            "w": 839,
                                            "resize": "fit"
                                          },
                                          "medium": {
                                            "h": 490,
                                            "w": 839,
                                            "resize": "fit"
                                          },
                                          "small": {
                                            "h": 397,
                                            "w": 680,
                                            "resize": "fit"
                                          },
                                          "thumb": {
                                            "h": 150,
                                            "w": 150,
                                            "resize": "crop"
                                          }
                                        },
                                        "original_info": {
                                          "height": 490,
                                          "width": 839,
                                          "focus_rects": [
                                            {
                                              "x": 0,
                                              "y": 0,
                                              "w": 839,
                                              "h": 470
                                            },
                                            {
                                              "x": 237,
                                              "y": 0,
                                              "w": 490,
                                              "h": 490
                                            },
                                            {
                                              "x": 267,
                                              "y": 0,
                                              "w": 430,
                                              "h": 490
                                            },
                                            {
                                              "x": 360,
                                              "y": 0,
                                              "w": 245,
                                              "h": 490
                                            },
                                            {
                                              "x": 0,
                                              "y": 0,
                                              "w": 839,
                                              "h": 490
                                            }
                                          ]
                                        },
                                        "media_results": {
                                          "result": {
                                            "media_key": "3_1667074834000490497"
                                          }
                                        }
                                      },
                                      {
                                        "display_url": "pic.x.com/gPu5i4fbFh",
                                        "expanded_url": "https://x.com/semanticbeeng/status/1667075684349489153/photo/1",
                                        "id_str": "1667075119938781185",
                                        "indices": [
                                          290,
                                          313
                                        ],
                                        "media_key": "3_1667075119938781185",
                                        "media_url_https": "https://pbs.twimg.com/media/FyKj_THXwAE5yTq.png",
                                        "type": "photo",
                                        "url": "https://t.co/gPu5i4fbFh",
                                        "ext_media_availability": {
                                          "status": "Available"
                                        },
                                        "features": {
                                          "large": {
                                            "faces": [
                                              {
                                                "x": 54,
                                                "y": 271,
                                                "h": 38,
                                                "w": 38
                                              },
                                              {
                                                "x": 384,
                                                "y": 176,
                                                "h": 123,
                                                "w": 123
                                              }
                                            ]
                                          },
                                          "medium": {
                                            "faces": [
                                              {
                                                "x": 54,
                                                "y": 271,
                                                "h": 38,
                                                "w": 38
                                              },
                                              {
                                                "x": 384,
                                                "y": 176,
                                                "h": 123,
                                                "w": 123
                                              }
                                            ]
                                          },
                                          "small": {
                                            "faces": [
                                              {
                                                "x": 45,
                                                "y": 227,
                                                "h": 31,
                                                "w": 31
                                              },
                                              {
                                                "x": 322,
                                                "y": 147,
                                                "h": 103,
                                                "w": 103
                                              }
                                            ]
                                          },
                                          "orig": {
                                            "faces": [
                                              {
                                                "x": 54,
                                                "y": 271,
                                                "h": 38,
                                                "w": 38
                                              },
                                              {
                                                "x": 384,
                                                "y": 176,
                                                "h": 123,
                                                "w": 123
                                              }
                                            ]
                                          }
                                        },
                                        "sizes": {
                                          "large": {
                                            "h": 464,
                                            "w": 810,
                                            "resize": "fit"
                                          },
                                          "medium": {
                                            "h": 464,
                                            "w": 810,
                                            "resize": "fit"
                                          },
                                          "small": {
                                            "h": 390,
                                            "w": 680,
                                            "resize": "fit"
                                          },
                                          "thumb": {
                                            "h": 150,
                                            "w": 150,
                                            "resize": "crop"
                                          }
                                        },
                                        "original_info": {
                                          "height": 464,
                                          "width": 810,
                                          "focus_rects": [
                                            {
                                              "x": 0,
                                              "y": 10,
                                              "w": 810,
                                              "h": 454
                                            },
                                            {
                                              "x": 193,
                                              "y": 0,
                                              "w": 464,
                                              "h": 464
                                            },
                                            {
                                              "x": 222,
                                              "y": 0,
                                              "w": 407,
                                              "h": 464
                                            },
                                            {
                                              "x": 309,
                                              "y": 0,
                                              "w": 232,
                                              "h": 464
                                            },
                                            {
                                              "x": 0,
                                              "y": 0,
                                              "w": 810,
                                              "h": 464
                                            }
                                          ]
                                        },
                                        "media_results": {
                                          "result": {
                                            "media_key": "3_1667075119938781185"
                                          }
                                        }
                                      }
                                    ]
                                  },
                                  "favorite_count": 10,
                                  "favorited": false,
                                  "full_text": "@sspaeti A #SemanticLayer needs a data schema language that can\n1. subsume existing schema languages: json, avro, etc\n2. abstract over data formats (delay conversions)\n3. use a generative approach towards existing schema dialects, #GPL-s &amp; frameworks\nhttps://t.co/9E8HthBM9U\n#SmartData https://t.co/gPu5i4fbFh",
                                  "in_reply_to_screen_name": "sspaeti",
                                  "in_reply_to_status_id_str": "1575791813830791169",
                                  "in_reply_to_user_id_str": "394221688",
                                  "is_quote_status": false,
                                  "lang": "en",
                                  "possibly_sensitive": false,
                                  "possibly_sensitive_editable": true,
                                  "quote_count": 1,
                                  "reply_count": 1,
                                  "retweet_count": 4,
                                  "retweeted": false,
                                  "user_id_str": "371046130",
                                  "id_str": "1667075684349489153"
                                }
                              }
                            },
                            "legacy": {
                              "bookmark_count": 0,
                              "bookmarked": false,
                              "created_at": "Sat Jul 19 21:40:43 +0000 2025",
                              "conversation_id_str": "1946358807875244398",
                              "display_text_range": [
                                12,
                                62
                              ],
                              "entities": {
                                "hashtags": [],
                                "symbols": [],
                                "timestamps": [],
                                "urls": [
                                  {
                                    "display_url": "x.com/semanticbeeng/…",
                                    "expanded_url": "https://x.com/semanticbeeng/status/1667075684349489153",
                                    "url": "https://t.co/M3tVJmi7gr",
                                    "indices": [
                                      12,
                                      35
                                    ]
                                  }
                                ],
                                "user_mentions": [
                                  {
                                    "id_str": "369777416",
                                    "name": "Jerry Liu",
                                    "screen_name": "jerryjliu0",
                                    "indices": [
                                      0,
                                      11
                                    ]
                                  },
                                  {
                                    "id_str": "1421130007103954948",
                                    "name": "LinkML - Linked (Open) Data Modeling Language",
                                    "screen_name": "linkml_data",
                                    "indices": [
                                      50,
                                      62
                                    ]
                                  }
                                ]
                              },
                              "favorite_count": 0,
                              "favorited": false,
                              "full_text": "@jerryjliu0 https://t.co/M3tVJmi7gr\n\nthey can use @linkml_data",
                              "in_reply_to_screen_name": "jerryjliu0",
                              "in_reply_to_status_id_str": "1946358807875244398",
                              "in_reply_to_user_id_str": "369777416",
                              "is_quote_status": true,
                              "lang": "en",
                              "possibly_sensitive": false,
                              "possibly_sensitive_editable": true,
                              "quote_count": 0,
                              "quoted_status_id_str": "1667075684349489153",
                              "quoted_status_permalink": {
                                "url": "https://t.co/M3tVJmi7gr",
                                "expanded": "https://x.com/semanticbeeng/status/1667075684349489153",
                                "display": "x.com/semanticbeeng/…"
                              },
                              "reply_count": 0,
                              "retweet_count": 0,
                              "retweeted": false,
                              "user_id_str": "371046130",
                              "id_str": "1946686664358711689"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "HighQuality"
                          },
                          "timelinesDetails": {
                            "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                          }
                        }
                      }
                    }
                  }
                ],
                "metadata": {
                  "conversationMetadata": {
                    "allTweetIds": [
                      "1946686664358711689"
                    ],
                    "enableDeduplication": true
                  }
                },
                "displayType": "VerticalConversation",
                "clientEventInfo": {
                  "component": "tweet",
                  "details": {
                    "conversationDetails": {
                      "conversationSection": "HighQuality"
                    },
                    "timelinesDetails": {
                      "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                    }
                  }
                }
              }
            },
            {
              "entryId": "conversationthread-1946450141663359175",
              "sortIndex": "1953466920862744526",
              "content": {
                "entryType": "TimelineTimelineModule",
                "__typename": "TimelineTimelineModule",
                "items": [
                  {
                    "entryId": "conversationthread-1946450141663359175-tweet-1946450141663359175",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1946450141663359175",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjo2NjE0MTkyNA==",
                                  "rest_id": "66141924",
                                  "affiliates_highlighted_label": {},
                                  "has_graduated_access": true,
                                  "is_blue_verified": false,
                                  "profile_image_shape": "Circle",
                                  "legacy": {
                                    "can_dm": true,
                                    "can_media_tag": true,
                                    "created_at": "Sun Aug 16 16:26:25 +0000 2009",
                                    "default_profile": false,
                                    "default_profile_image": false,
                                    "description": "Senior Data scientist, works in computer vision and generative ai",
                                    "entities": {
                                      "description": {
                                        "urls": []
                                      },
                                      "url": {
                                        "urls": [
                                          {
                                            "display_url": "github.com/spcCodes",
                                            "expanded_url": "http://github.com/spcCodes",
                                            "url": "https://t.co/xKjqtO4pyR",
                                            "indices": [
                                              0,
                                              23
                                            ]
                                          }
                                        ]
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 245,
                                    "followers_count": 112,
                                    "friends_count": 1762,
                                    "has_custom_timelines": false,
                                    "is_translator": false,
                                    "listed_count": 2,
                                    "location": "Bengaluru, India",
                                    "media_count": 13,
                                    "name": "Suman Paul Choudhury",
                                    "normal_followers_count": 112,
                                    "pinned_tweet_ids_str": [],
                                    "possibly_sensitive": false,
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/1953436935395192833/aQdrtGLn_normal.jpg",
                                    "profile_interstitial_type": "",
                                    "screen_name": "sumanpc2008",
                                    "statuses_count": 238,
                                    "translator_type": "none",
                                    "url": "https://t.co/xKjqtO4pyR",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "professional": {
                                    "rest_id": "1558371749019824128",
                                    "professional_type": "Creator",
                                    "category": [
                                      {
                                        "id": 1049,
                                        "name": "Data scientist",
                                        "icon_name": ""
                                      }
                                    ]
                                  },
                                  "tipjar_settings": {
                                    "is_enabled": true
                                  }
                                }
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1946450141663359175"
                              ],
                              "editable_until_msecs": "1752908451000",
                              "is_edit_eligible": false,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "129",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
                            "legacy": {
                              "bookmark_count": 0,
                              "bookmarked": false,
                              "created_at": "Sat Jul 19 06:00:51 +0000 2025",
                              "conversation_id_str": "1946358807875244398",
                              "display_text_range": [
                                12,
                                105
                              ],
                              "entities": {
                                "hashtags": [],
                                "symbols": [],
                                "timestamps": [],
                                "urls": [],
                                "user_mentions": [
                                  {
                                    "id_str": "369777416",
                                    "name": "Jerry Liu",
                                    "screen_name": "jerryjliu0",
                                    "indices": [
                                      0,
                                      11
                                    ]
                                  }
                                ]
                              },
                              "favorite_count": 0,
                              "favorited": false,
                              "full_text": "@jerryjliu0 Is there a sequence of tutorials which we can follow for document extraction using llamaindex",
                              "in_reply_to_screen_name": "jerryjliu0",
                              "in_reply_to_status_id_str": "1946358807875244398",
                              "in_reply_to_user_id_str": "369777416",
                              "is_quote_status": false,
                              "lang": "en",
                              "quote_count": 0,
                              "reply_count": 0,
                              "retweet_count": 0,
                              "retweeted": false,
                              "user_id_str": "66141924",
                              "id_str": "1946450141663359175"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "HighQuality"
                          },
                          "timelinesDetails": {
                            "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                          }
                        }
                      }
                    }
                  }
                ],
                "metadata": {
                  "conversationMetadata": {
                    "allTweetIds": [
                      "1946450141663359175"
                    ],
                    "enableDeduplication": true
                  }
                },
                "displayType": "VerticalConversation",
                "clientEventInfo": {
                  "component": "tweet",
                  "details": {
                    "conversationDetails": {
                      "conversationSection": "HighQuality"
                    },
                    "timelinesDetails": {
                      "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                    }
                  }
                }
              }
            },
            {
              "entryId": "conversationthread-1946715731934195776",
              "sortIndex": "1953466920862744516",
              "content": {
                "entryType": "TimelineTimelineModule",
                "__typename": "TimelineTimelineModule",
                "items": [
                  {
                    "entryId": "conversationthread-1946715731934195776-tweet-1946715731934195776",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1946715731934195776",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjo4MjY4MTE4NjI2NjI1NDEzMTI=",
                                  "rest_id": "826811862662541312",
                                  "affiliates_highlighted_label": {},
                                  "has_graduated_access": true,
                                  "is_blue_verified": false,
                                  "profile_image_shape": "Circle",
                                  "legacy": {
                                    "can_dm": false,
                                    "can_media_tag": true,
                                    "created_at": "Wed Feb 01 15:18:04 +0000 2017",
                                    "default_profile": true,
                                    "default_profile_image": false,
                                    "description": "5th year Ph.D. candidate at Simon Fraser University.",
                                    "entities": {
                                      "description": {
                                        "urls": []
                                      },
                                      "url": {
                                        "urls": [
                                          {
                                            "display_url": "qidanrui.github.io",
                                            "expanded_url": "http://qidanrui.github.io",
                                            "url": "https://t.co/GCZRJrbBqz",
                                            "indices": [
                                              0,
                                              23
                                            ]
                                          }
                                        ]
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 156,
                                    "followers_count": 37,
                                    "friends_count": 147,
                                    "has_custom_timelines": false,
                                    "is_translator": false,
                                    "listed_count": 1,
                                    "location": "Vancouver, British Columbia",
                                    "media_count": 2,
                                    "name": "Danrui Qi",
                                    "normal_followers_count": 37,
                                    "pinned_tweet_ids_str": [],
                                    "possibly_sensitive": false,
                                    "profile_banner_url": "https://pbs.twimg.com/profile_banners/826811862662541312/1636925299",
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/1459996489833332736/XMdaq7Sw_normal.jpg",
                                    "profile_interstitial_type": "",
                                    "screen_name": "DanruiQi",
                                    "statuses_count": 59,
                                    "translator_type": "none",
                                    "url": "https://t.co/GCZRJrbBqz",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "tipjar_settings": {}
                                }
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1946715731934195776"
                              ],
                              "editable_until_msecs": "1752971773000",
                              "is_edit_eligible": false,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "66",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
                            "legacy": {
                              "bookmark_count": 0,
                              "bookmarked": false,
                              "created_at": "Sat Jul 19 23:36:13 +0000 2025",
                              "conversation_id_str": "1946358807875244398",
                              "display_text_range": [
                                12,
                                67
                              ],
                              "entities": {
                                "hashtags": [],
                                "symbols": [],
                                "timestamps": [],
                                "urls": [],
                                "user_mentions": [
                                  {
                                    "id_str": "369777416",
                                    "name": "Jerry Liu",
                                    "screen_name": "jerryjliu0",
                                    "indices": [
                                      0,
                                      11
                                    ]
                                  }
                                ]
                              },
                              "favorite_count": 0,
                              "favorited": false,
                              "full_text": "@jerryjliu0 how can we design this kind of schema with llama index?",
                              "in_reply_to_screen_name": "jerryjliu0",
                              "in_reply_to_status_id_str": "1946358807875244398",
                              "in_reply_to_user_id_str": "369777416",
                              "is_quote_status": false,
                              "lang": "en",
                              "quote_count": 0,
                              "reply_count": 0,
                              "retweet_count": 0,
                              "retweeted": false,
                              "user_id_str": "826811862662541312",
                              "id_str": "1946715731934195776"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "HighQuality"
                          },
                          "timelinesDetails": {
                            "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                          }
                        }
                      }
                    }
                  }
                ],
                "metadata": {
                  "conversationMetadata": {
                    "allTweetIds": [
                      "1946715731934195776"
                    ],
                    "enableDeduplication": true
                  }
                },
                "displayType": "VerticalConversation",
                "clientEventInfo": {
                  "component": "tweet",
                  "details": {
                    "conversationDetails": {
                      "conversationSection": "HighQuality"
                    },
                    "timelinesDetails": {
                      "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                    }
                  }
                }
              }
            },
            {
              "entryId": "tweetdetailrelatedtweets-1953107823010955432",
              "sortIndex": "1953466920862744506",
              "content": {
                "entryType": "TimelineTimelineModule",
                "__typename": "TimelineTimelineModule",
                "items": [
                  {
                    "entryId": "tweetdetailrelatedtweets-1953107823010955432-tweet-1953107823010955432",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1953107823010955432",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjozNDQ4Mjg0MzEz",
                                  "rest_id": "3448284313",
                                  "affiliates_highlighted_label": {},
                                  "has_graduated_access": true,
                                  "is_blue_verified": true,
                                  "profile_image_shape": "Circle",
                                  "legacy": {
                                    "can_dm": true,
                                    "can_media_tag": true,
                                    "created_at": "Fri Sep 04 12:59:26 +0000 2015",
                                    "default_profile": false,
                                    "default_profile_image": false,
                                    "description": "Building with AI agents @dair_ai • Prev: Meta AI, Galactica LLM, Elastic, PaperswithCode, PhD • I share insights on how to build with AI Agents ⬇️",
                                    "entities": {
                                      "description": {
                                        "urls": []
                                      },
                                      "url": {
                                        "urls": [
                                          {
                                            "display_url": "dair-ai.thinkific.com",
                                            "expanded_url": "https://dair-ai.thinkific.com/",
                                            "url": "https://t.co/JBU5beHQNs",
                                            "indices": [
                                              0,
                                              23
                                            ]
                                          }
                                        ]
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 31665,
                                    "followers_count": 258906,
                                    "friends_count": 643,
                                    "has_custom_timelines": true,
                                    "is_translator": false,
                                    "listed_count": 4292,
                                    "location": "",
                                    "media_count": 3760,
                                    "name": "elvis",
                                    "normal_followers_count": 258906,
                                    "pinned_tweet_ids_str": [
                                      "1953152163078635748"
                                    ],
                                    "possibly_sensitive": false,
                                    "profile_banner_url": "https://pbs.twimg.com/profile_banners/3448284313/1565974901",
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/939313677647282181/vZjFWtAn_normal.jpg",
                                    "profile_interstitial_type": "",
                                    "screen_name": "omarsar0",
                                    "statuses_count": 15289,
                                    "translator_type": "regular",
                                    "url": "https://t.co/JBU5beHQNs",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "professional": {
                                    "rest_id": "1460724937073770505",
                                    "professional_type": "Creator",
                                    "category": [
                                      {
                                        "id": 713,
                                        "name": "Science & Technology",
                                        "icon_name": ""
                                      }
                                    ]
                                  },
                                  "tipjar_settings": {
                                    "is_enabled": false,
                                    "cash_app_handle": "£elvisomarsaravia"
                                  }
                                }
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1953107823010955432"
                              ],
                              "editable_until_msecs": "1754495766000",
                              "is_edit_eligible": false,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "98915",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"https://typefully.com/\" rel=\"nofollow\">Typefully</a>",
                            "legacy": {
                              "bookmark_count": 1567,
                              "bookmarked": false,
                              "created_at": "Wed Aug 06 14:56:06 +0000 2025",
                              "conversation_id_str": "1953107823010955432",
                              "display_text_range": [
                                0,
                                211
                              ],
                              "entities": {
                                "hashtags": [],
                                "media": [
                                  {
                                    "display_url": "pic.x.com/EFov92sX19",
                                    "expanded_url": "https://x.com/omarsar0/status/1953107823010955432/photo/1",
                                    "id_str": "1953107820712513536",
                                    "indices": [
                                      212,
                                      235
                                    ],
                                    "media_key": "3_1953107820712513536",
                                    "media_url_https": "https://pbs.twimg.com/media/GxrVNwWbUAAtPUy.jpg",
                                    "type": "photo",
                                    "url": "https://t.co/EFov92sX19",
                                    "ext_media_availability": {
                                      "status": "Available"
                                    },
                                    "features": {
                                      "large": {
                                        "faces": [
                                          {
                                            "x": 472,
                                            "y": 506,
                                            "h": 50,
                                            "w": 50
                                          }
                                        ]
                                      },
                                      "medium": {
                                        "faces": [
                                          {
                                            "x": 472,
                                            "y": 506,
                                            "h": 50,
                                            "w": 50
                                          }
                                        ]
                                      },
                                      "small": {
                                        "faces": [
                                          {
                                            "x": 326,
                                            "y": 349,
                                            "h": 34,
                                            "w": 34
                                          }
                                        ]
                                      },
                                      "orig": {
                                        "faces": [
                                          {
                                            "x": 472,
                                            "y": 506,
                                            "h": 50,
                                            "w": 50
                                          }
                                        ]
                                      }
                                    },
                                    "sizes": {
                                      "large": {
                                        "h": 984,
                                        "w": 829,
                                        "resize": "fit"
                                      },
                                      "medium": {
                                        "h": 984,
                                        "w": 829,
                                        "resize": "fit"
                                      },
                                      "small": {
                                        "h": 680,
                                        "w": 573,
                                        "resize": "fit"
                                      },
                                      "thumb": {
                                        "h": 150,
                                        "w": 150,
                                        "resize": "crop"
                                      }
                                    },
                                    "original_info": {
                                      "height": 984,
                                      "width": 829,
                                      "focus_rects": [
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 829,
                                          "h": 464
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 829,
                                          "h": 829
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 829,
                                          "h": 945
                                        },
                                        {
                                          "x": 171,
                                          "y": 0,
                                          "w": 492,
                                          "h": 984
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 829,
                                          "h": 984
                                        }
                                      ]
                                    },
                                    "media_results": {
                                      "result": {
                                        "media_key": "3_1953107820712513536"
                                      }
                                    }
                                  }
                                ],
                                "symbols": [],
                                "timestamps": [],
                                "urls": [],
                                "user_mentions": []
                              },
                              "extended_entities": {
                                "media": [
                                  {
                                    "display_url": "pic.x.com/EFov92sX19",
                                    "expanded_url": "https://x.com/omarsar0/status/1953107823010955432/photo/1",
                                    "id_str": "1953107820712513536",
                                    "indices": [
                                      212,
                                      235
                                    ],
                                    "media_key": "3_1953107820712513536",
                                    "media_url_https": "https://pbs.twimg.com/media/GxrVNwWbUAAtPUy.jpg",
                                    "type": "photo",
                                    "url": "https://t.co/EFov92sX19",
                                    "ext_media_availability": {
                                      "status": "Available"
                                    },
                                    "features": {
                                      "large": {
                                        "faces": [
                                          {
                                            "x": 472,
                                            "y": 506,
                                            "h": 50,
                                            "w": 50
                                          }
                                        ]
                                      },
                                      "medium": {
                                        "faces": [
                                          {
                                            "x": 472,
                                            "y": 506,
                                            "h": 50,
                                            "w": 50
                                          }
                                        ]
                                      },
                                      "small": {
                                        "faces": [
                                          {
                                            "x": 326,
                                            "y": 349,
                                            "h": 34,
                                            "w": 34
                                          }
                                        ]
                                      },
                                      "orig": {
                                        "faces": [
                                          {
                                            "x": 472,
                                            "y": 506,
                                            "h": 50,
                                            "w": 50
                                          }
                                        ]
                                      }
                                    },
                                    "sizes": {
                                      "large": {
                                        "h": 984,
                                        "w": 829,
                                        "resize": "fit"
                                      },
                                      "medium": {
                                        "h": 984,
                                        "w": 829,
                                        "resize": "fit"
                                      },
                                      "small": {
                                        "h": 680,
                                        "w": 573,
                                        "resize": "fit"
                                      },
                                      "thumb": {
                                        "h": 150,
                                        "w": 150,
                                        "resize": "crop"
                                      }
                                    },
                                    "original_info": {
                                      "height": 984,
                                      "width": 829,
                                      "focus_rects": [
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 829,
                                          "h": 464
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 829,
                                          "h": 829
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 829,
                                          "h": 945
                                        },
                                        {
                                          "x": 171,
                                          "y": 0,
                                          "w": 492,
                                          "h": 984
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 829,
                                          "h": 984
                                        }
                                      ]
                                    },
                                    "media_results": {
                                      "result": {
                                        "media_key": "3_1953107820712513536"
                                      }
                                    }
                                  }
                                ]
                              },
                              "favorite_count": 942,
                              "favorited": false,
                              "full_text": "Efficient Agents\n\nThis is a great study full of insights on how to build efficient agents.\n\nIf you are looking to reduce costs with AI agents, don't miss it.\n\nPay attention to this one, devs!\n\nHere are my notes: https://t.co/EFov92sX19",
                              "is_quote_status": false,
                              "lang": "en",
                              "possibly_sensitive": false,
                              "possibly_sensitive_editable": true,
                              "quote_count": 7,
                              "reply_count": 28,
                              "retweet_count": 144,
                              "retweeted": false,
                              "user_id_str": "3448284313",
                              "id_str": "1953107823010955432"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "related_tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "RelatedTweet"
                          }
                        }
                      }
                    }
                  },
                  {
                    "entryId": "tweetdetailrelatedtweets-1953107823010955432-tweet-1953277065115124054",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1953277065115124054",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjo4MjM1MDY4NTg=",
                                  "rest_id": "823506858",
                                  "affiliates_highlighted_label": {},
                                  "has_graduated_access": true,
                                  "is_blue_verified": true,
                                  "profile_image_shape": "Circle",
                                  "legacy": {
                                    "can_dm": true,
                                    "can_media_tag": true,
                                    "created_at": "Fri Sep 14 15:44:30 +0000 2012",
                                    "default_profile": true,
                                    "default_profile_image": false,
                                    "description": "Currently building @OpenPipeAI. Formerly @ycombinator, @google. I am always down to go on a quest.",
                                    "entities": {
                                      "description": {
                                        "urls": []
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 5054,
                                    "followers_count": 15793,
                                    "friends_count": 249,
                                    "has_custom_timelines": true,
                                    "is_translator": false,
                                    "listed_count": 334,
                                    "location": "Seattle, SF",
                                    "media_count": 209,
                                    "name": "Kyle Corbitt",
                                    "normal_followers_count": 15793,
                                    "pinned_tweet_ids_str": [
                                      "1917269992363680054"
                                    ],
                                    "possibly_sensitive": false,
                                    "profile_banner_url": "https://pbs.twimg.com/profile_banners/823506858/1698191066",
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/1917706841238429696/Kd7qQjjd_normal.jpg",
                                    "profile_interstitial_type": "",
                                    "screen_name": "corbtt",
                                    "statuses_count": 2242,
                                    "translator_type": "none",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "tipjar_settings": {}
                                }
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1953277065115124054"
                              ],
                              "editable_until_msecs": "1754536117000",
                              "is_edit_eligible": false,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "16119",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
                            "legacy": {
                              "bookmark_count": 165,
                              "bookmarked": false,
                              "created_at": "Thu Aug 07 02:08:37 +0000 2025",
                              "conversation_id_str": "1953277065115124054",
                              "display_text_range": [
                                0,
                                268
                              ],
                              "entities": {
                                "hashtags": [],
                                "media": [
                                  {
                                    "display_url": "pic.x.com/7xluFVxA7b",
                                    "expanded_url": "https://x.com/corbtt/status/1953277065115124054/photo/1",
                                    "id_str": "1953276660478033922",
                                    "indices": [
                                      269,
                                      292
                                    ],
                                    "media_key": "3_1953276660478033922",
                                    "media_url_https": "https://pbs.twimg.com/media/GxtuxhfawAIx41e.jpg",
                                    "type": "photo",
                                    "url": "https://t.co/7xluFVxA7b",
                                    "ext_media_availability": {
                                      "status": "Available"
                                    },
                                    "features": {
                                      "large": {
                                        "faces": []
                                      },
                                      "medium": {
                                        "faces": []
                                      },
                                      "small": {
                                        "faces": []
                                      },
                                      "orig": {
                                        "faces": []
                                      }
                                    },
                                    "sizes": {
                                      "large": {
                                        "h": 1064,
                                        "w": 1490,
                                        "resize": "fit"
                                      },
                                      "medium": {
                                        "h": 857,
                                        "w": 1200,
                                        "resize": "fit"
                                      },
                                      "small": {
                                        "h": 486,
                                        "w": 680,
                                        "resize": "fit"
                                      },
                                      "thumb": {
                                        "h": 150,
                                        "w": 150,
                                        "resize": "crop"
                                      }
                                    },
                                    "original_info": {
                                      "height": 1064,
                                      "width": 1490,
                                      "focus_rects": [
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1490,
                                          "h": 834
                                        },
                                        {
                                          "x": 426,
                                          "y": 0,
                                          "w": 1064,
                                          "h": 1064
                                        },
                                        {
                                          "x": 557,
                                          "y": 0,
                                          "w": 933,
                                          "h": 1064
                                        },
                                        {
                                          "x": 958,
                                          "y": 0,
                                          "w": 532,
                                          "h": 1064
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1490,
                                          "h": 1064
                                        }
                                      ]
                                    },
                                    "media_results": {
                                      "result": {
                                        "media_key": "3_1953276660478033922"
                                      }
                                    }
                                  }
                                ],
                                "symbols": [],
                                "timestamps": [],
                                "urls": [],
                                "user_mentions": []
                              },
                              "extended_entities": {
                                "media": [
                                  {
                                    "display_url": "pic.x.com/7xluFVxA7b",
                                    "expanded_url": "https://x.com/corbtt/status/1953277065115124054/photo/1",
                                    "id_str": "1953276660478033922",
                                    "indices": [
                                      269,
                                      292
                                    ],
                                    "media_key": "3_1953276660478033922",
                                    "media_url_https": "https://pbs.twimg.com/media/GxtuxhfawAIx41e.jpg",
                                    "type": "photo",
                                    "url": "https://t.co/7xluFVxA7b",
                                    "ext_media_availability": {
                                      "status": "Available"
                                    },
                                    "features": {
                                      "large": {
                                        "faces": []
                                      },
                                      "medium": {
                                        "faces": []
                                      },
                                      "small": {
                                        "faces": []
                                      },
                                      "orig": {
                                        "faces": []
                                      }
                                    },
                                    "sizes": {
                                      "large": {
                                        "h": 1064,
                                        "w": 1490,
                                        "resize": "fit"
                                      },
                                      "medium": {
                                        "h": 857,
                                        "w": 1200,
                                        "resize": "fit"
                                      },
                                      "small": {
                                        "h": 486,
                                        "w": 680,
                                        "resize": "fit"
                                      },
                                      "thumb": {
                                        "h": 150,
                                        "w": 150,
                                        "resize": "crop"
                                      }
                                    },
                                    "original_info": {
                                      "height": 1064,
                                      "width": 1490,
                                      "focus_rects": [
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1490,
                                          "h": 834
                                        },
                                        {
                                          "x": 426,
                                          "y": 0,
                                          "w": 1064,
                                          "h": 1064
                                        },
                                        {
                                          "x": 557,
                                          "y": 0,
                                          "w": 933,
                                          "h": 1064
                                        },
                                        {
                                          "x": 958,
                                          "y": 0,
                                          "w": 532,
                                          "h": 1064
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1490,
                                          "h": 1064
                                        }
                                      ]
                                    },
                                    "media_results": {
                                      "result": {
                                        "media_key": "3_1953276660478033922"
                                      }
                                    }
                                  }
                                ]
                              },
                              "favorite_count": 268,
                              "favorited": false,
                              "full_text": "Agent Reinforcement Trainer has taken off like a rocket since we launched RULER a couple weeks ago. Today, we passed 5,000 stars on GitHub!\n\nThe community is super friendly and active and it has never been easier to get started with RL. Come join us on GitHub/Discord! https://t.co/7xluFVxA7b",
                              "is_quote_status": false,
                              "lang": "en",
                              "possibly_sensitive": false,
                              "possibly_sensitive_editable": true,
                              "quote_count": 0,
                              "reply_count": 9,
                              "retweet_count": 19,
                              "retweeted": false,
                              "user_id_str": "823506858",
                              "id_str": "1953277065115124054"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "related_tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "RelatedTweet"
                          }
                        }
                      }
                    }
                  },
                  {
                    "entryId": "tweetdetailrelatedtweets-1953107823010955432-tweet-1953116281407701064",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1953116281407701064",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjoxODYxNjA3NTk5Njc1Njk1MTA0",
                                  "rest_id": "1861607599675695104",
                                  "affiliates_highlighted_label": {},
                                  "has_graduated_access": true,
                                  "is_blue_verified": true,
                                  "profile_image_shape": "Circle",
                                  "legacy": {
                                    "can_dm": true,
                                    "can_media_tag": true,
                                    "created_at": "Wed Nov 27 03:07:05 +0000 2024",
                                    "default_profile": true,
                                    "default_profile_image": false,
                                    "description": "Step-by-step guides to building AI Agents & RAG Apps with LLMs | Subscribe now for daily AI news & tutorials in your inbox 📨",
                                    "entities": {
                                      "description": {
                                        "urls": []
                                      },
                                      "url": {
                                        "urls": [
                                          {
                                            "display_url": "theunwindai.com",
                                            "expanded_url": "http://theunwindai.com",
                                            "url": "https://t.co/H3cS2NcsAr",
                                            "indices": [
                                              0,
                                              23
                                            ]
                                          }
                                        ]
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 6878,
                                    "followers_count": 16336,
                                    "friends_count": 2,
                                    "has_custom_timelines": false,
                                    "is_translator": false,
                                    "listed_count": 244,
                                    "location": "",
                                    "media_count": 935,
                                    "name": "Unwind AI",
                                    "normal_followers_count": 16336,
                                    "pinned_tweet_ids_str": [
                                      "1903856339492770189"
                                    ],
                                    "possibly_sensitive": false,
                                    "profile_banner_url": "https://pbs.twimg.com/profile_banners/1861607599675695104/1732677476",
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/1861607826654666752/QtlXoG8l_normal.jpg",
                                    "profile_interstitial_type": "",
                                    "screen_name": "unwind_ai_",
                                    "statuses_count": 2486,
                                    "translator_type": "none",
                                    "url": "https://t.co/H3cS2NcsAr",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "tipjar_settings": {}
                                }
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1953116281407701064"
                              ],
                              "editable_until_msecs": "1754497783000",
                              "is_edit_eligible": false,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "63589",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
                            "legacy": {
                              "bookmark_count": 1195,
                              "bookmarked": false,
                              "created_at": "Wed Aug 06 15:29:43 +0000 2025",
                              "conversation_id_str": "1953116281407701064",
                              "display_text_range": [
                                0,
                                211
                              ],
                              "entities": {
                                "hashtags": [],
                                "media": [
                                  {
                                    "display_url": "pic.x.com/IOBz4tAeo1",
                                    "expanded_url": "https://x.com/unwind_ai_/status/1953116281407701064/photo/1",
                                    "id_str": "1953116126214254592",
                                    "indices": [
                                      212,
                                      235
                                    ],
                                    "media_key": "3_1953116126214254592",
                                    "media_url_https": "https://pbs.twimg.com/media/GxrcxMwWcAA4QAb.jpg",
                                    "type": "photo",
                                    "url": "https://t.co/IOBz4tAeo1",
                                    "ext_media_availability": {
                                      "status": "Available"
                                    },
                                    "features": {
                                      "large": {
                                        "faces": []
                                      },
                                      "medium": {
                                        "faces": []
                                      },
                                      "small": {
                                        "faces": []
                                      },
                                      "orig": {
                                        "faces": []
                                      }
                                    },
                                    "sizes": {
                                      "large": {
                                        "h": 1294,
                                        "w": 1776,
                                        "resize": "fit"
                                      },
                                      "medium": {
                                        "h": 874,
                                        "w": 1200,
                                        "resize": "fit"
                                      },
                                      "small": {
                                        "h": 495,
                                        "w": 680,
                                        "resize": "fit"
                                      },
                                      "thumb": {
                                        "h": 150,
                                        "w": 150,
                                        "resize": "crop"
                                      }
                                    },
                                    "original_info": {
                                      "height": 1294,
                                      "width": 1776,
                                      "focus_rects": [
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1776,
                                          "h": 995
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1294,
                                          "h": 1294
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1135,
                                          "h": 1294
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 647,
                                          "h": 1294
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1776,
                                          "h": 1294
                                        }
                                      ]
                                    },
                                    "allow_download_status": {
                                      "allow_download": true
                                    },
                                    "media_results": {
                                      "result": {
                                        "media_key": "3_1953116126214254592"
                                      }
                                    }
                                  }
                                ],
                                "symbols": [],
                                "timestamps": [],
                                "urls": [],
                                "user_mentions": []
                              },
                              "extended_entities": {
                                "media": [
                                  {
                                    "display_url": "pic.x.com/IOBz4tAeo1",
                                    "expanded_url": "https://x.com/unwind_ai_/status/1953116281407701064/photo/1",
                                    "id_str": "1953116126214254592",
                                    "indices": [
                                      212,
                                      235
                                    ],
                                    "media_key": "3_1953116126214254592",
                                    "media_url_https": "https://pbs.twimg.com/media/GxrcxMwWcAA4QAb.jpg",
                                    "type": "photo",
                                    "url": "https://t.co/IOBz4tAeo1",
                                    "ext_media_availability": {
                                      "status": "Available"
                                    },
                                    "features": {
                                      "large": {
                                        "faces": []
                                      },
                                      "medium": {
                                        "faces": []
                                      },
                                      "small": {
                                        "faces": []
                                      },
                                      "orig": {
                                        "faces": []
                                      }
                                    },
                                    "sizes": {
                                      "large": {
                                        "h": 1294,
                                        "w": 1776,
                                        "resize": "fit"
                                      },
                                      "medium": {
                                        "h": 874,
                                        "w": 1200,
                                        "resize": "fit"
                                      },
                                      "small": {
                                        "h": 495,
                                        "w": 680,
                                        "resize": "fit"
                                      },
                                      "thumb": {
                                        "h": 150,
                                        "w": 150,
                                        "resize": "crop"
                                      }
                                    },
                                    "original_info": {
                                      "height": 1294,
                                      "width": 1776,
                                      "focus_rects": [
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1776,
                                          "h": 995
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1294,
                                          "h": 1294
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1135,
                                          "h": 1294
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 647,
                                          "h": 1294
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1776,
                                          "h": 1294
                                        }
                                      ]
                                    },
                                    "allow_download_status": {
                                      "allow_download": true
                                    },
                                    "media_results": {
                                      "result": {
                                        "media_key": "3_1953116126214254592"
                                      }
                                    }
                                  }
                                ]
                              },
                              "favorite_count": 753,
                              "favorited": false,
                              "full_text": "LangChain literally reverse-engineered Claude Code, Manus, and Deep Research.\n\nThey packaged detailed system prompts, planning tools, sub-agents, and file system access in one Python framework.\n\n100% Opensource. https://t.co/IOBz4tAeo1",
                              "is_quote_status": false,
                              "lang": "en",
                              "possibly_sensitive": false,
                              "possibly_sensitive_editable": true,
                              "quote_count": 3,
                              "reply_count": 43,
                              "retweet_count": 82,
                              "retweeted": false,
                              "user_id_str": "1861607599675695104",
                              "id_str": "1953116281407701064"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "related_tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "RelatedTweet"
                          }
                        }
                      }
                    }
                  },
                  {
                    "entryId": "tweetdetailrelatedtweets-1953107823010955432-tweet-1953399450778382504",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1953399450778382504",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjoxODM2MDc4MTYwNjUzMjQ2NDY0",
                                  "rest_id": "1836078160653246464",
                                  "affiliates_highlighted_label": {},
                                  "has_graduated_access": true,
                                  "is_blue_verified": true,
                                  "profile_image_shape": "Circle",
                                  "legacy": {
                                    "can_dm": true,
                                    "can_media_tag": true,
                                    "created_at": "Tue Sep 17 16:22:16 +0000 2024",
                                    "default_profile": true,
                                    "default_profile_image": false,
                                    "description": "ai engineer | rigorously overfitting on a learning curve",
                                    "entities": {
                                      "description": {
                                        "urls": []
                                      },
                                      "url": {
                                        "urls": [
                                          {
                                            "display_url": "huggingface.co/hesamation",
                                            "expanded_url": "https://huggingface.co/hesamation",
                                            "url": "https://t.co/fcO0XORppA",
                                            "indices": [
                                              0,
                                              23
                                            ]
                                          }
                                        ]
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 6928,
                                    "followers_count": 32153,
                                    "friends_count": 514,
                                    "has_custom_timelines": false,
                                    "is_translator": false,
                                    "listed_count": 414,
                                    "location": "loss landscape",
                                    "media_count": 1103,
                                    "name": "ℏεsam",
                                    "normal_followers_count": 32153,
                                    "pinned_tweet_ids_str": [
                                      "1927461293335728144"
                                    ],
                                    "possibly_sensitive": false,
                                    "profile_banner_url": "https://pbs.twimg.com/profile_banners/1836078160653246464/1739717329",
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/1836428464913588224/fuvWemco_normal.jpg",
                                    "profile_interstitial_type": "",
                                    "screen_name": "Hesamation",
                                    "statuses_count": 2995,
                                    "translator_type": "none",
                                    "url": "https://t.co/fcO0XORppA",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "tipjar_settings": {},
                                  "super_follow_eligible": true
                                }
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1953399450778382504"
                              ],
                              "editable_until_msecs": "1754565296000",
                              "is_edit_eligible": true,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "14968",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
                            "legacy": {
                              "bookmark_count": 599,
                              "bookmarked": false,
                              "created_at": "Thu Aug 07 10:14:56 +0000 2025",
                              "conversation_id_str": "1953399450778382504",
                              "display_text_range": [
                                0,
                                260
                              ],
                              "entities": {
                                "hashtags": [],
                                "media": [
                                  {
                                    "display_url": "pic.x.com/XXODNNLoFt",
                                    "expanded_url": "https://x.com/Hesamation/status/1953399450778382504/photo/1",
                                    "id_str": "1953398854037938176",
                                    "indices": [
                                      261,
                                      284
                                    ],
                                    "media_key": "3_1953398854037938176",
                                    "media_url_https": "https://pbs.twimg.com/media/Gxvd6H-WIAACtu2.jpg",
                                    "type": "photo",
                                    "url": "https://t.co/XXODNNLoFt",
                                    "ext_media_availability": {
                                      "status": "Available"
                                    },
                                    "features": {
                                      "large": {
                                        "faces": []
                                      },
                                      "medium": {
                                        "faces": []
                                      },
                                      "small": {
                                        "faces": []
                                      },
                                      "orig": {
                                        "faces": []
                                      }
                                    },
                                    "sizes": {
                                      "large": {
                                        "h": 1275,
                                        "w": 1061,
                                        "resize": "fit"
                                      },
                                      "medium": {
                                        "h": 1200,
                                        "w": 999,
                                        "resize": "fit"
                                      },
                                      "small": {
                                        "h": 680,
                                        "w": 566,
                                        "resize": "fit"
                                      },
                                      "thumb": {
                                        "h": 150,
                                        "w": 150,
                                        "resize": "crop"
                                      }
                                    },
                                    "original_info": {
                                      "height": 1275,
                                      "width": 1061,
                                      "focus_rects": [
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1061,
                                          "h": 594
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1061,
                                          "h": 1061
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1061,
                                          "h": 1210
                                        },
                                        {
                                          "x": 159,
                                          "y": 0,
                                          "w": 638,
                                          "h": 1275
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1061,
                                          "h": 1275
                                        }
                                      ]
                                    },
                                    "allow_download_status": {
                                      "allow_download": true
                                    },
                                    "media_results": {
                                      "result": {
                                        "media_key": "3_1953398854037938176"
                                      }
                                    }
                                  }
                                ],
                                "symbols": [],
                                "timestamps": [],
                                "urls": [],
                                "user_mentions": [
                                  {
                                    "id_str": "1730159888402395136",
                                    "name": "Unsloth AI",
                                    "screen_name": "UnslothAI",
                                    "indices": [
                                      71,
                                      81
                                    ]
                                  },
                                  {
                                    "id_str": "778764142412984320",
                                    "name": "Hugging Face",
                                    "screen_name": "huggingface",
                                    "indices": [
                                      178,
                                      190
                                    ]
                                  }
                                ]
                              },
                              "extended_entities": {
                                "media": [
                                  {
                                    "display_url": "pic.x.com/XXODNNLoFt",
                                    "expanded_url": "https://x.com/Hesamation/status/1953399450778382504/photo/1",
                                    "id_str": "1953398854037938176",
                                    "indices": [
                                      261,
                                      284
                                    ],
                                    "media_key": "3_1953398854037938176",
                                    "media_url_https": "https://pbs.twimg.com/media/Gxvd6H-WIAACtu2.jpg",
                                    "type": "photo",
                                    "url": "https://t.co/XXODNNLoFt",
                                    "ext_media_availability": {
                                      "status": "Available"
                                    },
                                    "features": {
                                      "large": {
                                        "faces": []
                                      },
                                      "medium": {
                                        "faces": []
                                      },
                                      "small": {
                                        "faces": []
                                      },
                                      "orig": {
                                        "faces": []
                                      }
                                    },
                                    "sizes": {
                                      "large": {
                                        "h": 1275,
                                        "w": 1061,
                                        "resize": "fit"
                                      },
                                      "medium": {
                                        "h": 1200,
                                        "w": 999,
                                        "resize": "fit"
                                      },
                                      "small": {
                                        "h": 680,
                                        "w": 566,
                                        "resize": "fit"
                                      },
                                      "thumb": {
                                        "h": 150,
                                        "w": 150,
                                        "resize": "crop"
                                      }
                                    },
                                    "original_info": {
                                      "height": 1275,
                                      "width": 1061,
                                      "focus_rects": [
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1061,
                                          "h": 594
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1061,
                                          "h": 1061
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1061,
                                          "h": 1210
                                        },
                                        {
                                          "x": 159,
                                          "y": 0,
                                          "w": 638,
                                          "h": 1275
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1061,
                                          "h": 1275
                                        }
                                      ]
                                    },
                                    "allow_download_status": {
                                      "allow_download": true
                                    },
                                    "media_results": {
                                      "result": {
                                        "media_key": "3_1953398854037938176"
                                      }
                                    }
                                  }
                                ]
                              },
                              "favorite_count": 483,
                              "favorited": false,
                              "full_text": "you people don't realize how easy it is to build a solid LLM profile.\n\n@UnslothAI is a free masterclass with so much stuff to learn. perfect for practice, sharing some models on @huggingface, getting cracked, and preping for an interview. as easy as it sounds. https://t.co/XXODNNLoFt",
                              "is_quote_status": false,
                              "lang": "en",
                              "possibly_sensitive": false,
                              "possibly_sensitive_editable": true,
                              "quote_count": 0,
                              "reply_count": 4,
                              "retweet_count": 67,
                              "retweeted": false,
                              "user_id_str": "1836078160653246464",
                              "id_str": "1953399450778382504"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "related_tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "RelatedTweet"
                          }
                        }
                      }
                    }
                  }
                ],
                "displayType": "Vertical",
                "header": {
                  "displayType": "Classic",
                  "text": "Discover more",
                  "socialContext": {
                    "type": "TimelineGeneralContext",
                    "contextType": "TextOnly",
                    "text": "Sourced from across X"
                  },
                  "sticky": true
                },
                "clientEventInfo": {
                  "component": "related_tweet",
                  "details": {
                    "conversationDetails": {
                      "conversationSection": "RelatedTweet"
                    }
                  }
                }
              }
            },
            {
              "entryId": "cursor-showmorethreads-1953466920862744505",
              "sortIndex": "1953466920862744505",
              "content": {
                "entryType": "TimelineTimelineCursor",
                "__typename": "TimelineTimelineCursor",
                "value": "DAAFCgABGxwb0Ip__7cLAAIAAACIRW1QQzZ3QUFBZlEvZ0dKTjB2R3AvQUFBQUFvYkd0em83bGFBU0JzQzM0eTdXekFYR3h2ZWMzQVdzS2diQkIrazRKb3dRQnNETGhkUzJuREhHd0xiQmdUYlVXNGJHdFUzanByQXFCc0QzMUp2bXNCbEd4dHZKRTRhd1ZZYkJBVTFEaGRSaVE9PQgAAwAAAAcAAA",
                "cursorType": "ShowMoreThreads",
                "displayTreatment": {
                  "actionText": "Show probable spam"
                }
              }
            }
          ]
        },
        {
          "type": "TimelineTerminateTimeline",
          "direction": "Top"
        }
      ],
      "metadata": {
        "scribeConfig": {
          "page": "ranked_replies"
        }
      }
    }
  }
}