{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js", "ssg:https://framerusercontent.com/modules/vtqUWktjDBHXV9UCeXze/9y7bqYfJNDoWK1mpN33I/P9PxBnR55-2.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL,originalSearchParams]=parsedURL;const searchParams=embedURL.searchParams;if(originalSearchParams){for(const[param,value]of originalSearchParams){searchParams.set(param,value);}}// https://developers.google.com/youtube/player_parameters\nsearchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),showThumbnail&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://i.ytimg.com\"}),/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",src:getThumbnailURL(videoId,thumbnail),style:{...videoStyle,objectFit:\"cover\"}})]}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL,null];}const searchParams=url.searchParams;if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");const page=pathSegments[0];// https://www.youtube.com/watch?v=Fop2oskTug8\nif(page===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}// https://www.youtube.com/embed/Fop2oskTug8\nif(page===\"embed\"){const videoId=pathSegments[1];return[videoId,url,searchParams];}// https://www.youtube.com/shorts/zwMEhBq4kYM / https://www.youtube.com/live/XlWSzaluBKk\nif(page===\"shorts\"||page===\"live\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as n}from\"react/jsx-runtime\";import{ComponentPresetsConsumer as t,Link as a}from\"framer\";import{motion as o}from\"framer-motion\";import*as i from\"react\";import{Youtube as r}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";export const richText=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[\"Alongside the public release of GPT-5, we are very excited to announce it is now available in Rogo. As OpenAI's \",/*#__PURE__*/e(a,{href:\"https://openai.com/index/rogo/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!0,preserveParams:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"premier partner\"})}),\" for finance, we've spent significant time over the past month testing GPT-5 against core financial workflows. \"]}),/*#__PURE__*/n(\"p\",{children:[\"Integrating GPT-5 into our response engine has driven a \",/*#__PURE__*/e(\"em\",{children:\"step change\"}),\" in Rogo\u2019s Answer Quality score \u2014 a proprietary benchmark we fine-tune across hundreds of investment banking workflows, from M&A comps to full slide deck generation.\"]}),/*#__PURE__*/e(\"p\",{children:\"This launch follows extensive tuning and evaluation on Rogo\u2019s financial reasoning and QA dataset, which spans over 100 core use cases bankers and investors rely on daily. These include precision-heavy tasks like valuation analysis, precedent transactions, and pitch deck generation, all designed to push LLMs on accuracy, nuance, and reasoning quality.\"}),/*#__PURE__*/e(\"p\",{children:\"Rogo users will see immediate gains in answer precision, contextual nuance, and multi-step reasoning. Our collaboration with OpenAI on this launch sets a new standard for AI-powered finance tools. We tested GPT-5 on two criteria \u2014 Win Rate and Source Attribution \u2014 and see meaningful improvements.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Win Rate\"})}),/*#__PURE__*/n(\"p\",{children:[\"We found that GPT-5 significantly outperforms o4-mini in head-to-head evaluations conducted by custom-trained models built to assess \",/*#__PURE__*/e(\"strong\",{children:\"helpfulness\"}),\", \",/*#__PURE__*/e(\"strong\",{children:\"source credibility\"}),\", \",/*#__PURE__*/e(\"strong\",{children:\"formatting quality\"}),\", and \",/*#__PURE__*/e(\"strong\",{children:\"conciseness\"}),\". GPT-5 wins 62% of matchups on low- to medium-complexity questions, and 70% on highly complex reasoning tasks.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"751\",src:\"https://framerusercontent.com/images/S0IFRHMu7T200j97bgb1M6fN9w.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/S0IFRHMu7T200j97bgb1M6fN9w.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/S0IFRHMu7T200j97bgb1M6fN9w.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/S0IFRHMu7T200j97bgb1M6fN9w.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/S0IFRHMu7T200j97bgb1M6fN9w.png?lossless=1 2112w\",style:{aspectRatio:\"2112 / 1502\"},width:\"1056\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Source Attribution (AIS)\"})}),/*#__PURE__*/e(\"p\",{children:\"Source Attribution evaluates how well-grounded an AI-generated response is. It uses a custom trained model to identify claims needing citations and assesses the accuracy and completeness of the sources provided. This metric also captures the hallucination rate. We see a meaningful improvement in our Source Attribution Score with GPT-5.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"634\",src:\"https://framerusercontent.com/images/fvvEODb3F9Uo5fiGT9giVSt0KFA.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/fvvEODb3F9Uo5fiGT9giVSt0KFA.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/fvvEODb3F9Uo5fiGT9giVSt0KFA.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/fvvEODb3F9Uo5fiGT9giVSt0KFA.png?lossless=1 2033w\",style:{aspectRatio:\"2033 / 1268\"},width:\"1016\"}),/*#__PURE__*/n(\"p\",{children:[\"To see GPT-5 live in Rogo today, reach out to us at \",/*#__PURE__*/e(\"strong\",{children:\"sales@rogo.ai\"}),\".\"]})]});export const richText1=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[\"We\u2019re excited to announce that PitchBook, a leading provider of private capital market data and insights, will be added to Rogo\u2019s list of financial data providers. This integration means every query and workflow on our platform \u2014 from \u201Clatest Series B valuations in climate tech\u201D to \u201Cbenchmark private capital funds in Europe\u201D \u2014 will be grounded in PitchBook\u2019s trusted data.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Rogo customers will first gain access to PitchBook\u2019s best-in-class private company, deal, and fund data\u2014sourced through PitchBook\u2019s rigorous collection and quality assurance processes. \",/*#__PURE__*/e(\"strong\",{children:\"Combining this data with Rogo\u2019s fine\u2011tuned, financial\u2011reasoning models transforms how bankers and investors can identify opportunities, benchmark deals, and understand market movements. \"}),\"This marks the start of a broader data partnership, with even more to come.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:\"\u201COur mission at Rogo is to make bankers and investors smarter and more efficient,\u201D said John\u202FWillett, Rogo Co\u2011Founder & COO. \u201CBy integrating PitchBook\u2019s comprehensive market data with our platform, we're empowering our users to get accurate, actionable insights from a source they already trust.\u201D\"})})]});export const richText2=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Rogo announced a strategic collaboration with OpenAI to embed deep research capabilities into custom workflows for investment banks, private equity firms and hedge funds. This combines OpenAI\u2019s frontier language models and research infrastructure with Rogo\u2019s domain expertise, delivering fast, rigorous, and context-aware insights across financial analysis, diligence, and decision-making.\"}),/*#__PURE__*/e(\"p\",{children:\"Deep research capabilities are a core driver of frontier model development and includes breakthroughs like reinforcement learning from human feedback (RLHF), which helps align model behavior with human intent, and scalable oversight methods designed to evaluate model reasoning on complex tasks such as web browsing and research.\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:\"In a recently released evaluation that tests AI across a broad range of subjects on expert-level questions, OpenAI\u2019s deep research scored a new high at 26.6% accuracy (compared to the next best model of 13%).\"})}),/*#__PURE__*/e(\"p\",{children:\"Rogo\u2019s integration of OpenAI\u2019s deep research unlocks a new tier of autonomous agents for financial workflows. Agents can now perform company research, find precedent transactions, and generate industry reports by crawling and synthesizing data from across the web. Each response includes a full rationale and sources used. Executing this kind of exhaustive research would traditionally take an analyst hours.\"}),/*#__PURE__*/e(\"p\",{children:\"For more information about the collaboration or to schedule a demo, please contact sales@rogo.ai \"})]});export const richText3=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"We\u2019re pleased to announce our collaboration with Preqin, a part of BlackRock \u2014 and a premier provider of private market intelligence. This significant initiative will enable the firms\u2019 mutual customers to access Preqin\u2019s comprehensive datasets directly within Rogo\u2019s AI platform. \"}),/*#__PURE__*/e(\"p\",{children:\"Preqin covers the entire private capital ecosystem\u2014across private equity, venture capital, private debt, real estate, infrastructure, natural resources, and secondaries\u2014providing detailed insights into tens of thousands of investors, fund managers, funds, and transactions globally. With seamless access to Preqin\u2019s data where and when they need it, finance professionals can now:\"}),/*#__PURE__*/n(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Instantly access critical fundraising, performance, and transaction metrics\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Evaluate GPs and funds against Preqin\u2019s private market benchmarks and indices\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Automatically generate deal screens, LP updates, and market-mapping presentations that previously required hours\"})})]}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:'\"Preqin\u2019s datasets provide real insights into traditionally opaque private markets,\" says John Willett, Co-Founder & COO of Rogo. \"By combining the power of this high-quality data with Rogo\u2019s advanced AI models, we\\'re enabling finance professionals to uncover valuable, actionable intelligence more quickly and accurately than has ever been possible before.\u201D'})}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:'\"Our goal is to increase transparency and access to data and insights across global private markets, driving more informed decisions. This collaboration is a significant step toward achieving this goal by bringing together data and AI technology\" says Piers MacWhannell, Head of Feeds and Integration for Preqin\\xa0'})}),/*#__PURE__*/e(\"p\",{children:\"This collaboration follows Rogo\u2019s recent $50M Series B funding announcement, led by Thrive Capital, J.P. Morgan, and Tiger Global.\"})]});export const richText4=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Quick Bio:\"})}),/*#__PURE__*/e(\"p\",{children:\"I\u2019m one of the engineers on the Product Engineering team.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"I grew up in 7 states\u2014mainly Virginia, Arkansas, and Mississippi. I went to the University of Arkansas to study finance, but left sophomore year when I founded a startup to build case management software for universities and K-12 schools. I later joined a startup training machine learning models for wildfire detection and spread prediction using satellite images for governments, utilities, and insurance. Before joining Rogo, I co-founded a startup where we built a platform to fine-tune and inference open-source LLMs used by 10k developers and an AI chat application with 3M users.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What excites you the most about working at Rogo?\"})}),/*#__PURE__*/e(\"p\",{children:\"The team has a unique blend of deep domain expertise in finance and exceptional engineering and design talent. There\u2019s a real sense of collaboration and ownership across the entire team in building an amazing product and deploying it to the largest financial firms.\"}),/*#__PURE__*/e(\"p\",{children:\"Rogo is one of the few companies I\u2019ve seen at the AI application layer that is truly pushing the frontier of what\u2019s possible. The types of projects you can work on are extremely challenging, fun, and rewarding.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What has surprised you the most about working at Rogo?\"})}),/*#__PURE__*/e(\"p\",{children:\"The culture and team are incredible. It\u2019s refreshing to work with a team that is both incredibly talented and low ego. I often catch myself working late, not from strict deadlines or pressure, but because tackling this huge opportunity with such a sharp, collaborative team is genuinely fun.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What\u2019s your favorite part of the Rogo platform?\"})}),/*#__PURE__*/e(\"p\",{children:\"I think Tables is a powerful feature. The ability to run multiple queries at once across many companies, people, filings, and other entities, then save them as reusable templates, removes a lot of manual work from everyday financial workflows.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: Tell us about what you like to do outside of work.\"})}),/*#__PURE__*/e(\"p\",{children:\"I love to travel. Last year I went to Japan, Brazil, Greece, Spain, and England. I try to visit at least one new country per year. I also like to play basketball, soccer, golf, and padel, train Jiu Jitsu, workout, and read (mostly history).\"})]});export const richText5=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[\"At Rogo, our mission is clear and ambitious: to create Wall Street\u2019s first AI analyst by building large language models that truly \",/*#__PURE__*/e(\"strong\",{children:\"understand finance\"}),\".\"]}),/*#__PURE__*/n(\"p\",{children:[\"We are thrilled to announce our \",/*#__PURE__*/e(\"strong\",{children:\"$50M Series B led by Thrive Capital\"}),\", joined by new investors \",/*#__PURE__*/e(\"strong\",{children:\"J.P. Morgan Growth Equity Partners, Tiger Global, and Patrick O\u2019Shaughnessy\u2019s Positive Sum Ventures.\"}),\" We are grateful for the continued support of existing investors Khosla Ventures, BoxGroup, AlleyCorp, and others. This round brings Rogo\u2019s total funding to $75M.\"]}),/*#__PURE__*/e(\"p\",{children:\"Finance is about more than efficiency\u2014it\u2019s about seeing what others cannot. Wall Street\u2019s best analysts pair hard data with creativity and ruthless clarity of thought. That\u2019s the bar we\u2019ve set for Rogo.\"}),/*#__PURE__*/e(\"p\",{children:\"We\u2019re still very early. While today's models are slowly mastering routine tasks, we\u2019re still miles from our ultimate vision of a true AI analyst. Yet, the early results our clients are seeing are profound. As Patrice Maffre, International Head of Investment Banking at Nomura, says:\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"\u201COur strategic integration of Rogo is going to transform how we deliver value to clients. Rogo enables our teams to analyze market data and identify opportunities with unprecedented speed and precision, while allowing our bankers to focus more deeply on client relationships and strategic advisory.\u201D\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"\u2014 Patrice Maffre, International Head of Investment Banking, Nomura\"})}),/*#__PURE__*/n(\"p\",{children:[\"We\u2019ve learned firsthand that generic AI tools fall short in high finance\u2014value comes from specialization, which is why each deployment of Rogo is bespoke. We must understand the nuances of the most sophisticated financial firms. This requires security, partnership, and trust. We\u2019re deeply grateful to our pioneering clients like \",/*#__PURE__*/e(\"strong\",{children:\"Lazard, Moelis, Tiger Global, GTCR, Nomura, Raymond James, and Siris Capital \"}),\"whose expert perspectives continually sharpen our product and push us forward.\\xa0\"]}),/*#__PURE__*/e(\"p\",{children:\"Sophisticated clients require exceptional service, which is why from day one, we made it our mission to hire the best. Our talent-dense, small team includes former Gemini AI researchers, Citadel quants, and Blackstone investors, all singularly obsessed with teaching AI to think, reason, and analyze like Wall Street\u2019s sharpest minds. With this unique intersection of elite AI talent, deep financial expertise, and relentless execution, Rogo is uniquely positioned to deliver Wall Street\u2019s first true AI analyst.\"}),/*#__PURE__*/e(\"p\",{children:\"With this funding, we are accelerating our investment in next-generation, secure financial reasoning models and autonomous agents \u2014 intelligence that seemed impossible only a few years ago. If you're an engineer inspired to tackle frontier AI challenges in finance, we'd love to talk. And if you\u2019re at a financial institution determined to become AI-first, let us show you what's possible.\"}),/*#__PURE__*/e(\"p\",{children:\"Thank you to our investors, our amazing clients, and above all, our exceptional team.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"We\u2019re just getting started!\"})]});export const richText6=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[\"Welcome to the latest installment of our 'Meet the Team' series, where we introduce Rogo employees and share insights into their backgrounds and experiences. Interested in joining the Rogo team? See our openings \",/*#__PURE__*/e(a,{href:\"http://rogodata.com/careers\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"here\"})}),\".\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Bio:\"})}),/*#__PURE__*/e(\"p\",{children:\"Curt is the latest new member of Rogo\u2019s Core AI team, bringing a wealth of experience in AI, search technologies, and large-scale computing.\"}),/*#__PURE__*/e(\"p\",{children:\"He holds a BS in Chemistry from the University of Illinois at Urbana-Champaign and a PhD in Theoretical Chemistry from UC Berkeley. Before joining Rogo, Curt spent 13 years at Google, where he led projects in Knowledge Graph, web search query classification and ranking, and search quality for Cloud Vertex AI Search. Prior to that, he worked at Sandia National Laboratories, where he pioneered the use of high-performance computing in quantum chemistry.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What excites you the most about working at Rogo?\"})}),/*#__PURE__*/e(\"p\",{children:\"The drive and energy here are unlike anything I\u2019ve ever experienced in a large organization. Everyone is pushing the boundaries of what\u2019s possible, fueled by both a sense of urgency and excitement in solving tough problems. The team is dedicated to building an amazing product\u2014people aren\u2019t just doing their jobs; they recognize the unique opportunity Rogo has and are passionate about creating something with major impact.\"}),/*#__PURE__*/e(\"p\",{children:\"What stands out most is the collaborative mindset. There\u2019s a real sense that we\u2019re all in this together, tackling challenges as a unified team rather than in silos\u2014and that extends beyond engineering to the entire company. That camaraderie makes every challenge both more manageable and more rewarding because you know you\u2019re not facing it alone. It\u2019s a culture of mutual support, high standards, and relentless innovation, and that\u2019s what makes Rogo such an exciting place to be.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What's your favorite part of the Rogo platform?\"})}),/*#__PURE__*/e(\"p\",{children:\"The UX is incredibly intuitive\u2014it allows users to focus on what they need while seamlessly surfacing the most useful insights from Rogo\u2019s advanced AI. You can really see the deep industry expertise of the team reflected in the product.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: Tell us about what you like to do outside of work.\"})}),/*#__PURE__*/e(\"p\",{children:\"I practice yoga and love spending time outdoors, whether mountain biking or hiking. I also have a 472 day Duolingo streak\u2014mostly in Danish, but I occasionally start learning a random language just for fun.\"})]});export const richText7=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"We're thrilled to announce that Joseph Kim has joined us as our Head of Applied AI. With his background in AI and search \u2013 from MIT to NASA to Google \u2013 Joseph brings invaluable experience to help advance Rogo's mission of transforming finance with AI.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"From Space Robots to Search: A Journey in Technical Innovation\"})}),/*#__PURE__*/e(\"h3\",{children:\"MIT & NASA\"}),/*#__PURE__*/e(\"p\",{children:\"Joseph began his career as a researcher at the MIT Media Lab, working on programmable metamaterials \u2014 an interdisciplinary field combining mechanical engineering and computer science. After graduation, he spent four years at NASA as a research scientist, developing systems for aeronautics and robotically assembled space structures. This work involved early applications of deep reinforcement learning, technology that would later influence developments like AlphaGo.\"}),/*#__PURE__*/e(\"h3\",{children:\"Retail & Industry-Specific AI at Google\"}),/*#__PURE__*/e(\"p\",{children:\"In 2017 and 2018, the transformer and BERT papers were released. \\\"Everyone in the ML community had our 'ChatGPT moment' then,\\\" Joseph says. Following this development, Joseph joined Google to focus on artificial intelligence. He started in retail search, where he gained insights into industry-specific AI solutions.\"}),/*#__PURE__*/e(\"p\",{children:'\"Given the critical impact of online product search on a retailer\\'s revenue and profitability, the lack of technical expertise and investment in this area was shocking,\" Joseph explains. \"Companies relied on thousands of brittle and hand-tuned rules, instead of leveraging the power of big data and machine learning to automatically optimize revenue, and most retailers put very little emphasis on hiring top engineers or developing truly scalable, impactful search solutions. Even with relatively simple ML techniques, Google could outperform in-house solutions by up to 50%. It opened my eyes to how underserved high-stakes industries can be when it comes to applying cutting-edge technology.\"'}),/*#__PURE__*/e(\"h3\",{children:\"Web Search and Gemini at Google\"}),/*#__PURE__*/e(\"p\",{children:\"After growing Retail Search from a prototype into one of Cloud's most profitable businesses, Joseph moved to Google's core ranking and ML team for web search. His initial focus was launching BERT to Search's billions of users. \\\"Introducing transformer models into Google Search led to the biggest step-function improvement to search quality ever, and bringing those semantic understanding improvements to Search's billions of users worldwide was a deeply rewarding and humbling experience,\\\" Joseph recalls.\"}),/*#__PURE__*/e(\"p\",{children:\"Following ChatGPT's launch in late 2022, Joseph joined the Gemini team at Google. His research focused on reinforcement learning with human and machine feedback for improving generative language models.\"}),/*#__PURE__*/n(\"p\",{children:['\"The first major wave of AI capabilities was unlocked by the invention of the transformer, enabling super-human semantic understanding at scale. The subsequent release of RLHF and ChatGPT in 2022 further revolutionized the field, enabling sophisticated instruction-following that spawned a host of new applications and products. We are now on the cusp of the third wave: agentic AI. These systems will move beyond simple chat responses to actively participate in complex tasks, working alongside humans in a symbiotic relationship. This shift promises to reshape workflows across numerous sectors, with finance poised to be at the forefront of this transformation.',/*#__PURE__*/e(\"strong\",{children:'\"'})]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Why Finance Needs a Search Revolution\"})}),/*#__PURE__*/e(\"p\",{children:\"Joseph's interest in Rogo stems from his observations about technology in finance. Despite managing trillions of dollars, many financial firms continue to rely on manual processes and fragmented tools.\"}),/*#__PURE__*/e(\"p\",{children:'\"I saw the same pattern in finance that I witnessed years ago in retail search,\" Joseph notes. This insight became clear during the pandemic when a hedge fund offered $20,000 a month for software to track stock discussions on WallStreetBets. \"That\\'s a 3-hour project for an engineer that a hedge fund would pay $20,000 a month for, likely because they lack the expertise to even know if it was a 3-hour or 3-month project.\"'}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Building the Future of Financial Intelligence at Rogo\"})}),/*#__PURE__*/e(\"p\",{children:\"At Rogo, Joseph will lead our AI development, focusing on innovations including:\"}),/*#__PURE__*/n(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Multi-step reinforcement learning with human and machine feedback\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Custom-built hybrid retrieval optimized for LLM prompt packing (RAG++)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Monte Carlo Tree Search for scaling test-time compute\"})})]}),/*#__PURE__*/e(\"p\",{children:'\"Finance has always been about rigor and precision,\" Joseph adds. \"At Rogo, we have the opportunity to bring modern AI capabilities to the table.\"'}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Join Our Team\"})}),/*#__PURE__*/e(\"p\",{children:\"If you're interested in applying cutting-edge AI to complex financial problems, we're hiring.\"}),/*#__PURE__*/e(\"p\",{children:\"\\\"Within Google Search and Gemini, we tackled some fascinating technical problems. However, the sheer size of Google sometimes meant that there weren't enough GPUs in the world to build our exciting research prototypes into real products. At Rogo, the economics around cost per query are enormously different \u2013 and I'm excited to explore a novel solution space and to play a deep role in shaping the future of financial work.\\\"\"})]});export const richText8=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[\"Welcome to the latest installment of our 'Meet the Team' series, where we introduce Rogo employees and share insights into their backgrounds and experiences. Interested in joining the Rogo team? See our openings \",/*#__PURE__*/e(a,{href:\"http://rogodata.com/careers\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"here\"})}),\".\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"[Quick Bio]\"})}),/*#__PURE__*/e(\"p\",{children:\"I\u2019m one of the engineers on the AI Search Team.\"}),/*#__PURE__*/e(\"p\",{children:\"I grew up in California and went to Stanford where I studied computer science with a concentration in\"}),/*#__PURE__*/e(\"p\",{children:\"artificial intelligence. In college I interned for some small tech startups, at the VC firm GSV, and conducted AI research with professors in the Graduate School of Business. I was also on the club basketball team and the philanthropy chair for the chapter of my college fraternity. After graduation I worked at Weights & Biases, a startup crypto hedge fund (not that one), and an AI workflow automation company before joining the Rogo team in August 2024.\"}),/*#__PURE__*/e(\"p\",{children:\"As a kid, I played a ton of sports and video games with my favorites being basketball and fallout respectively. I am a proud evangelist of YouTube premium and binge video essays on everything from musicology to geopolitics. Some of my favorite channels are 3Blue1Brown, Adam Neely, Alex O\u2019Connor (formerly \u201CCosmic Skeptic\u201D), polymatter, F.D Signifier, GothamChess, and No Boilerplate.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"Nowadays, I spend most of my free time training Brazilian jiu-jitsu, singing the death metal band SUNDEATH (@sundeath_nyc on instagram), and hanging out with my dog Billy. I also love all things alternative music: everything from pop-punk and emo to blackgaze and slamming brutal death deathcore and will happily make folks an intro playlist on request.\"}),/*#__PURE__*/e(\"p\",{children:\"Some more random fun facts:\"}),/*#__PURE__*/n(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"I\u2019ve officiated two weddings\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"My first babysitter went on to become a billionaire\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"I am learning Portuguese: eu sou o gringo\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What excites you the most about working at Rogo?\"})}),/*#__PURE__*/e(\"p\",{children:\"I\u2019m most excited about building state of the art technology with some of the smartest, hardest working people I\u2019ve ever met! So many AI companies these days are just branded wrappers around ChatGPT so it has been awesome to work on such a deep technical product in such an exciting space.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What surprised you most about working at Rogo?\"})}),/*#__PURE__*/e(\"p\",{children:\"To be honest it was how much I loved my colleagues and our work culture. Having worked in tech and finance before I\u2019ve experienced the pros and cons of the typical work cultures and personality types those two industries attract. I can honestly say that Rogo is my dream cultural blend. We have the professionalism and ambition of finance and the egalitarian, nerdy culture of tech.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What's your favorite part of the Rogo platform?\"})}),/*#__PURE__*/e(\"p\",{children:\"If I remove the bias I have for the parts of the platform I directly work on I\u2019d say Rogo\u2019s UX and design. The platform truly is a beautifully designed product with a wonderful UX experience. Our head of design Chris is an absolute beast. I truly think he could even make submitting reimbursement claims to insurance exciting if he put his mind to it.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: Tell us about what you like to do outside of work.\"})}),/*#__PURE__*/e(\"p\",{children:\"Besides the whole \u201CI like trying new restaurants and hanging out with friends\u201D I love going to standup comedy and smaller live music and arts shows in the city. One thing I love most about living in New York is that when you see something cool on social media, some sort of performance or something, there\u2019s like a 75% chance it is currently or will soon be in NYC.\"})]});export const richText9=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"New York, Dec 1st, 2024\"}),\" \u2014 Rogo has announced a partnership with Crunchbase, \",/*#__PURE__*/e(\"br\",{}),\"a leading provider for private company intelligence, to support the development of\",/*#__PURE__*/e(\"br\",{}),\"Rogo\u2019s financial generative AI platform. This collaboration will enable Rogo to \",/*#__PURE__*/e(\"br\",{}),\"expand coverage of private markets, delivering powerful, data-backed insights to \",/*#__PURE__*/e(\"br\",{}),\"leading financial institutions.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Rogo and Crunchbase have a shared vision of helping finance professionals stay \",/*#__PURE__*/e(\"br\",{}),\"ahead of market activity and make smarter decisions, faster. Leveraging \",/*#__PURE__*/e(\"br\",{}),\"Crunchbase\u2019s best-in-class private company data alongside Rogo\u2019s finance-\",/*#__PURE__*/e(\"br\",{}),\"specific, fine-tuned models, Rogo\u2019s AI analyst dramatically accelerates finance \",/*#__PURE__*/e(\"br\",{}),\"workflows by automating traditionally manual research tasks. This integration \",/*#__PURE__*/e(\"br\",{}),\"surfaces key insights from funding events, financial details, and essential \",/*#__PURE__*/e(\"br\",{}),\"firmographics, enabling analysts to create comprehensive company profiles in \",/*#__PURE__*/e(\"br\",{}),\"minutes rather than hours and generate market landscapes in a fraction of the \",/*#__PURE__*/e(\"br\",{}),\"usual time.\"]}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/n(\"p\",{children:['\"When two companies have missions that are as aligned as Crunchbase\u2019s and ',/*#__PURE__*/e(\"br\",{}),\"Rogo\u2019s, partnering just makes sense,\u201D said Crunchbase Chief Product Officer \",/*#__PURE__*/e(\"br\",{}),\"Megh Gautam. \u201CWe both care deeply about helping finance professionals make \",/*#__PURE__*/e(\"br\",{}),\"sense of the traditionally opaque private markets. By integrating Crunchbase\u2019s \",/*#__PURE__*/e(\"br\",{}),\"uniquely sourced, proprietary data, and signals that make sense of private \",/*#__PURE__*/e(\"br\",{}),\"market activity \u2013which covers hard-to-find firmographics, financials, and more \",/*#__PURE__*/e(\"br\",{}),\"for private companies \u2013Rogo will help synthesize data in an actionable, usable \",/*#__PURE__*/e(\"br\",{}),'way.\"']})}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/n(\"p\",{children:[\"\u201CPartnering with Crunchbase is a major milestone in our mission to create the \",/*#__PURE__*/e(\"br\",{}),\"world's first human-quality AI financial analyst,\u201D says John Willett, Rogo\u2019s Co-\",/*#__PURE__*/e(\"br\",{}),\"Founder and COO. \u201CI know firsthand how challenging it is for bankers to find \",/*#__PURE__*/e(\"br\",{}),\"high-quality sources for private markets. And like all types of ML, generative AI is \",/*#__PURE__*/e(\"br\",{}),\"only as good as its inputs. Crunchbase\u2019s verified, reliable data ensures our AI \",/*#__PURE__*/e(\"br\",{}),\"analyst delivers insights that meet Wall Street\u2019s rigorous standards of accuracy.\u201D\"]})}),/*#__PURE__*/e(\"p\",{children:\"The partnership announcement follows Rogo's recent $18.5 million Series A funding. By combining cutting-edge artificial intelligence with robust private market data, Rogo is poised to redefine the role of technology in financial analysis. \"}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/n(\"strong\",{children:[\"About Rogo\",/*#__PURE__*/e(\"br\",{})]}),\"Rogo is an enterprise AI platform built by and for finance professionals. Rogo\u2019s \",/*#__PURE__*/e(\"br\",{}),\"platform is built on a foundation of reliable, high-quality data, empowering firms to\",/*#__PURE__*/e(\"br\",{}),\"make smarter, faster decisions with conviction. To learn more, visit www.rogo.ai \",/*#__PURE__*/e(\"br\",{}),\"and follow Rogo on LinkedIn.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/n(\"strong\",{children:[\"About Crunchbase\",/*#__PURE__*/e(\"br\",{})]}),\"Crunchbase is a private company intelligence platform built on proprietary data \",/*#__PURE__*/e(\"br\",{}),\"and AI that helps dealmakers find and act on the right private companies. To learn \",/*#__PURE__*/e(\"br\",{}),\"more visit about.crunchbase.com and follow Crunchbase on LinkedIn and X.\"]})]});export const richText10=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"NEW YORK & STOCKHOLM\"}),\" \u2013 Today, Rogo, the cutting-edge generative AI platform for finance, \",/*#__PURE__*/e(a,{href:\"https://www.prnewswire.com/news-releases/rogo-partners-with-quartr-to-revolutionize-financial-workflows-with-earnings-data-302346151.html\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!0,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"announced a partnership with Quartr\"})}),\", the leading provider of live earnings call data and investor relations materials. This collaboration unlocks powerful new capabilities for financial professionals, leveraging Quartr's public market data such as company filings and presentations to enhance Rogo's AI-driven analysis.\"]}),/*#__PURE__*/e(\"p\",{children:\"The integration allows Rogo users to analyze earnings call transcripts and investor relations presentations from over 12,000 public companies globally. By integrating Quartr's robust API, investment bankers and investors can now extract key insights, identify trends, and compare management commentary across multiple quarters and companies simultaneously.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"The partnership showcases its first use case: a feature that creates polished earnings summaries and financial insights in seconds. This technology allows professionals to stay ahead of the competition during critical earnings seasons by extracting actionable insights from live events without missing a beat.\"}),/*#__PURE__*/e(\"p\",{children:'\"This partnership with Rogo is an exciting step toward simplifying financial workflows,\" says Oscar K\\xfcntzel, Co-Founder and CEO of Quartr. \"By combining our unique data with Rogo\u2019s AI, we\u2019re helping finance professionals uncover insights and company narratives faster and with more precision.\"'}),/*#__PURE__*/e(\"p\",{children:\"The integration is already being embraced by Rogo's clients, with use cases ranging from rapid earnings call analysis to preparing client-ready presentations in minutes. These features, powered by Quartr\u2019s unique technology, further Rogo\u2019s mission of empowering the finance industry with smarter, faster tools.\"}),/*#__PURE__*/e(\"p\",{children:\"For more information about the partnership or to schedule a demo, contact sales@rogodata.com.\"}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/n(\"strong\",{children:[\"About Quartr\",/*#__PURE__*/e(\"br\",{})]}),\"Quartr provides tens of millions of end-users around the world with easy access to first-party information from over 12,000 public companies. The Quartr product suite includes an API that enables third-parties to access Quartr's unique live earnings calls and transcription technology and its extensive global database of IR material including slide decks and filings; Quartr Pro, a desktop research platform used by leading hedge funds, asset managers, equity research departments, and IR professionals globally; and a free mobile app for both iOS and Android. Learn more at \",/*#__PURE__*/e(a,{href:\"https://quartr.com/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"https://quartr.com\"})}),\".\"]}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/n(\"strong\",{children:[\"About Rogo\",/*#__PURE__*/e(\"br\",{})]}),\"Rogo is the leading generative AI platform for the financial industry, combining cutting-edge intelligence tools with tailored solutions for investment bankers and public and private investors. From automating workflows to providing real-time analysis, Rogo transforms how finance professionals work.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"strong\",{children:\"Media Contact\"})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(a,{href:\"mailto:julia@rogo.ai\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"julia@rogo.ai\"})})})]});export const richText11=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"em\",{children:\"NEW YORK, December 2024\"}),\" \u2013 Rogo, the enterprise AI platform trusted by leading financial institutions,\",/*#__PURE__*/e(a,{href:\"https://www.prnewswire.com/news-releases/rogo-integrates-sp-capital-iq-data-into-its-ai-powered-workflows-302334861.html?tc=eml_cleartime\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!0,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\" today announced\"})}),\" it has integrated data from S&P Capital IQ into its AI-powered workflows. This initiative will help financial professionals extract insights and make decisions with unprecedented speed and confidence. \"]}),/*#__PURE__*/e(\"p\",{children:\"The integration enables investment professionals to quickly analyze and extract insights from S&P Capital IQ's extensive datasets \u2013 including earnings transcripts, fundamental financials, consensus estimates, and real-time market data \u2013 through Rogo's AI-powered interface. Financial teams can now automate complex analyses that traditionally required hours of manual work, such as comparing detailed financial metrics across custom peer sets, extracting key themes from thousands of earnings calls, or identifying market trends across decades of historical data.\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:\"\\\"By combining S&P Capital IQ's market data with Rogo's AI capabilities, we're turning hours of manual analysis into seconds of automated insight,\\\" said John Willett, Co-Founder and COO of Rogo. \\\"Whether it's analyzing earnings calls or building complex financial models, we're dramatically accelerating how financial professionals extract value from their data \u2013 all while maintaining the accuracy and rigor that large institutions demand.\\\"\"})}),/*#__PURE__*/e(\"p\",{children:\"The collaboration represents a significant milestone in Rogo's mission to modernize financial workflows through secure, enterprise-ready AI technology.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"About Rogo\"})})}),/*#__PURE__*/e(\"p\",{children:\"Rogo is the secure enterprise AI platform built by and for financial professionals. Trusted by leading investment banks, private equity firms, and hedge funds, Rogo combines advanced LLMs with proprietary data and workflows that enables users to work smarter and faster. \"}),/*#__PURE__*/e(\"p\",{children:\"For more information, visit www.rogo.ai or follow us on LinkedIn.\"})]});export const richText12=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[\"Welcome to the latest installment of our \u2018Meet the Team\u2019 series, where we introduce Rogo employees and share insights into their backgrounds and experiences. Interested in joining the Rogo team? See our openings \",/*#__PURE__*/e(a,{href:\"https://rogo.ai/careers#dark\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"here\"})}),\".\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"From Investment Banking & Private Equity to Rogo\\xa0\"})}),/*#__PURE__*/e(\"p\",{children:\"Strib Walker has recently joined Rogo's Strategy & Operations team, bringing both sellside & buyside expertise from his two years at Morgan Stanley as an Analyst in the Financial Sponsors Group and two years at The Jordan Company (\u201CTJC\u201D) as an Associate on the Investment Team. Most recently, Strib was the Founding Generalist at Upfront, an AI-enabled home services marketplace.\"}),/*#__PURE__*/e(\"p\",{children:\"Strib is a graduate of Princeton, where he graduated Cum Laude with a Bachelor of Arts in Economics. While there, he was also a four-year member and senior captain of the Men\u2019s Varsity Lacrosse Team.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What excites you the most about working at Rogo?\"})}),/*#__PURE__*/e(\"p\",{children:\"I would have been a power user of Rogo while in banking and private equity, but at the time, it never really occurred to me just how much leverage I could be getting from GenAI tooling. Once I joined the startup world and began using AI tools daily, I realized how helpful a finance-specific version would have been during my time at Morgan Stanley and TJC. Enter Rogo. Now, I can\u2019t wait to show finance professionals all they can do with our platform.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What's your favorite part of the Rogo platform?\"})}),/*#__PURE__*/e(\"p\",{children:\"I mostly focused on Supply Chain & Logistics at TJC, and the team was naturally interested in tracking broader freight market commentary on earnings calls. Summarizing that sentiment used to be a lengthy combination of finding the transcript, reading/re-reading, ctrl+f\u2019ing, copy/pasting, drafting a doc or email, citing, and double checking\u2026for every call.\"}),/*#__PURE__*/e(\"p\",{children:\"With Rogo, what could have been hours of work is a ten second query (you can even create a shortcut). And because everything is fully auditable, I can still ensure accuracy and use my own judgment as someone familiar with the space. Rogo is the perfect starting point for so many tasks like this.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: Tell us about what you like to do outside of work.\"})}),/*#__PURE__*/e(\"p\",{children:\"I\u2019m typically trying to be outside as much as possible\u2014whether that\u2019s basketball, tennis, or just walking around the city. I also continue to be on the hunt for New York\u2019s best chocolate chip cookie.\"})]});export const richText13=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"At this year\u2019s Evident AI Symposium in NYC, thought leaders from Morgan Stanley, Wells Fargo, and more shared how AI is transforming knowledge creation and revenue generation in the financial industry. \"}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"David Wu\"}),\" (Head of Firm-wide AI Product & Architecture Strategy, Morgan Stanley) discussed the importance of deploying AI tools to employees who are most adjacent to clients. Morgan Stanley began with Wealth Management, where advisors focus on deepening client relationships and fostering trust. AI tools now enable advisors to quickly address client queries and improve client experiences. David also noted how these capabilities are being extended to Investment Banking, Sales & Trading, and Investment Research teams, providing self-serve insights and boosting efficiency. However, he emphasized that maximizing these tools requires retraining how users process information, shifting away from traditional keyword-based approaches.\"]}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Chintan Mehta\"}),\" (CIO of Digital Innovation & Strategy, Wells Fargo) highlighted the bank's customer-facing AI product, \",/*#__PURE__*/e(\"em\",{children:\"Fargo,\"}),\" an NLP/LLM-powered platform that has been operational for 1.5 years, enabling agentic, transactional interactions. Internally, Wells Fargo uses \",/*#__PURE__*/e(a,{href:\"https://venturebeat.com/ai/wells-fargos-google-llm-driven-assistant-may-reach-100-million-interactions-per-year/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!0,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"em\",{children:\"Tachyon\"})})}),\", a platform focused on operational efficiency. Chintan noted that AI adoption creates new interactions, revealing fascinating insights about how users grow comfortable with the technology. He pointed out that adoption patterns\u2014incremental vs. all-at-once\u2014are crucial to understanding AI\u2019s broader impact. Chintan likewise emphasized the unexpected benefits of \u201Censemble modeling,\u201D which often reveals value beyond an AI application\u2019s original use case.\"]}),/*#__PURE__*/e(\"p\",{children:\"Rogo CEO Gabe Stengel joined the panel to share how GenAI is reshaping productivity in investment banking, predicting that efficiency gains could double the output of entry-level analysts over the next five years.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"500\",src:\"https://framerusercontent.com/images/1Gq337Tv1JDvSTjBmuwXup8di3c.jpg\",srcSet:\"https://framerusercontent.com/images/1Gq337Tv1JDvSTjBmuwXup8di3c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1Gq337Tv1JDvSTjBmuwXup8di3c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1Gq337Tv1JDvSTjBmuwXup8di3c.jpg 1500w\",style:{aspectRatio:\"1500 / 1000\"},width:\"750\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:'\"Knowledge drives productivity, but insights drive revenue. When you think about your highest earning employees, you need to ask: How do you make them higher leverage to produce insights that are actually actionable?\"'})}),/*#__PURE__*/n(\"p\",{children:[\"We're thankful to our partners at \",/*#__PURE__*/e(\"strong\",{children:\"Evident AI, Bloomberg,\"}),\" and co-panelists \",/*#__PURE__*/e(\"strong\",{children:\"David Wu, Chintan Mehta, Sid Khosla, and Kristin Milchanowski\"}),\" for the dynamic discussion.\\xa0The symposium, attended by over 300 professionals and thousands more online, brought together thought leaders to discuss real-world applications of AI in banking and beyond.\\xa0\"]}),/*#__PURE__*/n(\"p\",{children:['For those who missed it, you can catch the full panel below (\"The Insight Machine\" panel ',/*#__PURE__*/e(a,{href:\"https://www.youtube.com/live/NkTidqUeo3A?feature=shared&t=7665\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!0,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"begins at 2:07:45\"})}),\"):\"]}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\",children:n=>/*#__PURE__*/e(r,{...n,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=NkTidqUeo3A\"})})})]});export const richText14=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"I\u2019m excited to announce that Rogo has raised an $18.5M Series A, led by \"}),/*#__PURE__*/e(a,{href:\"https://www.forbes.com/profile/keith-rabois/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!0,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"strong\",{children:\"Keith Rabois\"})})}),/*#__PURE__*/e(\"strong\",{children:\" at Khosla Ventures,\"}),\" OpenAI\u2019s first investors, with participation from Jack Altman, Mantis VC, BoxGroup, Company Ventures, ScOp Venture Capital, Original Capital and many others. This funding enables us to scale our team, create new and strengthen existing partnerships, and build Wall Street\u2019s first trusted AI analyst. Keith, a renowned operator and visionary investor, has a proven track record of early investments in generational companies like Stripe, DoorDash, and Airbnb. We\u2019re thrilled to welcome him to our Board and look forward to the immediate impact he\u2019ll bring.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Building the future of finance\"}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Finance has a human resources problem: every firm\u2019s most important resources are human\"}),\", and humans process information slowly, make mistakes, and burn out when they reach their limits. The viral \",/*#__PURE__*/e(a,{href:\"https://drive.google.com/file/d/1jyeu-wvS3Z10xQ0BlMIDOkh_INoP_Nnb/view?pli=1\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!0,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"Goldman Sachs Working Conditions Survey\"})}),\" put in plain English what the whole industry has long understood - \",/*#__PURE__*/e(\"em\",{children:\"smart analysts, who are hired for their competence, are retained for their pain tolerance.\"})]}),/*#__PURE__*/e(\"p\",{children:\"When I was an investment banking analyst at Lazard, I looked up to the firms' extraordinary dealmakers as examples of finance at its best. I was mesmerized by how they effortlessly strategized with Fortune 100 CEOs, discussed macro trends, and navigated the complexities of M&A. They lived, breathed, and moved markets. If I could have instantly had that insight and experience, or have had more time to focus on the fascinating work they were doing, I might never have left banking. What frustrated me about finance was never the long hours\u2013\u2013they were expected\u2013\u2013but how hard it was to be as smart and knowledgeable as the men and women I so deeply admired. \"}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Our mission at Rogo is to make firms \u2013\u2013 and people \u2013\u2013 smarter. \"}),\"Bankers need more than just a chatbot. We\u2019re building Rogo to be every firm\u2019s smartest analyst and every analyst\u2019s most reliable teammate. Finance is an apprenticeship business and needs AI that drives efficiency and intelligence. As firms compete for top talent, we are motivated by the unprecedented demand for AI tooling across banking and private equity. And although industry leaders recognize the high cost of late adoption, many firms are still struggling to adopt an effective AI strategy. Most AI tools on the market today fall short, offering basic data access, simple chat functions, or limited automation of simple workflows. Back office tools are important, but the front office is where real strategic value is created. \"]}),/*#__PURE__*/e(\"h2\",{children:\"Meet Rogo\"}),/*#__PURE__*/e(\"p\",{children:\"At Rogo, we understand that financial firms are built to deliver high-quality at high-velocity. Rogo is an enterprise AI platform built by and for finance professionals. We fine-tune language models to emphasize source citations, auditability, recency, and financial intuition. As a result, Rogo is significantly more accurate on financial tasks than other general purpose tools.\\xa0\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"Our powerful AI platform is connected to a knowledge graph of financial data \u2014 hundreds of millions of research reports, filings, and internal documents \u2014 capable of instantly solving complex tasks, and we partner with firms to build custom AI solutions. We do so transparently, securely, and at scale, just as firms do for their clients.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"513\",src:\"https://framerusercontent.com/images/JVNEdcRz8MpKidOdjKPTP32DHFU.png\",srcSet:\"https://framerusercontent.com/images/JVNEdcRz8MpKidOdjKPTP32DHFU.png?scale-down-to=512 512w,https://framerusercontent.com/images/JVNEdcRz8MpKidOdjKPTP32DHFU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JVNEdcRz8MpKidOdjKPTP32DHFU.png 1796w\",style:{aspectRatio:\"1796 / 1026\"},width:\"898\"}),/*#__PURE__*/e(\"p\",{children:\"Since launching in February, Rogo has witnessed meteoric growth:\"}),/*#__PURE__*/n(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Rogo has raised $26M\"}),\" to date from Khosla Ventures, AlleyCorp, BoxGroup, Jack Altman (AltCapital & Lattice CEO), Qasar Younis (Applied Intuition CEO), and The Chainsmokers\u2019 Mantis VC. \"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Rogo\u2019s platform metrics are best-in-class for accuracy and usage\"}),\": Rogo is 2.42x more accurate than ChatGPT for finance using Patronus AI\u2019s FinanceBench evaluation, and 1.8x more accurate for questions related to information past 2022 using the FreshLLMs dataset. Today, Rogo saves users an average of 400 hours per year \u2013 about 10 hours per week \u2013 on core analyst tasks.\\xa0 \"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Rogo doubled headcount to ~30 employees\"}),\", bringing together world-class engineers, bankers, and investors from firms like Citadel and Blackstone. We continue to invest in our engineering team to accelerate new product development and make our core platform as intuitive and secure as possible. \"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Rogo is partnered with 25 firms\"}),\" nationwide, including leading public investment banks, private equity firms, and hedge funds. We are in the process of expanding within these firms by identifying new use cases for all business units. \"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"We continue to enhance our platform by partnering with AWS, Azure OpenAI, Together, and Anthropic for enterprise-focused AI infrastructure optimization.\\xa0\\xa0\"})})]}),/*#__PURE__*/e(\"p\",{children:\"And we are just getting started. Just between now and the end of the year, we're on track to double revenue and expand our banking footprint significantly.\\xa0\"}),/*#__PURE__*/n(\"h2\",{children:[\"Firms need \",/*#__PURE__*/e(\"em\",{children:\"partners\"}),\", not chatbots\"]}),/*#__PURE__*/e(\"p\",{children:\"We believe that a platform for everyone ends up serving no one. Just as Goldman Sachs wouldn\u2019t outsource their analyst training, leading firms won\u2019t fully outsource the development of their AI analyst. That\u2019s why we reject the traditional \u201Cbuy-or-build\u201D approach. We believe firms need strategic partners that elevate capabilities and deliver tailored solutions.\"}),/*#__PURE__*/e(\"p\",{children:\"Today, Rogo offers three key products to our partners:\"}),/*#__PURE__*/n(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"AI Analyst\"}),\": An LLM-powered answer engine supercharged with the right data, security, and integrations for financial users.\"]})}),/*#__PURE__*/n(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:[/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Agent Framework\"}),\": A suite of purpose-built agents designed for all types of out-of-the-box financial workflows, including:\\xa0\"]}),/*#__PURE__*/n(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"PowerPoint creation\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Research compilation\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Private company screening\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Benchmarking analysis\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Excel modeling\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"And many more tailored solutions \"})})]})]}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Rogo Platform\"}),\": Finance is an apprenticeship business, and we want our Analyst to learn how your firm thinks \u2013 and learn fast. Technical teams can use our APIs and SDKs to pair agents together and develop cost-effective, scalable AI solutions tailor-made for internal use cases.\"]})})]}),/*#__PURE__*/n(\"p\",{children:[\"If you want to trade 100-hour workweeks for 100x productivity gains, \",/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/demo/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"schedule a demo\"})}),\" to see how other companies run on Rogo.\\xa0\"]}),/*#__PURE__*/n(\"p\",{children:[\"And if you are just as excited about redefining how financial work gets done and financial data is consumed, please visit our \",/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/careers/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"careers\"})}),\" page \u2013 this is only the beginning.\\xa0\"]})]});export const richText15=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[\"Welcome to the latest installment of our \u2018Meet the Team\u2019 series, where we introduce Rogo employees and share insights into their backgrounds and experiences. Interested in joining the Rogo team? See our openings \",/*#__PURE__*/e(a,{href:\"http://rogodata.com/careers\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"here\"})}),\".\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"From Private Equity to Rogo\\xa0\"})}),/*#__PURE__*/e(\"p\",{children:\"Niki Coley has recently joined Rogo\u2019s Strategy & Operations team, bringing invaluable buy-side expertise from her three years at Blackstone, where she was an Associate in the real estate group.\"}),/*#__PURE__*/e(\"p\",{children:\"Niki is a graduate of Duke University, where she graduated early, Summa Cum Laude with a Bachelor of Arts, double majoring in Chinese and Public Policy Studies, and minoring in Religious Studies.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"Beyond her professional life, Niki is dedicated to cancer research and immunotherapy. She serves as an Associate Board Member at The Cancer Research Institute (CRI), the world\u2019s only nonprofit organization focused exclusively on harnessing the immune system\u2019s power to conquer cancer.\\xa0\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What excites you the most about working at Rogo?\"})}),/*#__PURE__*/e(\"p\",{children:\"I am thrilled to be working at the intersection of AI and finance, leveraging my past experiences as an Analyst and Associate at Blackstone to 1) help users (like my former self) unlock ways in which Rogo can transform their day-to-day and 2) inform and shape our product\u2019s evolution.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What\u2019s your favorite part of the Rogo platform?\"})}),/*#__PURE__*/e(\"p\",{children:\"I love that I can talk to my documents using PDF Chat. In my last role, I spent a lot of time reading over and trying to understand legal documents. With PDF chat, this process is seamless. For example, I can ask Rogo to make a table summarizing key terms of any legal document and it is super quick and comprehensive.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: Tell us about what you like to do outside of work.\"})}),/*#__PURE__*/e(\"p\",{children:\"I love backgammon (I play at least 1-2 virtual games a day, although I prefer playing live!), hot yoga, and watching and making documentary films.\"})]});export const richText16=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Artificial intelligence (AI) is emerging as a game-changing force for mergers and acquisitions. In a recent panel, our CEO and Co-Founder Gabe Stengel spoke with industry experts Claudionor Coelho, Chief AI officer for Zscaler, Javier S\\xe1enz, VP of Business Development at Alantra, and Andrea McGuirt, VP and Head of Business Development and Capital Markets at Growth Curve Capital, to discuss how bespoke AI can accelerate various M&A processes for banks, corporate M&A teams, and investors.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"The AI Opportunity in M&A\"}),/*#__PURE__*/n(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"1.55em\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(25, 25, 25)\",\"--framer-text-stroke-width\":\"0px\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"\u201CThe reality with ChatGPT, with Copilot, with any of these tools is they\u2019re like interns\u2026The more you can guide them\u2026the more they will improve with you.\u201D \u2013 Gabriel Stengel\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"\u201CWe are currently seeing how we can benefit from third-party data providers and external databases that apply AI to their models and extract useful information from that.\u201D \u2013 Javier S\\xe1enz\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"\u201CWe are very eager to summarize information, put it onto a PowerPoint, and have a readout to the more senior team members who are not as close to the specific data sets.\u201D \u2013 Andrea McGuirt\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"Streamlining Deal Sourcing with AI\"}),/*#__PURE__*/e(\"p\",{children:\"One area where AI is making waves is deal sourcing. AI-powered platforms can identify potential acquisition targets, uncover hidden opportunities, and facilitate data-driven decision-making. By leveraging third-party data providers and external databases that apply AI, firms can gain a significant advantage in sourcing deals.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"Enhancing Due Diligence with AI\"}),/*#__PURE__*/e(\"p\",{children:\"AI\u2019s potential extends far beyond deal sourcing. As Andrea McGuirt highlighted, AI can streamline due diligence and underwriting processes by summarizing vast amounts of data quickly and efficiently. This allows analysts and associates to focus on higher-level analysis and strategic thinking, accelerating the overall process.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"The Importance of Human Expertise\"}),/*#__PURE__*/e(\"p\",{children:\"While AI offers incredible efficiency gains, the human element remains crucial. As Andrea McGuirt noted, \u201CHuman judgment is going to be critical.\\xa0 Wanting to look another person in the eye, shake hands and agree to do something special together, that\u2019s not going to be replaceable by AI from my perspective.\u201D\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"The Future of AI in M&A\"}),/*#__PURE__*/e(\"p\",{children:\"The future of M&A lies in striking the right balance between human expertise and AI-driven efficiency. As Gabriel predicted, \u201C10 years from now you\u2019re going to be emailing an AI analyst and asking for the deck or the first draft or the outline of the materials or the target list, and you will be used to getting it in 30 seconds.\u201D\"}),/*#__PURE__*/e(\"p\",{children:\"Firms that embrace AI as an accelerant, rather than a replacement for human expertise, will be well-positioned to gain a competitive edge in the ever-evolving M&A landscape.\"}),/*#__PURE__*/e(\"p\",{children:\"\u2014\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Rogo: Leading the AI Revolution in M&A\"}),/*#__PURE__*/e(\"p\",{children:\"At Rogo, we\u2019re at the forefront of this revolution. We\u2019re deploying our finance-specific generative AI solution that understands the way bankers, investors, and financial services professionals work. Our goal is to work with firms to build the tools they need to work with unprecedented efficiency and clarity.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"\\xa0\"}),/*#__PURE__*/e(\"h4\",{children:\"Join the AI Journey with Rogo\"}),/*#__PURE__*/e(\"p\",{children:\"Are you ready to navigate a future with AI at your firm? Discover how our bespoke AI can guide your roadmap to accelerate your deal processes, enhance decision-making, and drive your success.\"}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/demo/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"Contact us today\"})}),\" to learn more about how Rogo can revolutionize your M&A operations.\"]})]});export const richText17=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"em\",{children:\"Welcome to the second installment of our \u201CMeet the Team\u201D series, in which we introduce Rogo employees to share a little bit about their background, why they joined Rogo, and what excites them most about coming to work. Interested in joining the Rogo team? See our openings \"}),/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/careers/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"em\",{children:\"here\"})})}),/*#__PURE__*/e(\"em\",{children:\".\"})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"Quick Bio:\"}),/*#__PURE__*/e(\"p\",{children:\"I\u2019m James, a Houston native whose passion for tech was realized at age 15 when I started selling and repairing computers at CompUSA. Every paycheck went into building my dream gaming rig to play Half-Life 2. I also opened a Roth IRA and invested in NVIDIA stock solely because it was the priciest part of my computer build. At UC Berkeley, I majored in Economics but my favorite course was Physics for Future Presidents. Post-graduation, I had stints at Apple and a prop trading firm arbitraging semiconductor fabrication equipment before finding my calling at software startups. I\u2019ve been a part of two successful exits, the latest being Sentieo, a financial search engine acquired by AlphaSense in 2022.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Other Facts:\"})}),/*#__PURE__*/n(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"1.55em\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(25, 25, 25)\",\"--framer-text-stroke-width\":\"0px\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lived in India for a year after studying Hindi/Urdu\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Photographed giant manta rays while scuba diving in Mexico\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Named my dog Zelda after the princess\"})}),/*#__PURE__*/n(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Favorite travel destination: Galapagos Islands\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"h4\",{children:\"Q: What excites you the most about working at Rogo?\"}),/*#__PURE__*/e(\"p\",{children:\"The large language model space is still in its infancy, with groundbreaking papers and AI startups emerging weekly. Rogo\u2019s tech often feels like magic, during demos it enables companies to dream about what\u2019s possible while also making it easy to implement solutions today. Rogo has amazing engineering talent, and I thrive in high engineer-to-sales ratio environments where the product evolves rapidly, and demos leave prospects awestruck.\\xa0\"}),/*#__PURE__*/e(\"h4\",{children:\"Q: What has surprised you the most about working at Rogo?\"}),/*#__PURE__*/e(\"p\",{children:\"The staggering demand for generative AI and organizations\u2019 willingness to experiment with it. Finance and banking sectors are often viewed as sluggish and risk-averse, but they\u2019re also focused on maintaining a competitive edge through innovation. The fear of being left in the digital dust is real and is leading to a lot of momentum for Rogo.\\xa0\"}),/*#__PURE__*/e(\"h4\",{children:\"Q: What\u2019s your favorite part of the Rogo platform?\"}),/*#__PURE__*/e(\"p\",{children:\"We all know the current limitation of LLMs is their tendency to hallucinate. I\u2019m most impressed by Rogo\u2019s approach to grounding responses with citations.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"I also find the workflows and automations incredibly compelling. Since most users won\u2019t become prompt engineers, offering an interface to generate consistent and predictable outputs for common tasks and work streams is crucial.\"}),/*#__PURE__*/e(\"h4\",{children:\"Q: Tell us about what you like to do outside of work.\"}),/*#__PURE__*/e(\"p\",{children:\"I love being outdoors, immersed in nature and wildlife. This past year, I went trekking in Sumatra to spot orangutans, went scuba diving among Komodo National Park\u2019s coral reefs, and climbed the tallest mountain in Taiwan. When I can\u2019t squeeze in epic adventures, you\u2019ll find me taking my dog Zelda to nearby beaches, shark-spotting with my drone, or checking off popular local hikes on AllTrails.\"})]});export const richText18=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[\"Rogo was founded to help financial services firms leverage the power of generative AI technology. To us, this means incorporating the data that matters the most to you and working with firms to develop tailored solutions. Read more below about our edge in the financial services space.\",/*#__PURE__*/e(\"em\",{children:\"Interested in learning more about how Rogo can help your firm? \"}),/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/demo/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"em\",{children:\"Reach out to us\"})})}),/*#__PURE__*/e(\"em\",{children:\".\"})]}),/*#__PURE__*/e(\"p\",{children:\"Frequently Asked Questions\"}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/n(\"strong\",{children:[\"How is Rogo specifically built for finance use cases?\",/*#__PURE__*/e(\"br\",{})]}),\"We\u2019ve fine-tuned large language models to better understand the breadth of financial services \u2013\\xa0everything from M&A advisory to hedge fund investing and private equity / credit deal execution. Our models are trained on extensive financial data. On top of that \u2013 we keep our platform up-to-date with completely fresh information. Unlike other models with knowledge cut-offs, Rogo ingests millions of earnings transcripts, company filings, exhibits, investor presentations, and news articles on a daily basis.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"337\",src:\"https://framerusercontent.com/images/ZEsFU7IFYXCkAtU2TEsMntqK5Gw.gif\",srcSet:\"https://framerusercontent.com/images/ZEsFU7IFYXCkAtU2TEsMntqK5Gw.gif?scale-down-to=512 512w,https://framerusercontent.com/images/ZEsFU7IFYXCkAtU2TEsMntqK5Gw.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZEsFU7IFYXCkAtU2TEsMntqK5Gw.gif 1200w\",style:{aspectRatio:\"1200 / 675\"},width:\"600\"}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/n(\"strong\",{children:[\"Rogo vs. Other GenAI Tools \",/*#__PURE__*/e(\"br\",{})]}),\"Our platform provides the unprecedented level of customization that financial services firms need. Rogo integrates firms\u2019 internal documents like memos, PPTs, and contracts, allowing users to search directly on top of their most important, proprietary info. Users can also export results directly into their firm\u2019s templates, simplifying workflows end to end. Rogo offers custom AI automations, designed to reduce complex financial processes to a few clicks.\\xa0\",/*#__PURE__*/e(\"strong\",{children:\"Can I trust Rogo\u2019s information?\"}),\"Trust Rogo\u2019s accuracy, which is 2.42x better than ChatGPT for financial use cases, according to Patronus AI\u2019s \",/*#__PURE__*/e(a,{href:\"https://www.patronus.ai/announcements/patronus-ai-launches-financebench-the-industrys-first-benchmark-for-llm-performance-on-financial-questions\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"FinanceBench\"})}),\" \u2013 the industry\u2019s first benchmark for testing how LLMs perform on financial questions. (Their work was recently cited in this \",/*#__PURE__*/e(a,{href:\"https://www.cnbc.com/2023/12/19/gpt-and-other-ai-models-cant-analyze-an-sec-filing-researchers-find.html\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"article\"})}),\".)Every research result in Rogo is produced with in-line citations for each aspect of the answer, allowing you to audit everything. If Rogo can\u2019t find a source, it won\u2019t provide an answer, thereby limiting the potential for hallucination.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1080\",src:\"https://framerusercontent.com/images/jx6ngq5zzotRH4PD1lDIa7Jibc.png\",srcSet:\"https://framerusercontent.com/images/jx6ngq5zzotRH4PD1lDIa7Jibc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jx6ngq5zzotRH4PD1lDIa7Jibc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jx6ngq5zzotRH4PD1lDIa7Jibc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jx6ngq5zzotRH4PD1lDIa7Jibc.png 3840w\",style:{aspectRatio:\"3840 / 2160\"},width:\"1920\"}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/n(\"strong\",{children:[\"Is my data safe with Rogo?\",/*#__PURE__*/e(\"br\",{})]}),\"Rogo maintains the highest data security standards, coupled with best-in-class cloud security and platform resiliency to protect your most sensitive information. Read more about our safety & security protocols \",/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/safety-security/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"here\"})}),\".We partner with the providers you already trust to bring state-of-the-art generative AI to your firm, securely.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"131\",src:\"https://framerusercontent.com/images/TAvZXLHCHn4hlnqOGKChIcTT5A.png\",srcSet:\"https://framerusercontent.com/images/TAvZXLHCHn4hlnqOGKChIcTT5A.png?scale-down-to=512 512w,https://framerusercontent.com/images/TAvZXLHCHn4hlnqOGKChIcTT5A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TAvZXLHCHn4hlnqOGKChIcTT5A.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TAvZXLHCHn4hlnqOGKChIcTT5A.png 3840w\",style:{aspectRatio:\"3840 / 262\"},width:\"1920\"})]});export const richText19=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"em\",{children:\"Welcome to the first installment of our \u201CMeet the Team\u201D series, in which we\u2019ll be introducing Rogo employees to share a little bit about their background, why they joined Rogo, and what excites them most about coming to work. Interested in joining the Rogo team? See our openings \"}),/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/careers/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"em\",{children:\"here\"})})}),/*#__PURE__*/e(\"em\",{children:\".\"})]}),/*#__PURE__*/e(\"h2\",{children:\"Meet the Rogo team: James Checca, Data Engineer\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"Quick Bio:\"})})}),/*#__PURE__*/e(\"p\",{children:\"I am Rogo\u2019s first Data Engineer!\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"I grew up in Montclair, New Jersey, and attended Rutgers University: New Brunswick, where I majored in Computer Science and minored in Math and Physics. In college, I mostly spent my weekends either frequenting \u201Cbasement shows\u201D where the local live-music scene flourished, or competing in Super Smash Bros: Melee tournaments. I graduated in 2020 during the Covid lockdown, and started my first full time job as a Data Engineer at Citadel in February of 2021. I worked there until January 2023, sat out my garden leave, did some contract consulting work for a few months, and started at Rogo in January 2024.\"}),/*#__PURE__*/e(\"p\",{children:\"Some random other things about me:\"}),/*#__PURE__*/n(\"ul\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"1.55em\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(25, 25, 25)\",\"--framer-text-stroke-width\":\"0px\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"I am a 3rd degree black belt in Taekwondo\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"I have a metal plate and 12 screws in my left ankle from a skateboarding accident in 2016\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"In 4th and 5th grade I was the leader of a Drum Corps that played halftime shows for sports teams including but not limited to the Knicks, the Celtics, and the NY Giants. We also played the opening ceremony for the U.S. Open of Tennis in 2008, where we opened for the Jersey Boys and Earth Wind & Fire\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"I am color-blind\"})})]}),/*#__PURE__*/e(\"p\",{children:\"\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What excites you the most about working at Rogo?\"})})}),/*#__PURE__*/e(\"p\",{children:\"What excites me the most about working at Rogo is being able to work on diverse, difficult, and intellectually stimulating problems that exist on the cutting edge of the young, rapidly evolving, and increasingly accessible field of generative AI. It\u2019s exciting for me to be on the forefront of an inflection point in technological history, and work on something that is proving to significantly impact the way people learn, work, and build things.\"}),/*#__PURE__*/e(\"p\",{children:\"\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What has surprised you the most about working at Rogo?\"})})}),/*#__PURE__*/e(\"p\",{children:\"What\u2019s (pleasantly) surprised me the most about working at Rogo is how much I like my colleagues. Not to say I haven\u2019t liked past colleagues, or that I go into new jobs expecting to dislike my colleagues, but the adoration I have for my new team goes above and beyond what I\u2019ve ever experienced in the past.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"Not only has everyone been super cool/relatable (which goes a really long way, especially on a small team), but every single person who works here is a BEAST at what they do. The talent density here is incredibly high, and it makes working at Rogo extremely fulfilling and intellectually invigorating.\"}),/*#__PURE__*/e(\"p\",{children:\"\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: What\u2019s your favorite part of the Rogo platform?\"})})}),/*#__PURE__*/e(\"p\",{children:\"LLMs are mind-blowing in general, but I think my favorite part of the platform is PDF Chat. I\u2019ve always been super interested in NLP and linguistics, and the fact that I can upload a huge file and then instantly have a \u201Cconversation\u201D with it about its contents is really cool to me.\"}),/*#__PURE__*/e(\"p\",{children:\"\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"Q: Tell us about what you like to do outside of work.\"})})}),/*#__PURE__*/e(\"p\",{children:\"In the past few months I\u2019ve gotten really into bouldering. It\u2019s great exercise, and I find the puzzle/problem solving aspect to be super engaging/fun/rewarding.\"}),/*#__PURE__*/e(\"p\",{children:\"I\u2019ve always loved video games, and spend a good amount of time (probably too much) on my PC when I\u2019m at home.\"}),/*#__PURE__*/e(\"p\",{children:\"I play a lot of different games, and the type of games I\u2019m into changes quite a bit over time. A few examples of some of my favorite games of all time include but aren\u2019t limited to: Super Smash Bros Melee (for the gamecube), Fallout 3, Elden Ring, Portal 2, CSGO, Hades, Celeste, and Diablo 4. Recently I\u2019ve been playing a lot of Baldur\u2019s Gate 3.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"I\u2019m also a big fan of live music of any kind, and I like to snowboard.\"})]});export const richText20=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Thank you to Fundamental Edge for including Rogo\u2019s CEO and Co-Founder Gabe Stengel as a panelist in your recent AI Roundtable!\"}),/*#__PURE__*/e(\"p\",{children:\"Fundamental Edge, a buy-side analyst training firm, hosted an AI Roundtable as part of its Analyst Spring Training Conference. Alongside Gabe, panelists included Michelangelo D\u2019Agostino, VP of Machine Learning at Tegus, and Ran Zhao, Co-Founder & CEO at Onwish.\"}),/*#__PURE__*/e(\"p\",{children:\"Topics discussed include:\"}),/*#__PURE__*/e(\"p\",{children:\"Latest on AI in the fundamental investing space\"}),/*#__PURE__*/e(\"p\",{children:\"How investors are incorporating AI into their fundamental equity research process\"}),/*#__PURE__*/e(\"p\",{children:\"Leading AI tools for the fundamental investor\"}),/*#__PURE__*/e(\"p\",{children:\"Listen to the roundtable here!\"}),/*#__PURE__*/e(\"p\",{children:\" \"}),/*#__PURE__*/e(\"p\",{children:\"If you\u2019re interested in learning more about how Rogo\u2019s AI solutions could help your firm, we\u2019d love to chat. We\u2019re also hiring \u2013 see our open roles and get in touch.\"})]});export const richText21=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[\"Last week, Rogo had the opportunity to co-sponsor \",/*#__PURE__*/e(a,{href:\"https://promptlayer.com/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"PromptLayer\u2019s\"})}),\" first Prompt Engineering Tournament, alongside \",/*#__PURE__*/e(a,{href:\"https://companyventures.co/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"Company Ventures\"})}),\", \",/*#__PURE__*/e(a,{href:\"https://www.rabbit.tech/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"Rabbit\"})}),\", and \",/*#__PURE__*/e(a,{href:\"https://www.getbasis.ai/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"Basis\"})}),\".\\xa0\"]}),/*#__PURE__*/n(\"p\",{children:[\"The event consisted of a 3-round tournament to find the best prompt engineer in NYC! Participants were asked to come up with prompts to achieve varied purposes: avoiding a PR crisis, doing some homework, and giving financial advice. Each prompt was assessed with an evaluation system and given a score to select a winner! \",/*#__PURE__*/e(a,{href:\"https://www.linkedin.com/feed/update/urn:li:activity:7173815112774881280/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"Read more about the event here\"})}),\".\"]}),/*#__PURE__*/e(\"p\",{children:\"Even if not everyone can match the tournament champions\u2019 prompting prowess, several basic tips can enhance anyone\u2019s prompting skills, which we\u2019ve compiled below.\"}),/*#__PURE__*/e(\"p\",{children:\"\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"What is Prompt Engineering?\"})}),/*#__PURE__*/e(\"p\",{children:\"Prompt engineering is the process of crafting inputs (prompts) in a way that guides an AI to generate the desired outputs or responses.\"}),/*#__PURE__*/e(\"p\",{children:\"\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Basic Prompt Engineering Tips:\"})}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Be specific\"}),\": It\u2019s important that prompts precisely convey the intended request or question. Vague or overly broad prompts can lead to ambiguous or irrelevant responses.\"]}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Include context\"}),\": It always helps to provide relevant background information and details before diving into your main request. This \u201Ccontextual priming\u201D can help the AI understand the context that would make the answer most useful and applicable to your needs, especially when dealing with complex or niche subjects.\"]}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Linked Prompting\"}),\": For more complex inquiries or tasks, consider using a series of linked prompts. Start with a foundational prompt and use the response to build subsequent, more detailed prompts. This approach, often referred to as \u201Cchain prompting,\u201D can help guide the AI through a logical progression of thought or analysis, leading to more comprehensive and nuanced outputs.\"]}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Define any ambiguous terms\"}),\": In cases where a term or concept might be ambiguous, add in clarifying details to ensure the AI understands the intended meaning.\"]}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Leverage RAG (Retrieval-Augmented Generation) systems: \"}),\"If you know that an AI tool is retrieving sources to find the answer to your query, help the system out by giving hints about what information would make sense to go out and find, like expected data sources and applicable filters.\\xa0\"]}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Indicate format\"}),\": If you\u2019re looking for a specific format or structure for the response (e.g., a list, a summary, a table, etc.), include that in your prompt.\"]}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Utilize markdown\"}),\": Markdown, a lightweight markup language with plain-text formatting syntax, can be a powerful tool for instructing AI tools to organize responses in line with certain formatting expectations. For example, you can use bullet points, headers, or numbered lists in your prompt, and the model can then mirror this formatting.\\xa0\"]}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Iterate\"}),\": Use your first prompt and the response to make improvements! Often, prompt engineering involves an iterative process, and initial responses can help you refine and adjust subsequent prompts for better outcomes.\"]}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Utilize Meta Prompting\"}),\": Engage in a dialogue with the AI about the prompt itself. Ask the AI to critique or suggest improvements to your prompt. This meta approach can uncover insights and optimizations that you might not have considered, leading to more effective prompting strategies.\"]}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"em\",{children:\"If you\u2019re interested in learning more about how Rogo\u2019s AI solutions could help your firm, we\u2019d \"}),/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/demo/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"em\",{children:\"love to chat\"})})}),/*#__PURE__*/e(\"em\",{children:\". We\u2019re also hiring \u2013 see our \"}),/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/careers/#positions\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"em\",{children:\"open roles\"})})}),/*#__PURE__*/e(\"em\",{children:\" and get in touch.\"})]})]});export const richText22=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Rogo was featured last week on Morning Brew\u2019s Our Future podcast, hosted by Michael Sikand and Simran Sandhu. The hosts cover what Rogo is building, who the platform is helping, and how it can save you time.\"}),/*#__PURE__*/e(\"p\",{children:\"\u201CWhat\u2019s really cool about this company is it\u2019s a very B2B focused play, and that financial companies, [they have] all of their own methodologies, they have their own proprietary data sets, they have their own histories of trading. They have a lot of bespoke information, and that\u2019s what they [Rogo] are building is this turnkey solution specifically designed for each of these financial firms to get the most out of their data.\u201D\"}),/*#__PURE__*/n(\"p\",{children:[\"Listen to the full episode\",/*#__PURE__*/e(a,{href:\"https://podcasts.apple.com/us/podcast/she-raised-%24187-000-000-from-sam-altman-at-age-26/id1695893302?i=1000649008745\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\" here\"})}),\" (or watch it \",/*#__PURE__*/e(a,{href:\"https://www.youtube.com/watch?app=desktop&v=n1a8AMbq948&embeds_referring_euri=https%3A%2F%2Fwww.morningbrew.com%2F&feature=emb_imp_woyt\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"here\"})}),\").\"]}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"em\",{children:\"If you\u2019re interested in learning more about how Rogo\u2019s AI solutions could help your firm, we\u2019d \"}),/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/demo/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"em\",{children:\"love to chat\"})})}),/*#__PURE__*/e(\"em\",{children:\". We\u2019re also hiring \u2013 see our \"}),/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/careers/#positions\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"em\",{children:\"open roles\"})})}),/*#__PURE__*/e(\"em\",{children:\" and get in touch.\"})]})]});export const richText23=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"em\",{children:\"Our CEO and Co-Founder Gabe Stengel appeared on Scott Galloway\u2019s Prof G Media\u2019s podcast, hosted by Ed Elson, to discuss Rogo, the future of AI in financial services, and entrepreneurship. See an excerpt below, and listen to the full episode\"}),/*#__PURE__*/e(a,{href:\"https://podcasts.apple.com/us/podcast/the-prof-g-pod-with-scott-galloway/id1498802610?i=1000647814136\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"em\",{children:\" here\"})})}),/*#__PURE__*/e(\"em\",{children:\" (or watch it \"}),/*#__PURE__*/e(a,{href:\"https://www.youtube.com/watch?v=OPG2arMH7Qw\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"em\",{children:\"here\"})})}),/*#__PURE__*/e(\"em\",{children:\").\"})]}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"em\",{children:\"If you\u2019re interested in learning more about how Rogo\u2019s AI solutions could help your firm, we\u2019d \"}),/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/demo/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"em\",{children:\"love to chat\"})})}),/*#__PURE__*/e(\"em\",{children:\". We\u2019re also hiring \u2013 see our \"}),/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/careers/#positions\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"em\",{children:\"open roles\"})})}),/*#__PURE__*/e(\"em\",{children:\" and get in touch.\"})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Ed Elson, Prof G Media: I want to start with the question that I think most of Wall Street would want to ask you, which is, \u201CIs AI going to replace bankers?\u201D\"})}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Gabe Stengel, Rogo\"}),\": No, I think bankers would actually be happy if it could replace a lot of the PowerPoint and Excel work that they do, but the reality is that we\u2019re a long way away from full automation. We\u2019re a helpful tool. We make people smarter. We make gathering materials quicker. We make putting together PowerPoints and research memos a little bit more efficient. We\u2019re not replacing anyone.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Ed: Are you sure that a banker should believe you when you make that statement? Tell me more about why you\u2019re not replacing anyone.\"})}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Gabe\"}),\": We\u2019re replacing work, we\u2019re not replacing people. Even in recent history, five years ago, before COVID, you probably had investment banking analysts, after staying up all night creating a pitch deck, they would go print it out, bind the books, deliver the books to their managing director and partners\u2019 apartments. That would take a few hours. No one\u2019s doing that anymore because everything\u2019s virtual. It\u2019s not like these bankers are working less, right? They\u2019re just filling up their time doing smarter, more interesting things.\"]}),/*#__PURE__*/e(\"p\",{children:\"When I was a banker, I spent a lot of time doing very interesting, thoughtful work at Lazard, and that\u2019s why I loved it. And then there was occasionally work that was not so thoughtful and not so interesting, and we\u2019re helping get rid of that.\"}),/*#__PURE__*/n(\"p\",{children:[\"There\u2019s a lot of examples throughout history of automation creating jobs, right? If you look at the \",/*#__PURE__*/e(a,{href:\"https://www.nytimes.com/2023/04/07/opinion/ezra-klein-podcast-ama-april2023.html?\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!1,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"A.T.M. example that folks like Ezra Klein\"})}),\" bring up often of when A.T.M.s got invented \u2013 actually what happened was there were more bank tellers than ever over the coming three decades because banks became more efficient to operate commercial branches, and so they expanded. I think what you\u2019ll see in investment banking and in investing writ large is it\u2019s going to become more efficient to operate these businesses, and they\u2019ll want to expand.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Ed: Give us an example. You were a banker and you said that there are some services that you were doing that were meaningless.\"})}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Gabe\"}),\": Here\u2019s a great example. You cover a certain subset of companies. When they release earnings, you just want to write a quick update for everyone on your team saying, what did they hit? What did they miss? What are they saying about M&A? Are they interested in M&A? What are people in the space saying? What are the analyst reactions? That can take a few hours to write. That can get automated. And now what you can spend your time doing is being thoughtful about what does this earnings mean for us? Should we engage? Should we present new acquisition opportunities to them? Instead of spending a lot of time synthesizing publicly available information and putting it in a little email.\"]}),/*#__PURE__*/e(\"p\",{children:\"Another example is just benchmarking, right? Every growth equity and VC investor needs to know, \u201CWhat does great net revenue retention look like at Snowflake, at Procore, and all sorts of businesses?\u201D What they\u2019re doing right now is having an analyst benchmark that on a quarterly basis so that they can reference it in podcast and reference it in IC memos and so on. That shouldn\u2019t be done by hand anymore either.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Ed: What kind of work do you think bankers will be doing? If they\u2019re not doing all the things that you just described, what kinds of opportunities would you say this opens up?\\xa0\"})}),/*#__PURE__*/n(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Gabe\"}),\": Why do people use M&A bankers? And just to set the stage a little bit, what is an M&A banker, right? An M&A banker is not making investments for anyone. They\u2019re advising CEOs on when they want to sell their company or buy another company. They\u2019re offering real thoughtful advice, and that\u2019s the work they\u2019ll continue to do. And when you\u2019re offering really thoughtful advice, you have to have evidence to back it up, materials to back it up. Rogo helps make gathering that evidence a lot easier to prosecute more deals, advise more companies, offer smarter insights, and offer maybe more products, right? If you were just offering M&A advisory as a service before, maybe now that\u2019s easier for you to do with your team of 100. And you can also offer some consultation style work that McKinsey does, too, or some geopolitical advisory work as well. And the opportunity to expand your service and enrich it is now kind of endless.\"]})]});export const richText24=/*#__PURE__*/n(i.Fragment,{children:[/*#__PURE__*/n(\"p\",{children:[\"We are thrilled to announce our $7M Seed led by\\xa0\",/*#__PURE__*/e(a,{href:\"https://www.linkedin.com/company/alleycorp/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!0,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"AlleyCorp\"})}),\"\\xa0with participation from\\xa0\",/*#__PURE__*/e(a,{href:\"https://www.linkedin.com/company/company-ventures/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!0,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"Company Ventures\"})}),\",\\xa0\",/*#__PURE__*/e(a,{href:\"https://www.linkedin.com/company/boxgroup/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!0,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"BoxGroup\"})}),\", and\\xa0\",/*#__PURE__*/e(a,{href:\"https://www.linkedin.com/company/scop-venture-capital/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!0,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"ScOp Ventures\"})}),\".\"]}),/*#__PURE__*/e(\"p\",{children:\"Our mission is simple: help financial institutions deploy bespoke generative AI. At Rogo, we believe that to unlock true value out of AI, you need purpose-built tooling for your firm. That is why we partner and closely collaborate with our clients to address full workflows and real pain points.\"}),/*#__PURE__*/e(\"p\",{children:\"Generative AI is catalyzing a transformation in our daily lives \u2014 nowhere will this be more apparent than in financial services. Our team is comprised of ex-hedge fund analysts, ex-bankers, and ex-private equity investors, and we\u2019ve built Rogo to give others the AI powers we wish we had.\"}),/*#__PURE__*/n(\"p\",{children:[\"We\u2019d love to\\xa0\",/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/demo/\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!0,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"connect\"})}),\"\\xa0if you\u2019re interested in bringing AI to your firm. We\u2019re also\\xa0\",/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/careers/#positions\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!0,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"hiring\"})}),\"; if you think you could make a difference on our team, see our\\xa0\",/*#__PURE__*/e(a,{href:\"https://www.rogodata.com/careers/#positions\",motionChild:!0,nodeId:\"P9PxBnR55\",openInNewTab:!0,relValues:[],scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"open roles and get in touch\"})}),\".\"]})]});\nexport const __FramerMetadata__ = {\"exports\":{\"richText15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText24\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText23\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "originalSearchParams", "searchParams", "param", "value", "iframeProps", "u", "wrapperStyle", "l", "getThumbnailURL", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "page", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "richText", "u", "x", "p", "Link", "motion", "richText1", "richText2", "richText3", "richText4", "richText5", "richText6", "richText7", "richText8", "richText9", "richText10", "richText11", "richText12", "richText13", "ComponentPresetsConsumer", "n", "Youtube", "richText14", "richText15", "richText16", "richText17", "richText18", "richText19", "richText20", "richText21", "richText22", "richText23", "richText24", "__FramerMetadata__"]
}
