From 6387753ee481e2019e112a35dfa2dec6e33ce295 Mon Sep 17 00:00:00 2001 From: itsamejms Date: Tue, 9 Jun 2026 11:00:54 +0100 Subject: [PATCH] adding some business tasks to look at including in the demo, and updating the slides --- .gitignore | 3 +- BUSINESS_TASKS.md | 64 +++++++++++++++++++ README.md | 2 +- local-ai-presentation/src/App.tsx | 2 +- .../src/components/layout/ControlBar.tsx | 4 +- .../src/components/slides/Slide1Title.tsx | 4 +- .../components/slides/Slide2CloudParadox.tsx | 8 +-- .../components/slides/Slide3LocalAIStack.tsx | 2 +- .../components/slides/Slide4Quantization.tsx | 4 +- .../src/components/slides/Slide5Pipelines.tsx | 2 +- .../slides/Slide6HardwareMatrix.tsx | 2 +- .../components/slides/Slide7BuyersGuide.tsx | 6 +- .../src/components/slides/Slide8ROI.tsx | 10 +-- 13 files changed, 89 insertions(+), 24 deletions(-) create mode 100644 BUSINESS_TASKS.md diff --git a/.gitignore b/.gitignore index 0780ba0..9f26d7e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *.mp3 *.bin .DS_Store -*.wav \ No newline at end of file +*.wav +business-transactions.csv \ No newline at end of file diff --git a/BUSINESS_TASKS.md b/BUSINESS_TASKS.md new file mode 100644 index 0000000..e10f2c1 --- /dev/null +++ b/BUSINESS_TASKS.md @@ -0,0 +1,64 @@ +### 1. High-Sensitivity Data Processing (Privacy Demo) + + Goal: Show that you can process "secret" business data without it ever leaving the machine. + + - Client Confidentiality: + "I am uploading a transcript of a private discovery call with a potential high-ticket client. Please + extract the key pain points, their current budget, and create a personalized proposal outline. + (Highlight: No data is sent to OpenAI/Google, so the client's privacy is 100% guaranteed)." + - Financial Analysis: + "Analyze the raw CSV `/Users/jamestwose/Coding/ledex-demo/business-transactions.csv` of my monthly business expenses for the last year. Identify the top 3 categories + where I'm overspending and suggest a lean budget to increase my profit margin by 15%. (Highlight: Your + financial records never touch a cloud server)." + + ### 2. High-Volume Content Engine (Cost Savings Demo) + + Goal: Demonstrate tasks that would be expensive or hit "rate limits" on paid subscriptions if done at + scale. + + - The Content Multiplier: + "Here is a long-form blog post I wrote. Transform this into: 1) A 5-tweet X thread, 2) A punchy + LinkedIn post for entrepreneurs, 3) A 15-second Instagram Reel script, and 4) A newsletter teaser. + Maintain a professional yet adventurous 'digital nomad' tone. (Highlight: Do this for 100 articles for + $0 extra cost)." + - SEO Keyword Expansion: + "Generate 50 variations of low-competition, long-tail keywords for a 'Luxury Villa Rental in Algarve' + business, categorized by user intent (informational, transactional, navigational). (Highlight: + High-volume brainstorming without subscription 'credit' limits)." + + ### 3. Workflow Automation & Structuring (Efficiency Demo) + + Goal: Show how Local AI handles "boring" administrative overhead instantly. + + - Meeting-to-Action Pipeline: + "Here are my messy notes from a brainstorming session. Turn these into a structured Project Brief with + a clear 'Definition of Done,' a list of action items assigned by role, and a suggested timeline for + the next 4 weeks. (Highlight: Rapidly converting chaos into a business plan offline)." + - Email Systematization: + "I receive a lot of these types of inquiries: [Paste 3 example emails]. Create 3 different response + templates: one for 'High Intent/Qualified', one for 'Low Budget/Not a fit', and one for 'Requesting + more info'. Make them sound human and welcoming. (Highlight: Building a local knowledge base of + business assets)." + + ### 4. "The Offline Edge" (Independence Demo) + + Goal: Specifically for Slide 9 (Live Offline Walkthrough). Do this while the Wi-Fi is physically off. + + - The "Crisis" Assistant: + "I have no internet right now and I'm about to enter a meeting. Help me prepare a 3-point rebuttal for + a client who thinks my pricing is too high compared to a cheap agency. Focus on 'Quality,' 'Security,' + and 'Long-term ROI'. (Highlight: AI as a reliable tool that works in a cafe with no Wi-Fi)." + + ### Summary Table for your Demo Presentation: + + ┌──────────────┬────────────────────────────┬─────────────────────────────────────────┐ + Demo Segment Business Task Core "Local AI" Win + ├──────────────┼────────────────────────────┼─────────────────────────────────────────┤ + Privacy Client Proposal/Finance Zero Data Leaks $\rightarrow$ Trust + ├──────────────┼────────────────────────────┼─────────────────────────────────────────┤ + Scale Content Repurposing Zero Subscriptions $\rightarrow$ Profit + ├──────────────┼────────────────────────────┼─────────────────────────────────────────┤ + Workflow Meeting $\to$ Action Items Zero Friction $\rightarrow$ Speed + ├──────────────┼────────────────────────────┼─────────────────────────────────────────┤ + Sovereignty Offline Strategy Zero Downtime $\rightarrow$ Reliability + └──────────────┴────────────────────────────┴─────────────────────────────────────────┘ \ No newline at end of file diff --git a/README.md b/README.md index f47132b..4426837 100644 --- a/README.md +++ b/README.md @@ -5,4 +5,4 @@ Tools used: ## Demos - Sentiment analysis of reviews + learning points -- Meeting recording + summarization + action points +- Meeting recording + summarization + action points [DONE] diff --git a/local-ai-presentation/src/App.tsx b/local-ai-presentation/src/App.tsx index f0eb445..bf50931 100644 --- a/local-ai-presentation/src/App.tsx +++ b/local-ai-presentation/src/App.tsx @@ -25,7 +25,7 @@ export default function App() { const [soundEnabled, setSoundEnabled] = useState(false); // Shared state for cross-slide communication - const [selectedGoal, setSelectedGoal] = useState('agents'); + const [selectedGoal, setSelectedGoal] = useState('writing'); const [procureBudget, setProcureBudget] = useState('budget'); const [toastMessage, setToastMessage] = useState(null); diff --git a/local-ai-presentation/src/components/layout/ControlBar.tsx b/local-ai-presentation/src/components/layout/ControlBar.tsx index 05eaca3..712d7eb 100644 --- a/local-ai-presentation/src/components/layout/ControlBar.tsx +++ b/local-ai-presentation/src/components/layout/ControlBar.tsx @@ -49,7 +49,7 @@ export default function ControlBar({
- + */}