Skip to content
No results
Starphix
  • Catalog
  • Roadmap Builder
  • StarphiX HQ
    • About
    • Haive
    • PaiX
    • Policy
    • Terms
    • Jobs
Shopping cart$0.00 0
Learn AI
Starphix
  • Catalog
  • Roadmap Builder
  • StarphiX HQ
    • About
    • Haive
    • PaiX
    • Policy
    • Terms
    • Jobs
Shopping cart$0.00 0
Learn AI
Starphix

Welcome | Guided Learning Paths

  • Welcome to the StarphiX Knowledge Center!
  • 🧭 Curated Learning Paths
    • The Learning Path for the Student & Creative 🎨
    • The Learning Path for the Developer & Tech Enthusiast πŸ’»
    • The Learning Path for the Business Owner & Professional πŸ’Ό

The Story of AI: Past, Present, & Future

  • Pillar I: πŸ“–
  • πŸ“œ A Brief History of AI
    • The Transformer Revolution: The Architecture That Changed Everything 🧠
    • The Rise of Machine Learning: A New Paradigm πŸ“ˆ
    • The AI Winters: When Promises Outpaced Reality ❄️
    • The Dartmouth Workshop: The Birth of a Field πŸ’‘
    • The Dream of an Artificial Mind: AI’s Philosophical Origins πŸ›οΈ
  • 🌍 The AI Landscape Today
    • An Overview of AI’s Impact on Modern Work & Creativity πŸ’Ό
    • Generative AI vs. Traditional AI: What’s the Difference? ↔️
    • Why Now? Understanding the Current AI Boom πŸ’₯
  • πŸ”­ The Future of AI: The Next Frontier
    • An Introduction to AI Ethics & Responsible Development βš–οΈ
    • An Introduction to AI Ethics & Responsible Development βš–οΈ
    • AI for Good: The Role of AI in Science, Medicine, and Climate Change ❀️
    • The Quest for AGI: What is Artificial General Intelligence? πŸ€–

The Modern AI Toolkit

  • βš™οΈ The Technology Stack Explained
    • The Hardware Layer: Why GPUs are the Engine of AI βš™οΈ
    • The Model Layer: Understanding LLMs, Diffusion Models, and Agents 🧠
    • The Platform Layer: How APIs and No-Code Tools Connect Everything πŸ”—
  • 🏒 The Ecosystem: Major Players & Platforms
    • Major Players & Platforms 🏒
  • πŸ› οΈ Practical Use Cases by Profession
    • For the Small Business Owner: 5 High-Impact Automations to Implement Today πŸ§‘β€πŸ’Ό
    • For the Consultant or Coach: Streamlining Your Client Workflow with AI πŸ§‘β€πŸ«
    • For the Creative Professional: Using AI as a Brainstorming Partner, Not a Replacement 🎨
    • For the Student & Researcher: How to Supercharge Your Learning with AI πŸ§‘β€πŸŽ“

The Sovereign AI: A Guide to Local Systems

  • 🧠 The Philosophy of AI Sovereignty
    • Why Local AI is the Future of Work and Creativity πŸš€
    • Data Privacy vs. Data Sovereignty: Taking Control of Your Digital Self πŸ›‘οΈ
    • The Open-Source AI Movement: A Force for Democratization 🌐
  • 🏠 Your First Local AI Lab
    • Understanding the Core Components of a Local AI Setup πŸ–₯️
    • Choosing Your Hardware: A Buyer’s Guide for Every Budget πŸ’°
    • The Software Stack: A Step-by-Step Installation Guide πŸ’Ώ
    • Downloading Your First Open-Source Model 🧠
    • A Guide to Model Sizes: What Do 7B, 13B, and 70B Really Mean? πŸ“
  • πŸ—οΈ Building with Local AI: Practical Workflows
    • Your First Local Automation: Connecting to n8n πŸ€–
    • Creating a Private Chat Interface for Your Local Models πŸ’¬
    • The Power of APIs: Connecting Local AI to Other Tools πŸ”—
    • Practical Project: Building a Private ‘Meeting Matrix Summarizer’ πŸ“„
    • Practical Project: Creating a ‘Knowledge-Core Agent’ with Your Own Documents 🧠
  • πŸš€ Advanced Concepts & The PaiX Vision
    • An Introduction to Fine-Tuning Your Own Models βš™οΈ
    • Optimizing Performance: Quantization and Model Pruning Explained ⚑️
    • The StarphiX Vision: From DIY Homelab to a Professional PaiX Local Workstation ✨

The Library: Resources & Reference

  • The Archive of Seminal Papers πŸ“œ
  • Glossary of AI Terms πŸ“–
  • The Directory of Tools & Frameworks 🧰
View Categories
  • Home
  • Docs
  • The Sovereign AI: A Guide to Local Systems
  • πŸ—οΈ Building with Local AI: Practical Workflows
  • Practical Project: Building a Private ‘Meeting Matrix Summarizer’ πŸ“„

Practical Project: Building a Private ‘Meeting Matrix Summarizer’ πŸ“„

3 min read

Introduction: From Simple Tags to Structured Insights πŸ€” #

In our last project, we built a simple automation to “tag” text. It was a fantastic first step. Now, it’s time to level up. We’re going to move beyond simple tags to extracting structured, actionable intelligence from one of the most common forms of unstructured business data: a meeting transcript. In this project, you will build a powerful workflow that automatically transforms a messy transcript into a clean, organized “Meeting Matrix.”

(Image Placeholder: A visual showing a block of raw, unstructured text on the left, an arrow pointing to an AI icon in the middle, and a clean, structured table on the right with headings like “Topic,” “Decision,” and “Action Item.”)

The Goal: The “Meeting Matrix” ✨ #

Our goal is to create an automation that takes a raw meeting transcript and, using our local AI, outputs a highly structured summary that we’re calling a “Meeting Matrix.” This isn’t just a summary; it’s a dashboard for your meeting, containing:

  • Key Topics: A one-paragraph summary of the main points discussed.
  • Decisions Made: A clear, bulleted list of any firm decisions reached during the call.
  • Action Items: A table with three columns: | Task | Assigned To | Due Date |.
  • Sentiment Analysis: A single word describing the overall tone of the meeting (e.g., Positive, Collaborative, Contentious, Urgent).

The Tools You’ll Need 🧰 #

  • A working Local AI setup with Ollama running and a capable model downloaded (e.g., llama3).
  • n8n (or a similar automation tool) installed and running.
  • A sample meeting transcript saved as a plain text (.txt) file.

The Step-by-Step Project Guide #

This guide builds directly on the skills from the previous n8n article.

[Video Walkthrough Placeholder] 🎬 A full video walkthrough showing how to build this entire Meeting Matrix workflow in n8n will be embedded here.

Step 1: The Trigger – “New Transcript Added” #

In n8n, start your workflow with a trigger that watches a specific folder in your cloud storage (like Google Drive or Dropbox). Configure it to run whenever a new .txt file is added to a folder named “Meeting Transcripts.”

Step 2: Read the Transcript File #

Add a node after your trigger that reads the text content from the file that triggered the workflow. This will give you the raw transcript data to work with.

Step 3: Crafting the “Master Prompt” #

This is the heart of the project. We will give our local AI a detailed “master prompt” that instructs it to act as an expert analyst and format its output exactly how we want.

In your HTTP Request node (calling your local AI), you will use a prompt like this in the JSON body:

You are an expert business analyst. Your task is to analyze the following meeting transcript and structure your output as a “Meeting Matrix.” Use markdown for formatting. Do not include any commentary outside of the matrix structure.

Here is the transcript:
[Insert the text from the transcript file here]

—

**Meeting Matrix**

**Key Topics:**
[Provide a one-paragraph summary of the main points discussed.]

**Decisions Made:**
– [List the first decision here.]
– [List the second decision here.]

**Action Items:**
| Task | Assigned To | Due Date |
| — | — | — |
| [Task description] | [Name] | [YYYY-MM-DD] |

**Sentiment:** [Provide a single word: Positive, Neutral, Contentious, etc.]

Step 4: Send the Request to Your Local AI #

Just like in our last project, you will configure your HTTP Request node to POST to your local Ollama API (http://localhost:11434/api/chat). Place the master prompt and the transcript data into the JSON body. When you run the node, your local AI will process the entire transcript and generate the structured Meeting Matrix as a single block of text.

Step 5: Send the Matrix to Its Destination #

The final step is to take the AI’s clean, formatted output and send it somewhere useful. You can add a node to:

  • Create a new page in Notion or Confluence.
  • Send an email to all meeting attendees.
  • Create a new task in a project management tool like Asana or Trello.

Building a Truly Private Business Tool #

You have now built a powerful business intelligence tool that can analyze your most confidential conversationsβ€”client calls, internal strategy sessions, board meetingsβ€”with absolute, unbreakable privacy. This ability to turn your private, unstructured data into a strategic asset without ever sending it to a third-party service is the core, real-world value of a sovereign AI strategy. It’s a demonstration of how the StarphiX philosophy empowers you to build professional-grade tools that you own and control completely.

Related Reading πŸ“š #

  • What’s Next?: Practical Project: Creating a ‘Knowledge-Core Agent’ with Your Own Documents 🧠
  • Go Back: Your First Local Automation: Connecting to n8n πŸ€–
  • Learn About Your Models: A Guide to Model Sizes: What Do 7B, 13B, and 70B Really Mean? πŸ“
Table of Contents
  • Introduction: From Simple Tags to Structured Insights πŸ€”
  • The Goal: The "Meeting Matrix" ✨
  • The Tools You'll Need 🧰
  • The Step-by-Step Project Guide
    • Step 1: The Trigger - "New Transcript Added"
    • Step 2: Read the Transcript File
    • Step 3: Crafting the "Master Prompt"
    • Step 4: Send the Request to Your Local AI
    • Step 5: Send the Matrix to Its Destination
  • Building a Truly Private Business Tool
  • Related Reading πŸ“š
  • About
  • Policy
  • Terms
  • Jobs
  • StarphiX HQ

Copyright Β© 2025 | PaiX Built