🐦 Twitter Post Details

Viewing enriched Twitter post

@jerryjliu0

RAG POCs are easy, but building production-grade retrieval is legitimately hard. These are things you don’t realize when you’re first starting out building agents - “wow my chat over 10 pdfs works in 10 mins!”. We learned these lessons as we built out LlamaCloud and wanted to… https://t.co/NWPgDrF64x

Media 1

📊 Media Metadata

{
  "media": [
    {
      "type": "image",
      "url": "https://crmoxkoizveukayfjuyo.supabase.co/storage/v1/object/public/media/posts/1940500707494580698/media_0.jpg?",
      "filename": "media_0.jpg"
    }
  ],
  "nlp": {
    "sentiment": "neutral",
    "topics": [
      "RAG POCs",
      "production-grade retrieval",
      "building agents"
    ],
    "entities": [
      "LlamaCloud"
    ],
    "summary": "The tweet discusses the challenges of building production-grade retrieval systems compared to initial successes with RAG POCs.",
    "language": "en",
    "processed_at": "2025-08-07T09:53:48.360128"
  }
}

🔧 Raw API Response

{
  "data": {
    "threaded_conversation_with_injections_v2": {
      "instructions": [
        {
          "type": "TimelineClearCache"
        },
        {
          "type": "TimelineAddEntries",
          "entries": [
            {
              "entryId": "tweet-1940500707494580698",
              "sortIndex": "1953484718833926144",
              "content": {
                "entryType": "TimelineTimelineItem",
                "__typename": "TimelineTimelineItem",
                "itemContent": {
                  "itemType": "TimelineTweet",
                  "__typename": "TimelineTweet",
                  "tweet_results": {
                    "result": {
                      "__typename": "Tweet",
                      "rest_id": "1940500707494580698",
                      "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": 64136,
                              "friends_count": 1378,
                              "has_custom_timelines": true,
                              "is_translator": false,
                              "listed_count": 1295,
                              "location": "",
                              "media_count": 1244,
                              "name": "Jerry Liu",
                              "normal_followers_count": 64136,
                              "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": [
                          "1940500707494580698"
                        ],
                        "editable_until_msecs": "1751489996000",
                        "is_edit_eligible": true,
                        "edits_remaining": "5"
                      },
                      "is_translatable": false,
                      "views": {
                        "count": "31715",
                        "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": "Tm90ZVR3ZWV0OjE5NDA1MDA3MDcyODg5NjkyMTY=",
                            "text": "RAG POCs are easy, but building production-grade retrieval is legitimately hard.\n\nThese are things you don’t realize when you’re first starting out building agents - “wow my chat over 10 pdfs works in 10 mins!”. We learned these lessons as we built out LlamaCloud and wanted to share them with you 💡:\n\n1. Access Control: if you want to gate data through user permissions, you need to invest in data connectors that actually index different levels of permission metadata within the source document.\n2. Failure Planning: LLM APIs have rate-limits on large volumes. Data sources require you to think about credential expiration and data throughput. If you’re indexing 1M PDFs and it fails halfway through, ideally you don’t start from scratch.\n3. Noisy Neighbors: If you have a lot of RAG pipelines through a central system, you need to make sure that one large job doesn’t take down every other pipeline.\n\nThese days context engineering is a hot topic, and one of the primary sources of context remains your own enterprise data.\n\nFull credits to @thesourabhd for this thoughtful blog post: https://t.co/SaDXpzale9\nCome check out LlamaCloud if you want to have a managed document indexing/retrieval platform: https://t.co/XYZmx5TFz8",
                            "entity_set": {
                              "hashtags": [],
                              "symbols": [],
                              "urls": [
                                {
                                  "display_url": "llamaindex.ai/blog/4-ways-ll…",
                                  "expanded_url": "https://www.llamaindex.ai/blog/4-ways-llamacloud-scales-enterprise-rag?utm_source=socials&medium=li_social",
                                  "url": "https://t.co/SaDXpzale9",
                                  "indices": [
                                    1088,
                                    1111
                                  ]
                                },
                                {
                                  "display_url": "cloud.llamaindex.ai",
                                  "expanded_url": "https://cloud.llamaindex.ai/",
                                  "url": "https://t.co/XYZmx5TFz8",
                                  "indices": [
                                    1206,
                                    1229
                                  ]
                                }
                              ],
                              "user_mentions": [
                                {
                                  "id_str": "1515137577962991618",
                                  "name": "Sourabh Desai",
                                  "screen_name": "thesourabhd",
                                  "indices": [
                                    1044,
                                    1056
                                  ]
                                }
                              ]
                            },
                            "richtext": {
                              "richtext_tags": [
                                {
                                  "from_index": 303,
                                  "to_index": 322,
                                  "richtext_types": [
                                    "Bold"
                                  ]
                                },
                                {
                                  "from_index": 499,
                                  "to_index": 519,
                                  "richtext_types": [
                                    "Bold"
                                  ]
                                },
                                {
                                  "from_index": 742,
                                  "to_index": 761,
                                  "richtext_types": [
                                    "Bold"
                                  ]
                                }
                              ]
                            },
                            "media": {
                              "inline_media": []
                            }
                          }
                        }
                      },
                      "quoted_status_result": {
                        "result": {
                          "__typename": "Tweet",
                          "rest_id": "1940440399690248669",
                          "has_birdwatch_notes": false,
                          "core": {
                            "user_results": {
                              "result": {
                                "__typename": "User",
                                "id": "VXNlcjoxNjA0Mjc4MzU4Mjk2MDU1ODA4",
                                "rest_id": "1604278358296055808",
                                "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": "Sun Dec 18 00:52:44 +0000 2022",
                                  "default_profile": true,
                                  "default_profile_image": false,
                                  "description": "Build AI agents over your documents\n\nGithub: https://t.co/HC19j7vMwc\nDocs: https://t.co/QInqg2zksh\nLlamaCloud: https://t.co/yQGTiRSNvj",
                                  "entities": {
                                    "description": {
                                      "urls": [
                                        {
                                          "display_url": "github.com/run-llama/llam…",
                                          "expanded_url": "http://github.com/run-llama/llama_index",
                                          "url": "https://t.co/HC19j7vMwc",
                                          "indices": [
                                            45,
                                            68
                                          ]
                                        },
                                        {
                                          "display_url": "docs.llamaindex.ai",
                                          "expanded_url": "http://docs.llamaindex.ai",
                                          "url": "https://t.co/QInqg2zksh",
                                          "indices": [
                                            75,
                                            98
                                          ]
                                        },
                                        {
                                          "display_url": "cloud.llamaindex.ai",
                                          "expanded_url": "https://cloud.llamaindex.ai/",
                                          "url": "https://t.co/yQGTiRSNvj",
                                          "indices": [
                                            111,
                                            134
                                          ]
                                        }
                                      ]
                                    },
                                    "url": {
                                      "urls": [
                                        {
                                          "display_url": "llamaindex.ai",
                                          "expanded_url": "https://www.llamaindex.ai/",
                                          "url": "https://t.co/epzefqQqZx",
                                          "indices": [
                                            0,
                                            23
                                          ]
                                        }
                                      ]
                                    }
                                  },
                                  "fast_followers_count": 0,
                                  "favourites_count": 1425,
                                  "followers_count": 99661,
                                  "friends_count": 28,
                                  "has_custom_timelines": false,
                                  "is_translator": false,
                                  "listed_count": 1571,
                                  "location": "",
                                  "media_count": 1676,
                                  "name": "LlamaIndex 🦙",
                                  "normal_followers_count": 99661,
                                  "pinned_tweet_ids_str": [
                                    "1950285220663742516"
                                  ],
                                  "possibly_sensitive": false,
                                  "profile_banner_url": "https://pbs.twimg.com/profile_banners/1604278358296055808/1752258343",
                                  "profile_image_url_https": "https://pbs.twimg.com/profile_images/1623505166996742144/n-PNQGgd_normal.jpg",
                                  "profile_interstitial_type": "",
                                  "screen_name": "llama_index",
                                  "statuses_count": 3500,
                                  "translator_type": "none",
                                  "url": "https://t.co/epzefqQqZx",
                                  "verified": false,
                                  "want_retweets": false,
                                  "withheld_in_countries": []
                                },
                                "tipjar_settings": {}
                              }
                            }
                          },
                          "unmention_data": {},
                          "edit_control": {
                            "edit_tweet_ids": [
                              "1940440399690248669"
                            ],
                            "editable_until_msecs": "1751475617000",
                            "is_edit_eligible": true,
                            "edits_remaining": "5"
                          },
                          "is_translatable": false,
                          "views": {
                            "count": "37266",
                            "state": "EnabledWithCount"
                          },
                          "source": "<a href=\"https://typefully.com/\" rel=\"nofollow\">Typefully</a>",
                          "note_tweet": {
                            "is_expandable": true,
                            "note_tweet_results": {
                              "result": {
                                "id": "Tm90ZVR3ZWV0OjE5NDA0NDAzOTk1MDE0NTk0NTY=",
                                "text": "New blog: 4 Ways LlamaCloud Scales Enterprise RAG\n\nAs we've built LlamaCloud to scale up to truly huge enterprise workloads, we've learned a lot of lessons. In this post we share them so others building high-scale document indexing and retrieval can learn what's coming as they scale up.\n\nLessons include:\n➡️ Noisy neighbor problems - Heavy users can starve other users' file processing, requiring robust multi-tenant scheduling and resource management\n➡️ Access control complexity - Enterprise RAG must maintain document-level permissions from source systems and filter retrieval results based on user access rights\n➡️ Document parsing is critical - LlamaParse converts diverse enterprise formats (PDFs, PowerPoints, Excel) into standardized markdown while preserving semantic structure and extracting tables/images\n➡️ Plan for failures - AI service rate limits, data source limitations, and system outages require custom retry logic and checkpointing to resume from failure points\n\nRead the full blog post here:\nhttps://t.co/RceZ8KKCbQ",
                                "entity_set": {
                                  "hashtags": [],
                                  "symbols": [],
                                  "urls": [
                                    {
                                      "display_url": "llamaindex.ai/blog/4-ways-ll…",
                                      "expanded_url": "https://www.llamaindex.ai/blog/4-ways-llamacloud-scales-enterprise-rag?utm_source=socials&medium=li_social",
                                      "url": "https://t.co/RceZ8KKCbQ",
                                      "indices": [
                                        1014,
                                        1037
                                      ]
                                    }
                                  ],
                                  "user_mentions": []
                                }
                              }
                            }
                          },
                          "legacy": {
                            "bookmark_count": 23,
                            "bookmarked": false,
                            "created_at": "Wed Jul 02 16:00:17 +0000 2025",
                            "conversation_id_str": "1940440399690248669",
                            "display_text_range": [
                              0,
                              278
                            ],
                            "entities": {
                              "hashtags": [],
                              "media": [
                                {
                                  "display_url": "pic.x.com/Crub4llh7B",
                                  "expanded_url": "https://x.com/llama_index/status/1940440399690248669/photo/1",
                                  "id_str": "1940440396984909824",
                                  "indices": [
                                    279,
                                    302
                                  ],
                                  "media_key": "3_1940440396984909824",
                                  "media_url_https": "https://pbs.twimg.com/media/Gu3UQpoagAAY9Bb.png",
                                  "type": "photo",
                                  "url": "https://t.co/Crub4llh7B",
                                  "ext_media_availability": {
                                    "status": "Available"
                                  },
                                  "features": {
                                    "large": {
                                      "faces": [
                                        {
                                          "x": 404,
                                          "y": 269,
                                          "h": 78,
                                          "w": 78
                                        }
                                      ]
                                    },
                                    "medium": {
                                      "faces": [
                                        {
                                          "x": 404,
                                          "y": 269,
                                          "h": 78,
                                          "w": 78
                                        }
                                      ]
                                    },
                                    "small": {
                                      "faces": [
                                        {
                                          "x": 381,
                                          "y": 254,
                                          "h": 73,
                                          "w": 73
                                        }
                                      ]
                                    },
                                    "orig": {
                                      "faces": [
                                        {
                                          "x": 404,
                                          "y": 269,
                                          "h": 78,
                                          "w": 78
                                        }
                                      ]
                                    }
                                  },
                                  "sizes": {
                                    "large": {
                                      "h": 480,
                                      "w": 720,
                                      "resize": "fit"
                                    },
                                    "medium": {
                                      "h": 480,
                                      "w": 720,
                                      "resize": "fit"
                                    },
                                    "small": {
                                      "h": 453,
                                      "w": 680,
                                      "resize": "fit"
                                    },
                                    "thumb": {
                                      "h": 150,
                                      "w": 150,
                                      "resize": "crop"
                                    }
                                  },
                                  "original_info": {
                                    "height": 480,
                                    "width": 720,
                                    "focus_rects": [
                                      {
                                        "x": 0,
                                        "y": 0,
                                        "w": 720,
                                        "h": 403
                                      },
                                      {
                                        "x": 240,
                                        "y": 0,
                                        "w": 480,
                                        "h": 480
                                      },
                                      {
                                        "x": 299,
                                        "y": 0,
                                        "w": 421,
                                        "h": 480
                                      },
                                      {
                                        "x": 474,
                                        "y": 0,
                                        "w": 240,
                                        "h": 480
                                      },
                                      {
                                        "x": 0,
                                        "y": 0,
                                        "w": 720,
                                        "h": 480
                                      }
                                    ]
                                  },
                                  "media_results": {
                                    "result": {
                                      "media_key": "3_1940440396984909824"
                                    }
                                  }
                                }
                              ],
                              "symbols": [],
                              "timestamps": [],
                              "urls": [],
                              "user_mentions": []
                            },
                            "extended_entities": {
                              "media": [
                                {
                                  "display_url": "pic.x.com/Crub4llh7B",
                                  "expanded_url": "https://x.com/llama_index/status/1940440399690248669/photo/1",
                                  "id_str": "1940440396984909824",
                                  "indices": [
                                    279,
                                    302
                                  ],
                                  "media_key": "3_1940440396984909824",
                                  "media_url_https": "https://pbs.twimg.com/media/Gu3UQpoagAAY9Bb.png",
                                  "type": "photo",
                                  "url": "https://t.co/Crub4llh7B",
                                  "ext_media_availability": {
                                    "status": "Available"
                                  },
                                  "features": {
                                    "large": {
                                      "faces": [
                                        {
                                          "x": 404,
                                          "y": 269,
                                          "h": 78,
                                          "w": 78
                                        }
                                      ]
                                    },
                                    "medium": {
                                      "faces": [
                                        {
                                          "x": 404,
                                          "y": 269,
                                          "h": 78,
                                          "w": 78
                                        }
                                      ]
                                    },
                                    "small": {
                                      "faces": [
                                        {
                                          "x": 381,
                                          "y": 254,
                                          "h": 73,
                                          "w": 73
                                        }
                                      ]
                                    },
                                    "orig": {
                                      "faces": [
                                        {
                                          "x": 404,
                                          "y": 269,
                                          "h": 78,
                                          "w": 78
                                        }
                                      ]
                                    }
                                  },
                                  "sizes": {
                                    "large": {
                                      "h": 480,
                                      "w": 720,
                                      "resize": "fit"
                                    },
                                    "medium": {
                                      "h": 480,
                                      "w": 720,
                                      "resize": "fit"
                                    },
                                    "small": {
                                      "h": 453,
                                      "w": 680,
                                      "resize": "fit"
                                    },
                                    "thumb": {
                                      "h": 150,
                                      "w": 150,
                                      "resize": "crop"
                                    }
                                  },
                                  "original_info": {
                                    "height": 480,
                                    "width": 720,
                                    "focus_rects": [
                                      {
                                        "x": 0,
                                        "y": 0,
                                        "w": 720,
                                        "h": 403
                                      },
                                      {
                                        "x": 240,
                                        "y": 0,
                                        "w": 480,
                                        "h": 480
                                      },
                                      {
                                        "x": 299,
                                        "y": 0,
                                        "w": 421,
                                        "h": 480
                                      },
                                      {
                                        "x": 474,
                                        "y": 0,
                                        "w": 240,
                                        "h": 480
                                      },
                                      {
                                        "x": 0,
                                        "y": 0,
                                        "w": 720,
                                        "h": 480
                                      }
                                    ]
                                  },
                                  "media_results": {
                                    "result": {
                                      "media_key": "3_1940440396984909824"
                                    }
                                  }
                                }
                              ]
                            },
                            "favorite_count": 27,
                            "favorited": false,
                            "full_text": "New blog: 4 Ways LlamaCloud Scales Enterprise RAG\n\nAs we've built LlamaCloud to scale up to truly huge enterprise workloads, we've learned a lot of lessons. In this post we share them so others building high-scale document indexing and retrieval can learn what's coming as they… https://t.co/Crub4llh7B",
                            "is_quote_status": false,
                            "lang": "en",
                            "possibly_sensitive": false,
                            "possibly_sensitive_editable": true,
                            "quote_count": 2,
                            "reply_count": 1,
                            "retweet_count": 5,
                            "retweeted": false,
                            "user_id_str": "1604278358296055808",
                            "id_str": "1940440399690248669"
                          }
                        }
                      },
                      "legacy": {
                        "bookmark_count": 320,
                        "bookmarked": false,
                        "created_at": "Wed Jul 02 19:59:56 +0000 2025",
                        "conversation_id_str": "1940500707494580698",
                        "display_text_range": [
                          0,
                          278
                        ],
                        "entities": {
                          "hashtags": [],
                          "media": [
                            {
                              "display_url": "pic.x.com/NWPgDrF64x",
                              "expanded_url": "https://x.com/jerryjliu0/status/1940500707494580698/photo/1",
                              "id_str": "1940500670496350208",
                              "indices": [
                                279,
                                302
                              ],
                              "media_key": "3_1940500670496350208",
                              "media_url_https": "https://pbs.twimg.com/media/Gu4LFB9XoAAvAb5.jpg",
                              "type": "photo",
                              "url": "https://t.co/NWPgDrF64x",
                              "ext_media_availability": {
                                "status": "Available"
                              },
                              "features": {
                                "large": {
                                  "faces": [
                                    {
                                      "x": 156,
                                      "y": 98,
                                      "h": 36,
                                      "w": 36
                                    }
                                  ]
                                },
                                "medium": {
                                  "faces": [
                                    {
                                      "x": 156,
                                      "y": 98,
                                      "h": 36,
                                      "w": 36
                                    }
                                  ]
                                },
                                "small": {
                                  "faces": [
                                    {
                                      "x": 141,
                                      "y": 88,
                                      "h": 32,
                                      "w": 32
                                    }
                                  ]
                                },
                                "orig": {
                                  "faces": [
                                    {
                                      "x": 156,
                                      "y": 98,
                                      "h": 36,
                                      "w": 36
                                    }
                                  ]
                                }
                              },
                              "sizes": {
                                "large": {
                                  "h": 207,
                                  "w": 750,
                                  "resize": "fit"
                                },
                                "medium": {
                                  "h": 207,
                                  "w": 750,
                                  "resize": "fit"
                                },
                                "small": {
                                  "h": 188,
                                  "w": 680,
                                  "resize": "fit"
                                },
                                "thumb": {
                                  "h": 150,
                                  "w": 150,
                                  "resize": "crop"
                                }
                              },
                              "original_info": {
                                "height": 207,
                                "width": 750,
                                "focus_rects": [
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 370,
                                    "h": 207
                                  },
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 207,
                                    "h": 207
                                  },
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 182,
                                    "h": 207
                                  },
                                  {
                                    "x": 4,
                                    "y": 0,
                                    "w": 104,
                                    "h": 207
                                  },
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 750,
                                    "h": 207
                                  }
                                ]
                              },
                              "media_results": {
                                "result": {
                                  "media_key": "3_1940500670496350208"
                                }
                              }
                            }
                          ],
                          "symbols": [],
                          "timestamps": [],
                          "urls": [],
                          "user_mentions": []
                        },
                        "extended_entities": {
                          "media": [
                            {
                              "display_url": "pic.x.com/NWPgDrF64x",
                              "expanded_url": "https://x.com/jerryjliu0/status/1940500707494580698/photo/1",
                              "id_str": "1940500670496350208",
                              "indices": [
                                279,
                                302
                              ],
                              "media_key": "3_1940500670496350208",
                              "media_url_https": "https://pbs.twimg.com/media/Gu4LFB9XoAAvAb5.jpg",
                              "type": "photo",
                              "url": "https://t.co/NWPgDrF64x",
                              "ext_media_availability": {
                                "status": "Available"
                              },
                              "features": {
                                "large": {
                                  "faces": [
                                    {
                                      "x": 156,
                                      "y": 98,
                                      "h": 36,
                                      "w": 36
                                    }
                                  ]
                                },
                                "medium": {
                                  "faces": [
                                    {
                                      "x": 156,
                                      "y": 98,
                                      "h": 36,
                                      "w": 36
                                    }
                                  ]
                                },
                                "small": {
                                  "faces": [
                                    {
                                      "x": 141,
                                      "y": 88,
                                      "h": 32,
                                      "w": 32
                                    }
                                  ]
                                },
                                "orig": {
                                  "faces": [
                                    {
                                      "x": 156,
                                      "y": 98,
                                      "h": 36,
                                      "w": 36
                                    }
                                  ]
                                }
                              },
                              "sizes": {
                                "large": {
                                  "h": 207,
                                  "w": 750,
                                  "resize": "fit"
                                },
                                "medium": {
                                  "h": 207,
                                  "w": 750,
                                  "resize": "fit"
                                },
                                "small": {
                                  "h": 188,
                                  "w": 680,
                                  "resize": "fit"
                                },
                                "thumb": {
                                  "h": 150,
                                  "w": 150,
                                  "resize": "crop"
                                }
                              },
                              "original_info": {
                                "height": 207,
                                "width": 750,
                                "focus_rects": [
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 370,
                                    "h": 207
                                  },
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 207,
                                    "h": 207
                                  },
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 182,
                                    "h": 207
                                  },
                                  {
                                    "x": 4,
                                    "y": 0,
                                    "w": 104,
                                    "h": 207
                                  },
                                  {
                                    "x": 0,
                                    "y": 0,
                                    "w": 750,
                                    "h": 207
                                  }
                                ]
                              },
                              "media_results": {
                                "result": {
                                  "media_key": "3_1940500670496350208"
                                }
                              }
                            }
                          ]
                        },
                        "favorite_count": 237,
                        "favorited": false,
                        "full_text": "RAG POCs are easy, but building production-grade retrieval is legitimately hard.\n\nThese are things you don’t realize when you’re first starting out building agents - “wow my chat over 10 pdfs works in 10 mins!”. We learned these lessons as we built out LlamaCloud and wanted to… https://t.co/NWPgDrF64x",
                        "is_quote_status": true,
                        "lang": "en",
                        "possibly_sensitive": false,
                        "possibly_sensitive_editable": true,
                        "quote_count": 2,
                        "quoted_status_id_str": "1940440399690248669",
                        "quoted_status_permalink": {
                          "url": "https://t.co/yh8IDeAffy",
                          "expanded": "https://twitter.com/llama_index/status/1940440399690248669",
                          "display": "x.com/llama_index/st…"
                        },
                        "reply_count": 4,
                        "retweet_count": 41,
                        "retweeted": false,
                        "user_id_str": "369777416",
                        "id_str": "1940500707494580698"
                      },
                      "quick_promote_eligibility": {
                        "eligibility": "IneligibleNotProfessional"
                      }
                    }
                  },
                  "tweetDisplayType": "Tweet"
                },
                "clientEventInfo": {
                  "component": "tweet",
                  "element": "tweet"
                }
              }
            },
            {
              "entryId": "conversationthread-1940741467313786905",
              "sortIndex": "1953484718833926134",
              "content": {
                "entryType": "TimelineTimelineModule",
                "__typename": "TimelineTimelineModule",
                "items": [
                  {
                    "entryId": "conversationthread-1940741467313786905-tweet-1940741467313786905",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1940741467313786905",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjoxNzcwNjk5NDU2MDI4OTk5Njgw",
                                  "rest_id": "1770699456028999680",
                                  "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": "Thu Mar 21 06:30:39 +0000 2024",
                                    "default_profile": true,
                                    "default_profile_image": false,
                                    "description": "Adaptable Resilience Companion\n\nhttps://t.co/tNQzVVqwF6\nhttps://t.co/LBiR2tP6D0\nhttps://t.co/zv7ewbSnV5\n\nhttps://t.co/mJ75wwWauV\n✝@MissFoofy2000",
                                    "entities": {
                                      "description": {
                                        "urls": [
                                          {
                                            "display_url": "int3.tech",
                                            "expanded_url": "https://int3.tech",
                                            "url": "https://t.co/tNQzVVqwF6",
                                            "indices": [
                                              32,
                                              55
                                            ]
                                          },
                                          {
                                            "display_url": "synterfuse.org",
                                            "expanded_url": "https://synterfuse.org",
                                            "url": "https://t.co/LBiR2tP6D0",
                                            "indices": [
                                              56,
                                              79
                                            ]
                                          },
                                          {
                                            "display_url": "felixandbob.ai",
                                            "expanded_url": "https://felixandbob.ai",
                                            "url": "https://t.co/zv7ewbSnV5",
                                            "indices": [
                                              80,
                                              103
                                            ]
                                          },
                                          {
                                            "display_url": "michaeldawley.com",
                                            "expanded_url": "https://michaeldawley.com",
                                            "url": "https://t.co/mJ75wwWauV",
                                            "indices": [
                                              105,
                                              128
                                            ]
                                          }
                                        ]
                                      },
                                      "url": {
                                        "urls": [
                                          {
                                            "display_url": "linkedin.com/in/michael-r-d…",
                                            "expanded_url": "https://www.linkedin.com/in/michael-r-dawley-jr/",
                                            "url": "https://t.co/PAN9t4Y0av",
                                            "indices": [
                                              0,
                                              23
                                            ]
                                          }
                                        ]
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 10443,
                                    "followers_count": 925,
                                    "friends_count": 1836,
                                    "has_custom_timelines": false,
                                    "is_translator": false,
                                    "listed_count": 1,
                                    "location": "",
                                    "media_count": 1844,
                                    "name": "Michael R Dawley Jr",
                                    "normal_followers_count": 925,
                                    "pinned_tweet_ids_str": [
                                      "1952921501054710166"
                                    ],
                                    "possibly_sensitive": false,
                                    "profile_banner_url": "https://pbs.twimg.com/profile_banners/1770699456028999680/1737271169",
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/1770699528292745216/aqEoZhPh_normal.png",
                                    "profile_interstitial_type": "",
                                    "screen_name": "mrdj1968",
                                    "statuses_count": 5275,
                                    "translator_type": "none",
                                    "url": "https://t.co/PAN9t4Y0av",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "tipjar_settings": {}
                                }
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1940741467313786905"
                              ],
                              "editable_until_msecs": "1751547397000",
                              "is_edit_eligible": false,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "151",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
                            "legacy": {
                              "bookmark_count": 0,
                              "bookmarked": false,
                              "created_at": "Thu Jul 03 11:56:37 +0000 2025",
                              "conversation_id_str": "1940500707494580698",
                              "display_text_range": [
                                12,
                                140
                              ],
                              "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 My exp ... POC ... over a caffeine fueled weekend ... Enterprise Prod Implementation over the next 6 to 18 weeks ... or more ...",
                              "in_reply_to_screen_name": "jerryjliu0",
                              "in_reply_to_status_id_str": "1940500707494580698",
                              "in_reply_to_user_id_str": "369777416",
                              "is_quote_status": false,
                              "lang": "en",
                              "place": {
                                "bounding_box": {
                                  "coordinates": [
                                    [
                                      [
                                        -96.657192,
                                        33.050793
                                      ],
                                      [
                                        -96.657192,
                                        33.085826
                                      ],
                                      [
                                        -96.5957955,
                                        33.085826
                                      ],
                                      [
                                        -96.5957955,
                                        33.050793
                                      ],
                                      [
                                        -96.657192,
                                        33.050793
                                      ]
                                    ]
                                  ],
                                  "type": "Polygon"
                                },
                                "country": "United States",
                                "country_code": "US",
                                "full_name": "Parker, TX",
                                "name": "Parker",
                                "id": "01392a9314d81d6f",
                                "place_type": "city",
                                "url": "https://api.twitter.com/1.1/geo/id/01392a9314d81d6f.json"
                              },
                              "quote_count": 0,
                              "reply_count": 0,
                              "retweet_count": 0,
                              "retweeted": false,
                              "user_id_str": "1770699456028999680",
                              "id_str": "1940741467313786905"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "HighQuality"
                          },
                          "timelinesDetails": {
                            "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                          }
                        }
                      }
                    }
                  }
                ],
                "metadata": {
                  "conversationMetadata": {
                    "allTweetIds": [
                      "1940741467313786905"
                    ],
                    "enableDeduplication": true
                  }
                },
                "displayType": "VerticalConversation",
                "clientEventInfo": {
                  "component": "tweet",
                  "details": {
                    "conversationDetails": {
                      "conversationSection": "HighQuality"
                    },
                    "timelinesDetails": {
                      "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                    }
                  }
                }
              }
            },
            {
              "entryId": "conversationthread-1940505414191419717",
              "sortIndex": "1953484718833926124",
              "content": {
                "entryType": "TimelineTimelineModule",
                "__typename": "TimelineTimelineModule",
                "items": [
                  {
                    "entryId": "conversationthread-1940505414191419717-tweet-1940505414191419717",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1940505414191419717",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjoxOTI3NDA0NTU5OTUwODc2Njcz",
                                  "rest_id": "1927404559950876673",
                                  "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": "Tue May 27 16:41:11 +0000 2025",
                                    "default_profile": true,
                                    "default_profile_image": false,
                                    "description": "Interested in ML, data centers, demographics",
                                    "entities": {
                                      "description": {
                                        "urls": []
                                      },
                                      "url": {
                                        "urls": [
                                          {
                                            "display_url": "github.com/MattJBorowski1…",
                                            "expanded_url": "https://github.com/MattJBorowski1991",
                                            "url": "https://t.co/FPLKiwPWk4",
                                            "indices": [
                                              0,
                                              23
                                            ]
                                          }
                                        ]
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 35,
                                    "followers_count": 10,
                                    "friends_count": 86,
                                    "has_custom_timelines": false,
                                    "is_translator": false,
                                    "listed_count": 0,
                                    "location": "",
                                    "media_count": 1,
                                    "name": "Matt J. Borowski",
                                    "normal_followers_count": 10,
                                    "pinned_tweet_ids_str": [],
                                    "possibly_sensitive": false,
                                    "profile_banner_url": "https://pbs.twimg.com/profile_banners/1927404559950876673/1748587702",
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/1927406620939538432/SZWtZw5F_normal.jpg",
                                    "profile_interstitial_type": "",
                                    "screen_name": "MattJBorowski",
                                    "statuses_count": 104,
                                    "translator_type": "none",
                                    "url": "https://t.co/FPLKiwPWk4",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "tipjar_settings": {}
                                }
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1940505414191419717"
                              ],
                              "editable_until_msecs": "1751491118000",
                              "is_edit_eligible": false,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "337",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
                            "legacy": {
                              "bookmark_count": 1,
                              "bookmarked": false,
                              "created_at": "Wed Jul 02 20:18:38 +0000 2025",
                              "conversation_id_str": "1940500707494580698",
                              "display_text_range": [
                                12,
                                40
                              ],
                              "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 Thanks Jerry, super helpful!",
                              "in_reply_to_screen_name": "jerryjliu0",
                              "in_reply_to_status_id_str": "1940500707494580698",
                              "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": "1927404559950876673",
                              "id_str": "1940505414191419717"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "HighQuality"
                          },
                          "timelinesDetails": {
                            "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                          }
                        }
                      }
                    }
                  }
                ],
                "metadata": {
                  "conversationMetadata": {
                    "allTweetIds": [
                      "1940505414191419717"
                    ],
                    "enableDeduplication": true
                  }
                },
                "displayType": "VerticalConversation",
                "clientEventInfo": {
                  "component": "tweet",
                  "details": {
                    "conversationDetails": {
                      "conversationSection": "HighQuality"
                    },
                    "timelinesDetails": {
                      "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                    }
                  }
                }
              }
            },
            {
              "entryId": "conversationthread-1940726317366063512",
              "sortIndex": "1953484718833926114",
              "content": {
                "entryType": "TimelineTimelineModule",
                "__typename": "TimelineTimelineModule",
                "items": [
                  {
                    "entryId": "conversationthread-1940726317366063512-tweet-1940726317366063512",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1940726317366063512",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjo5Nzc2ODc2NTUzNDQ0NTk3NzY=",
                                  "rest_id": "977687655344459776",
                                  "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": "Sat Mar 24 23:24:36 +0000 2018",
                                    "default_profile": false,
                                    "default_profile_image": false,
                                    "description": "Founder & CEO of Iternal Technologies | 6’4” | Bitcoin | MAGA | Filmmaker | Author | Black Belt | Builder | Thinker | Podcaster | Artist | Chef",
                                    "entities": {
                                      "description": {
                                        "urls": []
                                      },
                                      "url": {
                                        "urls": [
                                          {
                                            "display_url": "iternal.ai",
                                            "expanded_url": "https://iternal.ai",
                                            "url": "https://t.co/b3WSOlcsQL",
                                            "indices": [
                                              0,
                                              23
                                            ]
                                          }
                                        ]
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 2097,
                                    "followers_count": 1924,
                                    "friends_count": 183,
                                    "has_custom_timelines": false,
                                    "is_translator": false,
                                    "listed_count": 7,
                                    "location": "Austin, TX",
                                    "media_count": 143,
                                    "name": "John Byron Hanby, IV",
                                    "normal_followers_count": 1924,
                                    "pinned_tweet_ids_str": [
                                      "1875359245564334252"
                                    ],
                                    "possibly_sensitive": false,
                                    "profile_banner_url": "https://pbs.twimg.com/profile_banners/977687655344459776/1712453374",
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/1847740496677933056/LIA_cMcm_normal.jpg",
                                    "profile_interstitial_type": "",
                                    "screen_name": "johnbyronhanby",
                                    "statuses_count": 3958,
                                    "translator_type": "none",
                                    "url": "https://t.co/b3WSOlcsQL",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "professional": {
                                    "rest_id": "1546146573553471490",
                                    "professional_type": "Creator",
                                    "category": [
                                      {
                                        "id": 715,
                                        "name": "Software Company",
                                        "icon_name": ""
                                      }
                                    ]
                                  },
                                  "tipjar_settings": {}
                                }
                              }
                            },
                            "card": {
                              "rest_id": "https://t.co/bAh4tuJZW4",
                              "legacy": {
                                "binding_values": [
                                  {
                                    "key": "photo_image_full_size_large",
                                    "value": {
                                      "image_value": {
                                        "height": 80,
                                        "width": 153,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=386x202"
                                      },
                                      "type": "IMAGE"
                                    }
                                  },
                                  {
                                    "key": "thumbnail_image",
                                    "value": {
                                      "image_value": {
                                        "height": 627,
                                        "width": 1200,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=1200x627"
                                      },
                                      "type": "IMAGE"
                                    }
                                  },
                                  {
                                    "key": "domain",
                                    "value": {
                                      "string_value": "iternal.ai",
                                      "type": "STRING"
                                    }
                                  },
                                  {
                                    "key": "thumbnail_image_large",
                                    "value": {
                                      "image_value": {
                                        "height": 627,
                                        "width": 1200,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=1200x627"
                                      },
                                      "type": "IMAGE"
                                    }
                                  },
                                  {
                                    "key": "summary_photo_image_small",
                                    "value": {
                                      "image_value": {
                                        "height": 80,
                                        "width": 153,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=386x202"
                                      },
                                      "type": "IMAGE"
                                    }
                                  },
                                  {
                                    "key": "thumbnail_image_original",
                                    "value": {
                                      "image_value": {
                                        "height": 80,
                                        "width": 336,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=orig"
                                      },
                                      "type": "IMAGE"
                                    }
                                  },
                                  {
                                    "key": "site",
                                    "value": {
                                      "scribe_key": "publisher_id",
                                      "type": "USER",
                                      "user_value": {
                                        "id_str": "1308801887819509761",
                                        "path": []
                                      }
                                    }
                                  },
                                  {
                                    "key": "photo_image_full_size_small",
                                    "value": {
                                      "image_value": {
                                        "height": 80,
                                        "width": 153,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=386x202"
                                      },
                                      "type": "IMAGE"
                                    }
                                  },
                                  {
                                    "key": "summary_photo_image_large",
                                    "value": {
                                      "image_value": {
                                        "height": 80,
                                        "width": 153,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=386x202"
                                      },
                                      "type": "IMAGE"
                                    }
                                  },
                                  {
                                    "key": "thumbnail_image_small",
                                    "value": {
                                      "image_value": {
                                        "height": 57,
                                        "width": 240,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=240x240"
                                      },
                                      "type": "IMAGE"
                                    }
                                  },
                                  {
                                    "key": "thumbnail_image_x_large",
                                    "value": {
                                      "image_value": {
                                        "height": 80,
                                        "width": 336,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=2048x2048_2_exp"
                                      },
                                      "type": "IMAGE"
                                    }
                                  },
                                  {
                                    "key": "photo_image_full_size_original",
                                    "value": {
                                      "image_value": {
                                        "height": 80,
                                        "width": 336,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=orig"
                                      },
                                      "type": "IMAGE"
                                    }
                                  },
                                  {
                                    "key": "vanity_url",
                                    "value": {
                                      "scribe_key": "vanity_url",
                                      "string_value": "iternal.ai",
                                      "type": "STRING"
                                    }
                                  },
                                  {
                                    "key": "photo_image_full_size",
                                    "value": {
                                      "image_value": {
                                        "height": 80,
                                        "width": 153,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=386x202"
                                      },
                                      "type": "IMAGE"
                                    }
                                  },
                                  {
                                    "key": "thumbnail_image_color",
                                    "value": {
                                      "image_color_value": {
                                        "palette": [
                                          {
                                            "rgb": {
                                              "blue": 4,
                                              "green": 4,
                                              "red": 4
                                            },
                                            "percentage": 14.74
                                          }
                                        ]
                                      },
                                      "type": "IMAGE_COLOR"
                                    }
                                  },
                                  {
                                    "key": "title",
                                    "value": {
                                      "string_value": "Blockify Technical Results",
                                      "type": "STRING"
                                    }
                                  },
                                  {
                                    "key": "summary_photo_image_color",
                                    "value": {
                                      "image_color_value": {
                                        "palette": [
                                          {
                                            "rgb": {
                                              "blue": 4,
                                              "green": 4,
                                              "red": 4
                                            },
                                            "percentage": 14.74
                                          }
                                        ]
                                      },
                                      "type": "IMAGE_COLOR"
                                    }
                                  },
                                  {
                                    "key": "summary_photo_image_x_large",
                                    "value": {
                                      "image_value": {
                                        "height": 80,
                                        "width": 336,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=2048x2048_2_exp"
                                      },
                                      "type": "IMAGE"
                                    }
                                  },
                                  {
                                    "key": "summary_photo_image",
                                    "value": {
                                      "image_value": {
                                        "height": 80,
                                        "width": 153,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=386x202"
                                      },
                                      "type": "IMAGE"
                                    }
                                  },
                                  {
                                    "key": "photo_image_full_size_color",
                                    "value": {
                                      "image_color_value": {
                                        "palette": [
                                          {
                                            "rgb": {
                                              "blue": 4,
                                              "green": 4,
                                              "red": 4
                                            },
                                            "percentage": 14.74
                                          }
                                        ]
                                      },
                                      "type": "IMAGE_COLOR"
                                    }
                                  },
                                  {
                                    "key": "photo_image_full_size_x_large",
                                    "value": {
                                      "image_value": {
                                        "height": 80,
                                        "width": 336,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=2048x2048_2_exp"
                                      },
                                      "type": "IMAGE"
                                    }
                                  },
                                  {
                                    "key": "card_url",
                                    "value": {
                                      "scribe_key": "card_url",
                                      "string_value": "https://t.co/bAh4tuJZW4",
                                      "type": "STRING"
                                    }
                                  },
                                  {
                                    "key": "summary_photo_image_original",
                                    "value": {
                                      "image_value": {
                                        "height": 80,
                                        "width": 336,
                                        "url": "https://pbs.twimg.com/card_img/1951486632621740032/kRs4Kp6j?format=png&name=orig"
                                      },
                                      "type": "IMAGE"
                                    }
                                  }
                                ],
                                "card_platform": {
                                  "platform": {
                                    "audience": {
                                      "name": "production"
                                    },
                                    "device": {
                                      "name": "Android",
                                      "version": "12"
                                    }
                                  }
                                },
                                "name": "summary_large_image",
                                "url": "https://t.co/bAh4tuJZW4",
                                "user_refs_results": [
                                  {
                                    "result": {
                                      "__typename": "User",
                                      "id": "VXNlcjoxMzA4ODAxODg3ODE5NTA5NzYx",
                                      "rest_id": "1308801887819509761",
                                      "affiliates_highlighted_label": {},
                                      "has_graduated_access": true,
                                      "is_blue_verified": true,
                                      "profile_image_shape": "Square",
                                      "legacy": {
                                        "can_dm": false,
                                        "can_media_tag": true,
                                        "created_at": "Wed Sep 23 16:14:29 +0000 2020",
                                        "default_profile": true,
                                        "default_profile_image": false,
                                        "description": "We accelerate competitive advantage by enabling personalized customer experiences, access new customer opportunities & accelerated growth while reducing costs.",
                                        "entities": {
                                          "description": {
                                            "urls": []
                                          },
                                          "url": {
                                            "urls": [
                                              {
                                                "display_url": "iternal.us/success-stories",
                                                "expanded_url": "http://iternal.us/success-stories",
                                                "url": "https://t.co/KUnm5c3QVm",
                                                "indices": [
                                                  0,
                                                  23
                                                ]
                                              }
                                            ]
                                          }
                                        },
                                        "fast_followers_count": 0,
                                        "favourites_count": 22,
                                        "followers_count": 29,
                                        "friends_count": 2,
                                        "has_custom_timelines": false,
                                        "is_translator": false,
                                        "listed_count": 0,
                                        "location": "",
                                        "media_count": 6,
                                        "name": "Iternal",
                                        "normal_followers_count": 29,
                                        "pinned_tweet_ids_str": [
                                          "1613150627596476416"
                                        ],
                                        "possibly_sensitive": false,
                                        "profile_banner_url": "https://pbs.twimg.com/profile_banners/1308801887819509761/1695162584",
                                        "profile_image_url_https": "https://pbs.twimg.com/profile_images/1486807740429344770/EQ-qAV3g_normal.jpg",
                                        "profile_interstitial_type": "",
                                        "screen_name": "IternalTech",
                                        "statuses_count": 22,
                                        "translator_type": "none",
                                        "url": "https://t.co/KUnm5c3QVm",
                                        "verified": false,
                                        "verified_type": "Business",
                                        "want_retweets": false,
                                        "withheld_in_countries": []
                                      },
                                      "professional": {
                                        "rest_id": "1546148631119646721",
                                        "professional_type": "Business",
                                        "category": [
                                          {
                                            "id": 714,
                                            "name": "Technology Company",
                                            "icon_name": ""
                                          }
                                        ]
                                      },
                                      "tipjar_settings": {}
                                    }
                                  }
                                ]
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1940726317366063512"
                              ],
                              "editable_until_msecs": "1751543785000",
                              "is_edit_eligible": false,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "117",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
                            "legacy": {
                              "bookmark_count": 1,
                              "bookmarked": false,
                              "created_at": "Thu Jul 03 10:56:25 +0000 2025",
                              "conversation_id_str": "1940500707494580698",
                              "display_text_range": [
                                12,
                                146
                              ],
                              "entities": {
                                "hashtags": [],
                                "symbols": [],
                                "timestamps": [],
                                "urls": [
                                  {
                                    "display_url": "iternal.ai/blockify-resul…",
                                    "expanded_url": "https://iternal.ai/blockify-results",
                                    "url": "https://t.co/bAh4tuJZW4",
                                    "indices": [
                                      123,
                                      146
                                    ]
                                  }
                                ],
                                "user_mentions": [
                                  {
                                    "id_str": "369777416",
                                    "name": "Jerry Liu",
                                    "screen_name": "jerryjliu0",
                                    "indices": [
                                      0,
                                      11
                                    ]
                                  }
                                ]
                              },
                              "favorite_count": 0,
                              "favorited": false,
                              "full_text": "@jerryjliu0 This is why we built Blockify. 78X RAG Accuracy by cleaning, distilling and structuring your data. Whitepaper: https://t.co/bAh4tuJZW4",
                              "in_reply_to_screen_name": "jerryjliu0",
                              "in_reply_to_status_id_str": "1940500707494580698",
                              "in_reply_to_user_id_str": "369777416",
                              "is_quote_status": false,
                              "lang": "en",
                              "possibly_sensitive": false,
                              "possibly_sensitive_editable": true,
                              "quote_count": 0,
                              "reply_count": 0,
                              "retweet_count": 0,
                              "retweeted": false,
                              "user_id_str": "977687655344459776",
                              "id_str": "1940726317366063512"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "HighQuality"
                          },
                          "timelinesDetails": {
                            "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                          }
                        }
                      }
                    }
                  }
                ],
                "metadata": {
                  "conversationMetadata": {
                    "allTweetIds": [
                      "1940726317366063512"
                    ],
                    "enableDeduplication": true
                  }
                },
                "displayType": "VerticalConversation",
                "clientEventInfo": {
                  "component": "tweet",
                  "details": {
                    "conversationDetails": {
                      "conversationSection": "HighQuality"
                    },
                    "timelinesDetails": {
                      "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                    }
                  }
                }
              }
            },
            {
              "entryId": "cursor-showmorethreads-1953484718833926113",
              "sortIndex": "1953484718833926113",
              "content": {
                "entryType": "TimelineTimelineCursor",
                "__typename": "TimelineTimelineCursor",
                "value": "DAAFCgABGxwsAHQ__98LAAIAAABIRW1QQzZ3QUFBZlEvZ0dKTjB2R3AvQUFBQUFRYTdnc2N2SnZSMmhydUQyU1ptaEZGR3U3WVRhRGJNWmdhN3VZVkFCdlFHUT09CAADAAAABwAA",
                "cursorType": "ShowMoreThreads",
                "displayTreatment": {
                  "actionText": "Show probable spam"
                }
              }
            }
          ]
        },
        {
          "type": "TimelineTerminateTimeline",
          "direction": "Top"
        }
      ],
      "metadata": {
        "scribeConfig": {
          "page": "ranked_replies"
        }
      }
    }
  }
}