🐦 Twitter Post Details

Viewing enriched Twitter post

@jerryjliu0

Adaptive Form Extraction 🤖📑 Form understanding (e.g. tax forms, patient intake, certifications, questionnaires) is a huge use case for AI agents, but defining a good output schema is painful: 1) it can be very tedious/custom, and 2) each form has its own values. 💡 Instead of… https://t.co/mNCiIenVR5

📊 Media Metadata

{
  "media": [
    {
      "type": "video",
      "url": "https://crmoxkoizveukayfjuyo.supabase.co/storage/v1/object/public/media/posts/1944133685542105182/media_0.mp4?",
      "filename": "media_0.mp4"
    }
  ],
  "nlp": {
    "sentiment": "neutral",
    "topics": [
      "Adaptive Form Extraction",
      "AI agents",
      "output schema"
    ],
    "entities": [],
    "summary": "The tweet discusses the challenges of defining output schemas for adaptive form extraction using AI agents.",
    "language": "en",
    "processed_at": "2025-08-07T09:30:33.071545"
  }
}

🔧 Raw API Response

{
  "data": {
    "threaded_conversation_with_injections_v2": {
      "instructions": [
        {
          "type": "TimelineClearCache"
        },
        {
          "type": "TimelineAddEntries",
          "entries": [
            {
              "entryId": "tweet-1944133685542105182",
              "sortIndex": "1953478858619486208",
              "content": {
                "entryType": "TimelineTimelineItem",
                "__typename": "TimelineTimelineItem",
                "itemContent": {
                  "itemType": "TimelineTweet",
                  "__typename": "TimelineTweet",
                  "tweet_results": {
                    "result": {
                      "__typename": "Tweet",
                      "rest_id": "1944133685542105182",
                      "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": 64133,
                              "friends_count": 1378,
                              "has_custom_timelines": true,
                              "is_translator": false,
                              "listed_count": 1295,
                              "location": "",
                              "media_count": 1244,
                              "name": "Jerry Liu",
                              "normal_followers_count": 64133,
                              "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": [
                          "1944133685542105182"
                        ],
                        "editable_until_msecs": "1752356165000",
                        "is_edit_eligible": true,
                        "edits_remaining": "5"
                      },
                      "is_translatable": false,
                      "views": {
                        "count": "13035",
                        "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": "Tm90ZVR3ZWV0OjE5NDQxMzM2ODU0MDc4ODczNjA=",
                            "text": "Adaptive Form Extraction 🤖📑\n\nForm understanding (e.g. tax forms, patient intake, certifications, questionnaires) is a huge use case for AI agents, but defining a good output schema is painful: 1) it can be very tedious/custom, and 2) each form has its own values.\n\n💡 Instead of a schema, here’s a pure parsing solution where you can parse the form pages into a standardized set of k:v pairs through a prompt. In LlamaParse you can define a system prompt that can parse any form into a well-structured 2D table, with checkboxes/values.\n\nCheck out the example below 👇 - we input a sample F1040 and can output it in a 2D table with standardized text boxes and checkbook values. This lets you post-process the tables yourself if you want to extract out structured values! And it’ll generally work across multiple forms too.\n\nSonnet models continue to be great at parsing (disclaimer: it’s not perfect, some mismatched info like SSNs)\n\nCome check it out: https://t.co/XBj94oei28",
                            "entity_set": {
                              "hashtags": [],
                              "symbols": [],
                              "timestamps": [],
                              "urls": [
                                {
                                  "display_url": "cloud.llamaindex.ai/?utm_campaign=…",
                                  "expanded_url": "https://cloud.llamaindex.ai/?utm_campaign=parse&utm_medium=jl_socials",
                                  "url": "https://t.co/XBj94oei28",
                                  "indices": [
                                    950,
                                    973
                                  ]
                                }
                              ],
                              "user_mentions": []
                            },
                            "richtext": {
                              "richtext_tags": []
                            },
                            "media": {
                              "inline_media": []
                            }
                          }
                        }
                      },
                      "legacy": {
                        "bookmark_count": 185,
                        "bookmarked": false,
                        "created_at": "Sat Jul 12 20:36:05 +0000 2025",
                        "conversation_id_str": "1944133685542105182",
                        "display_text_range": [
                          0,
                          278
                        ],
                        "entities": {
                          "hashtags": [],
                          "media": [
                            {
                              "display_url": "pic.x.com/mNCiIenVR5",
                              "expanded_url": "https://x.com/jerryjliu0/status/1944133685542105182/video/1",
                              "id_str": "1944133537193766914",
                              "indices": [
                                279,
                                302
                              ],
                              "media_key": "13_1944133537193766914",
                              "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1944133537193766914/img/k7LK4oW3Yfzn6kMP.jpg",
                              "type": "video",
                              "url": "https://t.co/mNCiIenVR5",
                              "additional_media_info": {
                                "monetizable": false
                              },
                              "ext_media_availability": {
                                "status": "Available"
                              },
                              "sizes": {
                                "large": {
                                  "h": 720,
                                  "w": 952,
                                  "resize": "fit"
                                },
                                "medium": {
                                  "h": 720,
                                  "w": 952,
                                  "resize": "fit"
                                },
                                "small": {
                                  "h": 514,
                                  "w": 680,
                                  "resize": "fit"
                                },
                                "thumb": {
                                  "h": 150,
                                  "w": 150,
                                  "resize": "crop"
                                }
                              },
                              "original_info": {
                                "height": 720,
                                "width": 952,
                                "focus_rects": []
                              },
                              "video_info": {
                                "aspect_ratio": [
                                  119,
                                  90
                                ],
                                "duration_millis": 62766,
                                "variants": [
                                  {
                                    "content_type": "application/x-mpegURL",
                                    "url": "https://video.twimg.com/amplify_video/1944133537193766914/pl/SikwcpaKm6kg8lNs.m3u8?tag=14"
                                  },
                                  {
                                    "bitrate": 288000,
                                    "content_type": "video/mp4",
                                    "url": "https://video.twimg.com/amplify_video/1944133537193766914/vid/avc1/356x270/3z8oYwgJsDT14tWg.mp4?tag=14"
                                  },
                                  {
                                    "bitrate": 832000,
                                    "content_type": "video/mp4",
                                    "url": "https://video.twimg.com/amplify_video/1944133537193766914/vid/avc1/476x360/2JcADWxgTviZ8lQe.mp4?tag=14"
                                  },
                                  {
                                    "bitrate": 2176000,
                                    "content_type": "video/mp4",
                                    "url": "https://video.twimg.com/amplify_video/1944133537193766914/vid/avc1/952x720/8ti78ErsR_qEeomK.mp4?tag=14"
                                  }
                                ]
                              },
                              "media_results": {
                                "result": {
                                  "media_key": "13_1944133537193766914"
                                }
                              }
                            }
                          ],
                          "symbols": [],
                          "timestamps": [],
                          "urls": [],
                          "user_mentions": []
                        },
                        "extended_entities": {
                          "media": [
                            {
                              "display_url": "pic.x.com/mNCiIenVR5",
                              "expanded_url": "https://x.com/jerryjliu0/status/1944133685542105182/video/1",
                              "id_str": "1944133537193766914",
                              "indices": [
                                279,
                                302
                              ],
                              "media_key": "13_1944133537193766914",
                              "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1944133537193766914/img/k7LK4oW3Yfzn6kMP.jpg",
                              "type": "video",
                              "url": "https://t.co/mNCiIenVR5",
                              "additional_media_info": {
                                "monetizable": false
                              },
                              "ext_media_availability": {
                                "status": "Available"
                              },
                              "sizes": {
                                "large": {
                                  "h": 720,
                                  "w": 952,
                                  "resize": "fit"
                                },
                                "medium": {
                                  "h": 720,
                                  "w": 952,
                                  "resize": "fit"
                                },
                                "small": {
                                  "h": 514,
                                  "w": 680,
                                  "resize": "fit"
                                },
                                "thumb": {
                                  "h": 150,
                                  "w": 150,
                                  "resize": "crop"
                                }
                              },
                              "original_info": {
                                "height": 720,
                                "width": 952,
                                "focus_rects": []
                              },
                              "video_info": {
                                "aspect_ratio": [
                                  119,
                                  90
                                ],
                                "duration_millis": 62766,
                                "variants": [
                                  {
                                    "content_type": "application/x-mpegURL",
                                    "url": "https://video.twimg.com/amplify_video/1944133537193766914/pl/SikwcpaKm6kg8lNs.m3u8?tag=14"
                                  },
                                  {
                                    "bitrate": 288000,
                                    "content_type": "video/mp4",
                                    "url": "https://video.twimg.com/amplify_video/1944133537193766914/vid/avc1/356x270/3z8oYwgJsDT14tWg.mp4?tag=14"
                                  },
                                  {
                                    "bitrate": 832000,
                                    "content_type": "video/mp4",
                                    "url": "https://video.twimg.com/amplify_video/1944133537193766914/vid/avc1/476x360/2JcADWxgTviZ8lQe.mp4?tag=14"
                                  },
                                  {
                                    "bitrate": 2176000,
                                    "content_type": "video/mp4",
                                    "url": "https://video.twimg.com/amplify_video/1944133537193766914/vid/avc1/952x720/8ti78ErsR_qEeomK.mp4?tag=14"
                                  }
                                ]
                              },
                              "media_results": {
                                "result": {
                                  "media_key": "13_1944133537193766914"
                                }
                              }
                            }
                          ]
                        },
                        "favorite_count": 141,
                        "favorited": false,
                        "full_text": "Adaptive Form Extraction 🤖📑\n\nForm understanding (e.g. tax forms, patient intake, certifications, questionnaires) is a huge use case for AI agents, but defining a good output schema is painful: 1) it can be very tedious/custom, and 2) each form has its own values.\n\n💡 Instead of… https://t.co/mNCiIenVR5",
                        "is_quote_status": false,
                        "lang": "en",
                        "possibly_sensitive": false,
                        "possibly_sensitive_editable": true,
                        "quote_count": 1,
                        "reply_count": 4,
                        "retweet_count": 15,
                        "retweeted": false,
                        "user_id_str": "369777416",
                        "id_str": "1944133685542105182"
                      },
                      "quick_promote_eligibility": {
                        "eligibility": "IneligibleNotProfessional"
                      }
                    }
                  },
                  "tweetDisplayType": "Tweet"
                },
                "clientEventInfo": {
                  "component": "tweet",
                  "element": "tweet"
                }
              }
            },
            {
              "entryId": "conversationthread-1944136665129529392",
              "sortIndex": "1953478858619486198",
              "content": {
                "entryType": "TimelineTimelineModule",
                "__typename": "TimelineTimelineModule",
                "items": [
                  {
                    "entryId": "conversationthread-1944136665129529392-tweet-1944136665129529392",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1944136665129529392",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjoxNzEwNjg5ODQ2MjkyMDIxMjQ4",
                                  "rest_id": "1710689846292021248",
                                  "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": "Sat Oct 07 16:13:46 +0000 2023",
                                    "default_profile": true,
                                    "default_profile_image": false,
                                    "description": "Biologicals Peddler",
                                    "entities": {
                                      "description": {
                                        "urls": []
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 1834,
                                    "followers_count": 105,
                                    "friends_count": 1057,
                                    "has_custom_timelines": false,
                                    "is_translator": false,
                                    "listed_count": 0,
                                    "location": "USA",
                                    "media_count": 13,
                                    "name": "Dean",
                                    "normal_followers_count": 105,
                                    "pinned_tweet_ids_str": [
                                      "1866288983963218367"
                                    ],
                                    "possibly_sensitive": false,
                                    "profile_banner_url": "https://pbs.twimg.com/profile_banners/1710689846292021248/1697456320",
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/1749958070976106496/-x-YrqfX_normal.jpg",
                                    "profile_interstitial_type": "",
                                    "screen_name": "MangoSloth",
                                    "statuses_count": 67,
                                    "translator_type": "none",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "professional": {
                                    "rest_id": "1866287186469081566",
                                    "professional_type": "Creator",
                                    "category": []
                                  },
                                  "tipjar_settings": {}
                                }
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1944136665129529392"
                              ],
                              "editable_until_msecs": "1752356875000",
                              "is_edit_eligible": false,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "328",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
                            "legacy": {
                              "bookmark_count": 0,
                              "bookmarked": false,
                              "created_at": "Sat Jul 12 20:47:55 +0000 2025",
                              "conversation_id_str": "1944133685542105182",
                              "display_text_range": [
                                12,
                                186
                              ],
                              "entities": {
                                "hashtags": [],
                                "symbols": [],
                                "timestamps": [],
                                "urls": [],
                                "user_mentions": [
                                  {
                                    "id_str": "369777416",
                                    "name": "Jerry Liu",
                                    "screen_name": "jerryjliu0",
                                    "indices": [
                                      0,
                                      11
                                    ]
                                  }
                                ]
                              },
                              "favorite_count": 2,
                              "favorited": false,
                              "full_text": "@jerryjliu0 as a s̶c̶r̶i̶p̶t̶ ̶k̶i̶d̶d̶i̶e̶ vibe coder smb owner, I am so thankful for your content. thousands of saved hours in just the last year. I think you're 25% of my bookmarks. 🙏",
                              "in_reply_to_screen_name": "jerryjliu0",
                              "in_reply_to_status_id_str": "1944133685542105182",
                              "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": "1710689846292021248",
                              "id_str": "1944136665129529392"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "HighQuality"
                          },
                          "timelinesDetails": {
                            "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                          }
                        }
                      }
                    }
                  }
                ],
                "metadata": {
                  "conversationMetadata": {
                    "allTweetIds": [
                      "1944136665129529392"
                    ],
                    "enableDeduplication": true
                  }
                },
                "displayType": "VerticalConversation",
                "clientEventInfo": {
                  "component": "tweet",
                  "details": {
                    "conversationDetails": {
                      "conversationSection": "HighQuality"
                    },
                    "timelinesDetails": {
                      "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                    }
                  }
                }
              }
            },
            {
              "entryId": "conversationthread-1944855593761824907",
              "sortIndex": "1953478858619486188",
              "content": {
                "entryType": "TimelineTimelineModule",
                "__typename": "TimelineTimelineModule",
                "items": [
                  {
                    "entryId": "conversationthread-1944855593761824907-tweet-1944855593761824907",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1944855593761824907",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjoxNDk2NzQ5Nzk3MzM1ODcxNDg4",
                                  "rest_id": "1496749797335871488",
                                  "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": "Thu Feb 24 07:32:27 +0000 2022",
                                    "default_profile": true,
                                    "default_profile_image": false,
                                    "description": "Be the problem, so that you can be the solution.\n\nCEO of Twitter",
                                    "entities": {
                                      "description": {
                                        "urls": []
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 61581,
                                    "followers_count": 1200,
                                    "friends_count": 502,
                                    "has_custom_timelines": true,
                                    "is_translator": false,
                                    "listed_count": 23,
                                    "location": "Pittsburgh, Commonwealth of PA",
                                    "media_count": 707,
                                    "name": "stink",
                                    "normal_followers_count": 1200,
                                    "pinned_tweet_ids_str": [],
                                    "possibly_sensitive": false,
                                    "profile_banner_url": "https://pbs.twimg.com/profile_banners/1496749797335871488/1752015645",
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/1941639570489049088/UpcrwZhv_normal.jpg",
                                    "profile_interstitial_type": "",
                                    "screen_name": "stinkgen",
                                    "statuses_count": 6394,
                                    "translator_type": "none",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "tipjar_settings": {
                                    "is_enabled": true,
                                    "ethereum_handle": "0x66Af61233A74a44fe351a4c11931AdD535068186"
                                  }
                                }
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1944855593761824907"
                              ],
                              "editable_until_msecs": "1752528281000",
                              "is_edit_eligible": false,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "14",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
                            "legacy": {
                              "bookmark_count": 0,
                              "bookmarked": false,
                              "created_at": "Mon Jul 14 20:24:41 +0000 2025",
                              "conversation_id_str": "1944133685542105182",
                              "display_text_range": [
                                12,
                                267
                              ],
                              "entities": {
                                "hashtags": [],
                                "media": [
                                  {
                                    "display_url": "pic.x.com/cxdmR5PKBh",
                                    "expanded_url": "https://x.com/stinkgen/status/1944855593761824907/photo/1",
                                    "id_str": "1944855100607852544",
                                    "indices": [
                                      268,
                                      291
                                    ],
                                    "media_key": "3_1944855100607852544",
                                    "media_url_https": "https://pbs.twimg.com/media/Gv2DaONWcAA_Wxr.jpg",
                                    "type": "photo",
                                    "url": "https://t.co/cxdmR5PKBh",
                                    "ext_media_availability": {
                                      "status": "Available"
                                    },
                                    "features": {
                                      "large": {
                                        "faces": []
                                      },
                                      "medium": {
                                        "faces": []
                                      },
                                      "small": {
                                        "faces": []
                                      },
                                      "orig": {
                                        "faces": []
                                      }
                                    },
                                    "sizes": {
                                      "large": {
                                        "h": 1268,
                                        "w": 1742,
                                        "resize": "fit"
                                      },
                                      "medium": {
                                        "h": 873,
                                        "w": 1200,
                                        "resize": "fit"
                                      },
                                      "small": {
                                        "h": 495,
                                        "w": 680,
                                        "resize": "fit"
                                      },
                                      "thumb": {
                                        "h": 150,
                                        "w": 150,
                                        "resize": "crop"
                                      }
                                    },
                                    "original_info": {
                                      "height": 1268,
                                      "width": 1742,
                                      "focus_rects": [
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1742,
                                          "h": 976
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1268,
                                          "h": 1268
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1112,
                                          "h": 1268
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 634,
                                          "h": 1268
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1742,
                                          "h": 1268
                                        }
                                      ]
                                    },
                                    "allow_download_status": {
                                      "allow_download": true
                                    },
                                    "media_results": {
                                      "result": {
                                        "media_key": "3_1944855100607852544"
                                      }
                                    }
                                  }
                                ],
                                "symbols": [],
                                "timestamps": [],
                                "urls": [],
                                "user_mentions": [
                                  {
                                    "id_str": "369777416",
                                    "name": "Jerry Liu",
                                    "screen_name": "jerryjliu0",
                                    "indices": [
                                      0,
                                      11
                                    ]
                                  }
                                ]
                              },
                              "extended_entities": {
                                "media": [
                                  {
                                    "display_url": "pic.x.com/cxdmR5PKBh",
                                    "expanded_url": "https://x.com/stinkgen/status/1944855593761824907/photo/1",
                                    "id_str": "1944855100607852544",
                                    "indices": [
                                      268,
                                      291
                                    ],
                                    "media_key": "3_1944855100607852544",
                                    "media_url_https": "https://pbs.twimg.com/media/Gv2DaONWcAA_Wxr.jpg",
                                    "type": "photo",
                                    "url": "https://t.co/cxdmR5PKBh",
                                    "ext_media_availability": {
                                      "status": "Available"
                                    },
                                    "features": {
                                      "large": {
                                        "faces": []
                                      },
                                      "medium": {
                                        "faces": []
                                      },
                                      "small": {
                                        "faces": []
                                      },
                                      "orig": {
                                        "faces": []
                                      }
                                    },
                                    "sizes": {
                                      "large": {
                                        "h": 1268,
                                        "w": 1742,
                                        "resize": "fit"
                                      },
                                      "medium": {
                                        "h": 873,
                                        "w": 1200,
                                        "resize": "fit"
                                      },
                                      "small": {
                                        "h": 495,
                                        "w": 680,
                                        "resize": "fit"
                                      },
                                      "thumb": {
                                        "h": 150,
                                        "w": 150,
                                        "resize": "crop"
                                      }
                                    },
                                    "original_info": {
                                      "height": 1268,
                                      "width": 1742,
                                      "focus_rects": [
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1742,
                                          "h": 976
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1268,
                                          "h": 1268
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1112,
                                          "h": 1268
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 634,
                                          "h": 1268
                                        },
                                        {
                                          "x": 0,
                                          "y": 0,
                                          "w": 1742,
                                          "h": 1268
                                        }
                                      ]
                                    },
                                    "allow_download_status": {
                                      "allow_download": true
                                    },
                                    "media_results": {
                                      "result": {
                                        "media_key": "3_1944855100607852544"
                                      }
                                    }
                                  }
                                ]
                              },
                              "favorite_count": 0,
                              "favorited": false,
                              "full_text": "@jerryjliu0 Hey man, good work.\n\nAre you familiar with the concept of \"takeoffs\" in construction PDFs?\n\nMy BIL owns a construction firm, reading blueprint PDFs and managing materials/contracts is a high value use case - I'm going to help him set up a little LI stack. https://t.co/cxdmR5PKBh",
                              "in_reply_to_screen_name": "jerryjliu0",
                              "in_reply_to_status_id_str": "1944133685542105182",
                              "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": "1496749797335871488",
                              "id_str": "1944855593761824907"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "HighQuality"
                          },
                          "timelinesDetails": {
                            "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                          }
                        }
                      }
                    }
                  }
                ],
                "metadata": {
                  "conversationMetadata": {
                    "allTweetIds": [
                      "1944855593761824907"
                    ],
                    "enableDeduplication": true
                  }
                },
                "displayType": "VerticalConversation",
                "clientEventInfo": {
                  "component": "tweet",
                  "details": {
                    "conversationDetails": {
                      "conversationSection": "HighQuality"
                    },
                    "timelinesDetails": {
                      "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                    }
                  }
                }
              }
            },
            {
              "entryId": "conversationthread-1944256426290864634",
              "sortIndex": "1953478858619486178",
              "content": {
                "entryType": "TimelineTimelineModule",
                "__typename": "TimelineTimelineModule",
                "items": [
                  {
                    "entryId": "conversationthread-1944256426290864634-tweet-1944256426290864634",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "Tweet",
                            "rest_id": "1944256426290864634",
                            "has_birdwatch_notes": false,
                            "core": {
                              "user_results": {
                                "result": {
                                  "__typename": "User",
                                  "id": "VXNlcjoxMjU0NjkyOTI0MjQ5NDAzMzk4",
                                  "rest_id": "1254692924249403398",
                                  "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": "Mon Apr 27 08:44:48 +0000 2020",
                                    "default_profile": true,
                                    "default_profile_image": false,
                                    "description": "",
                                    "entities": {
                                      "description": {
                                        "urls": []
                                      }
                                    },
                                    "fast_followers_count": 0,
                                    "favourites_count": 9791,
                                    "followers_count": 0,
                                    "friends_count": 27,
                                    "has_custom_timelines": false,
                                    "is_translator": false,
                                    "listed_count": 0,
                                    "location": "",
                                    "media_count": 0,
                                    "name": "natwarlal",
                                    "normal_followers_count": 0,
                                    "pinned_tweet_ids_str": [],
                                    "possibly_sensitive": false,
                                    "profile_image_url_https": "https://pbs.twimg.com/profile_images/1944255812932624384/7LAYd_YM_normal.jpg",
                                    "profile_interstitial_type": "",
                                    "screen_name": "NTWR_LaL",
                                    "statuses_count": 13,
                                    "translator_type": "none",
                                    "verified": false,
                                    "want_retweets": false,
                                    "withheld_in_countries": []
                                  },
                                  "tipjar_settings": {}
                                }
                              }
                            },
                            "unmention_data": {},
                            "edit_control": {
                              "edit_tweet_ids": [
                                "1944256426290864634"
                              ],
                              "editable_until_msecs": "1752385429000",
                              "is_edit_eligible": false,
                              "edits_remaining": "5"
                            },
                            "is_translatable": false,
                            "views": {
                              "count": "195",
                              "state": "EnabledWithCount"
                            },
                            "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
                            "legacy": {
                              "bookmark_count": 0,
                              "bookmarked": false,
                              "created_at": "Sun Jul 13 04:43:49 +0000 2025",
                              "conversation_id_str": "1944133685542105182",
                              "display_text_range": [
                                12,
                                265
                              ],
                              "entities": {
                                "hashtags": [],
                                "symbols": [],
                                "timestamps": [],
                                "urls": [],
                                "user_mentions": [
                                  {
                                    "id_str": "369777416",
                                    "name": "Jerry Liu",
                                    "screen_name": "jerryjliu0",
                                    "indices": [
                                      0,
                                      11
                                    ]
                                  }
                                ]
                              },
                              "favorite_count": 1,
                              "favorited": false,
                              "full_text": "@jerryjliu0 How come no tool or model able to understand the reference symbols. Either it becomes weird squareboxes or some gibberish. Eg. an astrick sign pointing to a footnote about additional information. Why it’s so difficult to make a relationship between two?",
                              "in_reply_to_screen_name": "jerryjliu0",
                              "in_reply_to_status_id_str": "1944133685542105182",
                              "in_reply_to_user_id_str": "369777416",
                              "is_quote_status": false,
                              "lang": "en",
                              "quote_count": 0,
                              "reply_count": 1,
                              "retweet_count": 0,
                              "retweeted": false,
                              "user_id_str": "1254692924249403398",
                              "id_str": "1944256426290864634"
                            },
                            "quick_promote_eligibility": {
                              "eligibility": "IneligibleNotProfessional"
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet"
                      },
                      "clientEventInfo": {
                        "component": "tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "HighQuality"
                          },
                          "timelinesDetails": {
                            "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                          }
                        }
                      }
                    }
                  }
                ],
                "metadata": {
                  "conversationMetadata": {
                    "allTweetIds": [
                      "1944256426290864634"
                    ],
                    "enableDeduplication": true
                  }
                },
                "displayType": "VerticalConversation",
                "clientEventInfo": {
                  "component": "tweet",
                  "details": {
                    "conversationDetails": {
                      "conversationSection": "HighQuality"
                    },
                    "timelinesDetails": {
                      "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                    }
                  }
                }
              }
            },
            {
              "entryId": "conversationthread-1952701154544246877",
              "sortIndex": "1953478858619486168",
              "content": {
                "entryType": "TimelineTimelineModule",
                "__typename": "TimelineTimelineModule",
                "items": [
                  {
                    "entryId": "conversationthread-1952701154544246877-promoted-tweet-1952701154544246877-29353490f414ebf",
                    "item": {
                      "itemContent": {
                        "itemType": "TimelineTweet",
                        "__typename": "TimelineTweet",
                        "tweet_results": {
                          "result": {
                            "__typename": "TweetWithVisibilityResults",
                            "tweet": {
                              "rest_id": "1952701154544246877",
                              "has_birdwatch_notes": false,
                              "core": {
                                "user_results": {
                                  "result": {
                                    "__typename": "User",
                                    "id": "VXNlcjoxNjQ5NjI2MjE=",
                                    "rest_id": "164962621",
                                    "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 Jul 10 05:56:02 +0000 2010",
                                      "default_profile": true,
                                      "default_profile_image": false,
                                      "description": "https://t.co/4GmPdv1dmm (Now Open)\nSharing how to create unique content w/ a proven system to cross-pollinate ideas, (600+hrs using Luhmann's 1st principles).",
                                      "entities": {
                                        "description": {
                                          "urls": [
                                            {
                                              "display_url": "Superzettel.com",
                                              "expanded_url": "http://Superzettel.com",
                                              "url": "https://t.co/4GmPdv1dmm",
                                              "indices": [
                                                0,
                                                23
                                              ]
                                            }
                                          ]
                                        }
                                      },
                                      "fast_followers_count": 0,
                                      "favourites_count": 17797,
                                      "followers_count": 1834,
                                      "friends_count": 353,
                                      "has_custom_timelines": true,
                                      "is_translator": false,
                                      "listed_count": 100,
                                      "location": "",
                                      "media_count": 1822,
                                      "name": "King | Obsidian Zettelkasten 🧠🚢⚓",
                                      "normal_followers_count": 1834,
                                      "pinned_tweet_ids_str": [
                                        "1953063527872381262"
                                      ],
                                      "possibly_sensitive": false,
                                      "profile_banner_url": "https://pbs.twimg.com/profile_banners/164962621/1681396550",
                                      "profile_image_url_https": "https://pbs.twimg.com/profile_images/1560639930547638274/T3h9XFRl_normal.jpg",
                                      "profile_interstitial_type": "",
                                      "screen_name": "kinginmotion",
                                      "statuses_count": 12576,
                                      "translator_type": "none",
                                      "verified": false,
                                      "want_retweets": false,
                                      "withheld_in_countries": []
                                    },
                                    "professional": {
                                      "rest_id": "1565834750027526146",
                                      "professional_type": "Creator",
                                      "category": []
                                    },
                                    "tipjar_settings": {
                                      "is_enabled": true
                                    }
                                  }
                                }
                              },
                              "unmention_data": {},
                              "edit_control": {
                                "edit_tweet_ids": [
                                  "1952701154544246877"
                                ],
                                "editable_until_msecs": "1754398809000",
                                "is_edit_eligible": false,
                                "edits_remaining": "5"
                              },
                              "is_translatable": false,
                              "views": {
                                "count": "30718",
                                "state": "EnabledWithCount"
                              },
                              "source": "<a href=\"https://typefully.com/\" rel=\"nofollow\">Typefully</a>",
                              "legacy": {
                                "bookmark_count": 18,
                                "bookmarked": false,
                                "created_at": "Tue Aug 05 12:00:09 +0000 2025",
                                "conversation_id_str": "1952701154544246877",
                                "display_text_range": [
                                  0,
                                  146
                                ],
                                "entities": {
                                  "hashtags": [],
                                  "media": [
                                    {
                                      "display_url": "pic.x.com/lCyTMNwUk3",
                                      "expanded_url": "https://x.com/kinginmotion/status/1952701154544246877/photo/1",
                                      "id_str": "1952701151604047872",
                                      "indices": [
                                        147,
                                        170
                                      ],
                                      "media_key": "3_1952701151604047872",
                                      "media_url_https": "https://pbs.twimg.com/media/GxljWf3bAAAfuiJ.jpg",
                                      "type": "photo",
                                      "url": "https://t.co/lCyTMNwUk3",
                                      "ext_media_availability": {
                                        "status": "Available"
                                      },
                                      "features": {
                                        "large": {
                                          "faces": []
                                        },
                                        "medium": {
                                          "faces": []
                                        },
                                        "small": {
                                          "faces": []
                                        },
                                        "orig": {
                                          "faces": []
                                        }
                                      },
                                      "sizes": {
                                        "large": {
                                          "h": 1121,
                                          "w": 1746,
                                          "resize": "fit"
                                        },
                                        "medium": {
                                          "h": 770,
                                          "w": 1200,
                                          "resize": "fit"
                                        },
                                        "small": {
                                          "h": 437,
                                          "w": 680,
                                          "resize": "fit"
                                        },
                                        "thumb": {
                                          "h": 150,
                                          "w": 150,
                                          "resize": "crop"
                                        }
                                      },
                                      "original_info": {
                                        "height": 1121,
                                        "width": 1746,
                                        "focus_rects": [
                                          {
                                            "x": 0,
                                            "y": 0,
                                            "w": 1746,
                                            "h": 978
                                          },
                                          {
                                            "x": 182,
                                            "y": 0,
                                            "w": 1121,
                                            "h": 1121
                                          },
                                          {
                                            "x": 251,
                                            "y": 0,
                                            "w": 983,
                                            "h": 1121
                                          },
                                          {
                                            "x": 462,
                                            "y": 0,
                                            "w": 561,
                                            "h": 1121
                                          },
                                          {
                                            "x": 0,
                                            "y": 0,
                                            "w": 1746,
                                            "h": 1121
                                          }
                                        ]
                                      },
                                      "media_results": {
                                        "result": {
                                          "media_key": "3_1952701151604047872"
                                        }
                                      }
                                    }
                                  ],
                                  "symbols": [],
                                  "timestamps": [],
                                  "urls": [],
                                  "user_mentions": []
                                },
                                "extended_entities": {
                                  "media": [
                                    {
                                      "display_url": "pic.x.com/lCyTMNwUk3",
                                      "expanded_url": "https://x.com/kinginmotion/status/1952701154544246877/photo/1",
                                      "id_str": "1952701151604047872",
                                      "indices": [
                                        147,
                                        170
                                      ],
                                      "media_key": "3_1952701151604047872",
                                      "media_url_https": "https://pbs.twimg.com/media/GxljWf3bAAAfuiJ.jpg",
                                      "type": "photo",
                                      "url": "https://t.co/lCyTMNwUk3",
                                      "ext_media_availability": {
                                        "status": "Available"
                                      },
                                      "features": {
                                        "large": {
                                          "faces": []
                                        },
                                        "medium": {
                                          "faces": []
                                        },
                                        "small": {
                                          "faces": []
                                        },
                                        "orig": {
                                          "faces": []
                                        }
                                      },
                                      "sizes": {
                                        "large": {
                                          "h": 1121,
                                          "w": 1746,
                                          "resize": "fit"
                                        },
                                        "medium": {
                                          "h": 770,
                                          "w": 1200,
                                          "resize": "fit"
                                        },
                                        "small": {
                                          "h": 437,
                                          "w": 680,
                                          "resize": "fit"
                                        },
                                        "thumb": {
                                          "h": 150,
                                          "w": 150,
                                          "resize": "crop"
                                        }
                                      },
                                      "original_info": {
                                        "height": 1121,
                                        "width": 1746,
                                        "focus_rects": [
                                          {
                                            "x": 0,
                                            "y": 0,
                                            "w": 1746,
                                            "h": 978
                                          },
                                          {
                                            "x": 182,
                                            "y": 0,
                                            "w": 1121,
                                            "h": 1121
                                          },
                                          {
                                            "x": 251,
                                            "y": 0,
                                            "w": 983,
                                            "h": 1121
                                          },
                                          {
                                            "x": 462,
                                            "y": 0,
                                            "w": 561,
                                            "h": 1121
                                          },
                                          {
                                            "x": 0,
                                            "y": 0,
                                            "w": 1746,
                                            "h": 1121
                                          }
                                        ]
                                      },
                                      "media_results": {
                                        "result": {
                                          "media_key": "3_1952701151604047872"
                                        }
                                      }
                                    }
                                  ]
                                },
                                "favorite_count": 20,
                                "favorited": false,
                                "full_text": "Day 18 /30\n\nHow I take book notes in Obsidian and actually remember what I read.\n\nMy full process—from Kindle highlights to Zettelkasten magic:\n\n🧵 https://t.co/lCyTMNwUk3",
                                "is_quote_status": false,
                                "lang": "en",
                                "possibly_sensitive": false,
                                "possibly_sensitive_editable": true,
                                "quote_count": 0,
                                "reply_count": 8,
                                "retweet_count": 2,
                                "retweeted": false,
                                "user_id_str": "164962621",
                                "id_str": "1952701154544246877"
                              },
                              "quick_promote_eligibility": {
                                "eligibility": "IneligibleNotProfessional"
                              }
                            },
                            "limitedActionResults": {
                              "limited_actions": [
                                {
                                  "action": "Reply"
                                }
                              ]
                            }
                          }
                        },
                        "tweetDisplayType": "Tweet",
                        "promotedMetadata": {
                          "advertiser_results": {
                            "result": {
                              "__typename": "User",
                              "id": "VXNlcjoxNjQ5NjI2MjE=",
                              "rest_id": "164962621",
                              "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 Jul 10 05:56:02 +0000 2010",
                                "default_profile": true,
                                "default_profile_image": false,
                                "description": "https://t.co/4GmPdv1dmm (Now Open)\nSharing how to create unique content w/ a proven system to cross-pollinate ideas, (600+hrs using Luhmann's 1st principles).",
                                "entities": {
                                  "description": {
                                    "urls": [
                                      {
                                        "display_url": "Superzettel.com",
                                        "expanded_url": "http://Superzettel.com",
                                        "url": "https://t.co/4GmPdv1dmm",
                                        "indices": [
                                          0,
                                          23
                                        ]
                                      }
                                    ]
                                  }
                                },
                                "fast_followers_count": 0,
                                "favourites_count": 17797,
                                "followers_count": 1834,
                                "friends_count": 353,
                                "has_custom_timelines": true,
                                "is_translator": false,
                                "listed_count": 100,
                                "location": "",
                                "media_count": 1822,
                                "name": "King | Obsidian Zettelkasten 🧠🚢⚓",
                                "normal_followers_count": 1834,
                                "pinned_tweet_ids_str": [
                                  "1953063527872381262"
                                ],
                                "possibly_sensitive": false,
                                "profile_banner_url": "https://pbs.twimg.com/profile_banners/164962621/1681396550",
                                "profile_image_url_https": "https://pbs.twimg.com/profile_images/1560639930547638274/T3h9XFRl_normal.jpg",
                                "profile_interstitial_type": "",
                                "screen_name": "kinginmotion",
                                "statuses_count": 12576,
                                "translator_type": "none",
                                "verified": false,
                                "want_retweets": false,
                                "withheld_in_countries": []
                              },
                              "professional": {
                                "rest_id": "1565834750027526146",
                                "professional_type": "Creator",
                                "category": []
                              },
                              "tipjar_settings": {
                                "is_enabled": true
                              }
                            }
                          },
                          "adMetadataContainer": {
                            "renderLegacyWebsiteCard": false
                          },
                          "disclosureType": "NoDisclosure",
                          "experimentValues": [],
                          "impressionId": "29353490f414ebf",
                          "impressionString": "29353490f414ebf",
                          "clickTrackingInfo": {
                            "urlParams": [
                              {
                                "key": "twclid",
                                "value": "2-499uezzui7w1fqd0vh2mgmspw"
                              }
                            ]
                          }
                        }
                      },
                      "clientEventInfo": {
                        "component": "tweet",
                        "element": "tweet",
                        "details": {
                          "conversationDetails": {
                            "conversationSection": "HighQuality"
                          },
                          "timelinesDetails": {
                            "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                          }
                        }
                      }
                    }
                  }
                ],
                "displayType": "VerticalConversation",
                "clientEventInfo": {
                  "component": "tweet",
                  "details": {
                    "conversationDetails": {
                      "conversationSection": "HighQuality"
                    },
                    "timelinesDetails": {
                      "controllerData": "DAACDAAEDAABCgABAAAAAAAAAAEKAAIAAAAAAAAAAAAAAAA="
                    }
                  }
                }
              }
            },
            {
              "entryId": "cursor-showmorethreads-1953478858619486167",
              "sortIndex": "1953478858619486167",
              "content": {
                "entryType": "TimelineTimelineCursor",
                "__typename": "TimelineTimelineCursor",
                "value": "DAAFCgABGxwmrAQ__9ULAAIAAABIRW1QQzZ3QUFBZlEvZ0dKTjB2R3AvQUFBQUFRYSt2TkpXcHV3WGhyN1l1c3BWbUg2R3YyRDI3V2E0SXNhK3ZYL0Y5dXdNQT09CAADAAAABwAA",
                "cursorType": "ShowMoreThreads",
                "displayTreatment": {
                  "actionText": "Show probable spam"
                }
              }
            }
          ]
        },
        {
          "type": "TimelineTerminateTimeline",
          "direction": "Top"
        }
      ],
      "metadata": {
        "scribeConfig": {
          "page": "ranked_replies"
        }
      }
    }
  }
}