|
1 | 1 | --- |
2 | 2 | company: Ansa |
3 | 3 | h1: "How Ansa Uses Reflex for AI-Powered Workflow Automation" |
| 4 | +card_header: "How Ansa saved 100 hours of manual work a month with Reflex" |
| 5 | +card_description: "See how Ansa automated their fintech workflows with Reflex, eliminating 100 hours of repetitive manual work per month and accelerating their operations." |
4 | 6 | description: "Why Ansa chose Reflex over no-code and low-code frameworks for their workflow automations. Full Python control for AI-powered business process automation." |
5 | 7 | domain: "https://www.ansa.co" |
6 | 8 | founded: "New York, 2021" |
@@ -42,15 +44,11 @@ meta: [ |
42 | 44 | ```python exec |
43 | 45 | import reflex as rx |
44 | 46 | from pcweb.constants import REFLEX_ASSETS_CDN |
45 | | -from reflex_image_zoom import image_zoom |
| 47 | +from pcweb.pages.customers.views.app_preview_card import app_preview_card |
46 | 48 | ``` |
47 | 49 |
|
48 | 50 | ```python eval |
49 | | -rx.vstack( |
50 | | - image_zoom(rx.image(src=f"{REFLEX_ASSETS_CDN}case_studies/ansa_app.webp", border_radius="10px", alt="Ansa App")), |
51 | | - rx.text("Ansa App built with Reflex"), |
52 | | - width="100%", |
53 | | -) |
| 51 | +app_preview_card(f"{REFLEX_ASSETS_CDN}case_studies/ansa_app.webp", text="Ansa App built with Reflex") |
54 | 52 | ``` |
55 | 53 |
|
56 | 54 | Meet [Ansa](https://www.ansa.co), a venture capital firm based in New York City that invests in companies from Series A to C. They have invested in companies like Defense Unicorns, Bland, Gradient, and Selector and prior to founding the firm, supported investments in many of the venture-capital industry’s largest outcomes including Crowdstrike, Coinbase, and SurveyMonkey to name a few. |
@@ -144,7 +142,8 @@ Finally, when their team has a short list of companies that fit within an invest |
144 | 142 | ```md quote |
145 | 143 | - name: Ryan |
146 | 144 | - role: Investor and Head of Data |
147 | | -Let’s say we have 30 companies that we want to email. How can you efficiently send a custom note to each of these companies and track it properly? We launch a script, that runs through a Reflex background event, that'll go through each company, check the CRM ownership, fill out relevant fields and find the best person to reach out to. A lot of times, especially with early stage companies, data is missing or partially complete. So this workflow will leverage LLMs throughout the process to handle fuzzy matching and make contextual decisions, as well as proactively summarize company content, news, and relevant Ansa content to help support the email writing. Before we would do this all manually, now with this new workflow in Reflex, we've taken what was once 30+ clicks across 5 different apps and made it 5x faster with 2 clicks across 2 apps. |
| 145 | +- variant: medium |
| 146 | +Let’s say we have 30 companies that we want to email. How can you efficiently send a custom note to each of these companies and track it properly? We launch a script, that runs through a Reflex background event, that’ll go through each company, check the CRM ownership, fill out relevant fields and find the best person to reach out to. A lot of times, especially with early stage companies, data is missing or partially complete. So this workflow will leverage LLMs throughout the process to handle fuzzy matching and make contextual decisions, as well as proactively summarize company content, news, and relevant Ansa content to help support the email writing. Before we would do this all manually, now with this new workflow in Reflex, we’ve taken what was once 30+ clicks across 5 different apps and made it 5x faster with 2 clicks across 2 apps. |
148 | 147 | ``` |
149 | 148 |
|
150 | 149 | All these different workflows are now built into a single Reflex app. It makes it extremely easy for anyone on the team to run any of these workflows and leverage LLM-powered automation with a few clicks. |
|
0 commit comments