Skip to content

Commit ea873de

Browse files
Tom GotsmanTom Gotsman
authored andcommitted
fix use case page
1 parent 61bd2a1 commit ea873de

File tree

1 file changed

+40
-69
lines changed

1 file changed

+40
-69
lines changed

pcweb/pages/use_cases/use_cases.md

Lines changed: 40 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,62 @@
1-
## Use Cases by Industry
1+
## Other Use Cases by Industry
22

33
Organizations across industries use **Reflex** to build internal tools, dashboards, and AI-driven applications—all in pure Python. From finance to healthcare, Reflex helps teams move faster by simplifying full-stack development.
44

5-
### 1. Financial Services
65

7-
```python exec
8-
import reflex as rx
9-
from reflex_image_zoom import image_zoom
10-
from pcweb.pages.use_cases.finance import finance_use_case_page
11-
```
6+
7+
### 1. Database Admin & CRUD
128

139
```python eval
1410
rx.el.div(
15-
image_zoom(rx.image(src="/case_studies/bayesline_app.webp", border_radius="10px", alt="Bayesline App")),
11+
image_zoom(rx.image(src="/case_studies/admin_app.webp", border_radius="10px", alt="Admin App")),
1612
class_name="py-4"
1713
)
1814
```
1915

20-
From buyside analytics desks to compliance back offices, finance teams choose **Reflex** because a single Python codebase can stream market data, crunch GPU-heavy models, and satisfy audit trails—without juggling separate front-end frameworks or ETL schedulers. With AG Grid built into the product, analysts iterate and hand a production-grade web app to traders or risk officers the same day.
16+
Database admins can spin up Python-native panels that let teams **read, write, and update** their data through polished tables, forms, and charts. With **Reflex**, full-featured database dashboards and CRUD apps come together in minutes—no separate front-end stack, no raw CLI sessions.
17+
18+
**Examples of CRUD-first apps you can stand up in Reflex:**
19+
20+
- **Role-Based Postgres Admin Panel** – browse, edit, or bulk-import customer rows while keeping finance-only fields hidden behind granular permissions.
21+
- **Inventory Catalog Manager** – one screen to adjust stock levels, pricing rules, and supplier SKUs that sync instantly to every sales channel.
22+
- **Content & Data-Exchange Portal** – upload new CAD drawings, attach metadata, and version files for manufacturing projects, all stored in a single database.
23+
- **Team Management Console** – create, disable, or time-limit user accounts and access tokens for internal SaaS tooling, complete with audit logs.
24+
- **Supply-Chain Config Editor** – operations staff tweak warehouse routing rules and robotics parameters through validated forms that write directly to production tables.
25+
26+
<br>
27+
<br>
28+
29+
### 2. Data Science & Analytics
30+
31+
Data scientists and analysts can convert their notebooks into production-grade apps that expose models, metrics, and datasets through live tables, charts, and custom Python components.
32+
33+
**Examples of analytics apps you can stand up in Reflex:**
34+
35+
- **ML-Service Admin Console** – register experiment runs, visualize attention maps or confusion matrices, and promote the best model to production with one click.
36+
- **Behavioural Cohort Explorer** – drag-and-drop filters to segment users by events, demographics, and funnels, then export cohorts or schedule recurring reports.
37+
- **Fleet Metrics Self-Serve Dashboard** – slice and visualize vehicle telemetry (mileage, battery health, utilisation) so operations teams answer questions in seconds—no SQL required.
38+
- **Delivery Operations Dashboard** – monitors driver efficiency and delivery performance in real time, highlighting bottlenecks and automatically flagging late orders.
39+
- **Dataset Versioning & Quality Monitor** – upload new snapshots, run validation tests, and graph distribution shifts or missing-value spikes over time.
2140

41+
<br>
42+
<br>
2243

23-
**Examples of apps you can build in Reflex:**
44+
### 3. AI & Document Workflows
2445

25-
- **Factor-Risk Analytics Dashboard** – GPU-powered analytics dashboard that delivers custom equity-factor risk models in minutes instead of weeks
26-
- **End-of-Day Trade Blotter** – automatically pulls executions from every venue, flags outliers, and emails a compliance-ready PDF to traders each night.
27-
- **Asset-Allocation Simulator** – visualizes portfolio mixes and projected returns over time; users drag weight sliders and instantly see downside and drawdown scenarios.
28-
- **Treasury & Liquidity Monitor** – streams balances, pending settlements, and cash forecasts into a single real-time dashboard with threshold alerts.
29-
- **Loan-Underwriting Workflow** – scores new credit applications against live KYC/AML data, routes edge cases for manual review, and retrains the model on a weekly schedule.
46+
When files, forms, recordings, and chat threads produce more raw information than teams can manually review, **Reflex** converts that unstructured content into structured, actionable insight. OCR, speech-to-text, and large-language-model pipelines plug directly into Python UIs, then push validated results to dashboards, search endpoints, or downstream APIs—no additional middleware or bespoke glue code.
3047

48+
**Examples of AI-driven document apps you can stand up in Reflex:**
3149

32-
Learn more about the [Finance Use Case]({finance_use_case_page.path}).
50+
- **Training-Session Hub** – records live video classes, transcribes speech in real time, and lets coaches search by keyword to jump to any moment.
51+
- **Smart Document Viewer** – highlights key fields (prices, SKUs, dates) as users scroll and writes the extracted values to a structured database with one click.
52+
- **Image-to-GPS Calibration Tool** – accepts bulk image uploads, matches them to GNSS logs, and visualizes camera extrinsics for quick QA.
53+
- **Enterprise Knowledge Chat** – an LLM interface that answers staff questions using contracts, wikis, and ticket history—kept secure behind SSO.
54+
- **Support & Deal-Flow Console** – shows live agent SLAs while a background workflow ingests tens of thousands of new company profiles each month; vector search and natural-language filters surface the best leads in seconds.
3355

3456
<br>
3557
<br>
3658

37-
### 2. E-commerce & Advertising
59+
### 4. E-commerce & Advertising
3860

3961
```python eval
4062
rx.el.div(
@@ -56,7 +78,7 @@ Modern merchants and growth marketers juggle stock feeds, ad platforms, and cust
5678
<br>
5779
<br>
5880

59-
### 3. Engineering & DevOps
81+
### 5. Engineering & DevOps
6082

6183
```python eval
6284
rx.el.div(
@@ -75,54 +97,3 @@ Site-reliability, platform, and security teams use **Reflex** to surface real-
7597
- **Supply-Chain Automation Viewer** – visualizes robot and conveyor status in distribution centres; integrates with third-party control APIs for fast triage.
7698
- **Security-Ops Command Center** – unifies BigQuery logs, ticket data, cloud storage, Firestore, Salesforce CRM records, and PagerDuty alerts so analysts can hunt threats and track user activity in a single interface.
7799

78-
<br>
79-
<br>
80-
81-
### 4. Database Admin & CRUD
82-
83-
```python eval
84-
rx.el.div(
85-
image_zoom(rx.image(src="/case_studies/admin_app.webp", border_radius="10px", alt="Admin App")),
86-
class_name="py-4"
87-
)
88-
```
89-
90-
Database admins can spin up Python-native panels that let teams **read, write, and update** their data through polished tables, forms, and charts. With **Reflex**, full-featured database dashboards and CRUD apps come together in minutes—no separate front-end stack, no raw CLI sessions.
91-
92-
**Examples of CRUD-first apps you can stand up in Reflex:**
93-
94-
- **Role-Based Postgres Admin Panel** – browse, edit, or bulk-import customer rows while keeping finance-only fields hidden behind granular permissions.
95-
- **Inventory Catalog Manager** – one screen to adjust stock levels, pricing rules, and supplier SKUs that sync instantly to every sales channel.
96-
- **Content & Data-Exchange Portal** – upload new CAD drawings, attach metadata, and version files for manufacturing projects, all stored in a single database.
97-
- **Team Management Console** – create, disable, or time-limit user accounts and access tokens for internal SaaS tooling, complete with audit logs.
98-
- **Supply-Chain Config Editor** – operations staff tweak warehouse routing rules and robotics parameters through validated forms that write directly to production tables.
99-
100-
<br>
101-
<br>
102-
103-
### 5. Data Science & Analytics
104-
105-
Data scientists and analysts can convert their notebooks into production-grade apps that expose models, metrics, and datasets through live tables, charts, and custom Python components.
106-
107-
**Examples of analytics apps you can stand up in Reflex:**
108-
109-
- **ML-Service Admin Console** – register experiment runs, visualize attention maps or confusion matrices, and promote the best model to production with one click.
110-
- **Behavioural Cohort Explorer** – drag-and-drop filters to segment users by events, demographics, and funnels, then export cohorts or schedule recurring reports.
111-
- **Fleet Metrics Self-Serve Dashboard** – slice and visualize vehicle telemetry (mileage, battery health, utilisation) so operations teams answer questions in seconds—no SQL required.
112-
- **Delivery Operations Dashboard** – monitors driver efficiency and delivery performance in real time, highlighting bottlenecks and automatically flagging late orders.
113-
- **Dataset Versioning & Quality Monitor** – upload new snapshots, run validation tests, and graph distribution shifts or missing-value spikes over time.
114-
115-
<br>
116-
<br>
117-
118-
### 6. AI & Document Workflows
119-
120-
When files, forms, recordings, and chat threads produce more raw information than teams can manually review, **Reflex** converts that unstructured content into structured, actionable insight. OCR, speech-to-text, and large-language-model pipelines plug directly into Python UIs, then push validated results to dashboards, search endpoints, or downstream APIs—no additional middleware or bespoke glue code.
121-
122-
**Examples of AI-driven document apps you can stand up in Reflex:**
123-
124-
- **Training-Session Hub** – records live video classes, transcribes speech in real time, and lets coaches search by keyword to jump to any moment.
125-
- **Smart Document Viewer** – highlights key fields (prices, SKUs, dates) as users scroll and writes the extracted values to a structured database with one click.
126-
- **Image-to-GPS Calibration Tool** – accepts bulk image uploads, matches them to GNSS logs, and visualizes camera extrinsics for quick QA.
127-
- **Enterprise Knowledge Chat** – an LLM interface that answers staff questions using contracts, wikis, and ticket history—kept secure behind SSO.
128-
- **Support & Deal-Flow Console** – shows live agent SLAs while a background workflow ingests tens of thousands of new company profiles each month; vector search and natural-language filters surface the best leads in seconds.

0 commit comments

Comments
 (0)