Update README.md
Browse files
README.md
CHANGED
|
@@ -1,22 +1,36 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Meet2Action Agentic AI
|
| 3 |
+
emoji: 🤖
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: indigo
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: "4.44.1"
|
| 8 |
+
python_version: "3.10"
|
| 9 |
+
app_file: app.py
|
| 10 |
+
pinned: false
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
# Meet2Action — Multi-Agent Meeting Assistant (CrewAI + Gradio)
|
| 16 |
+
|
| 17 |
+
## What it does
|
| 18 |
+
Paste agenda + messy meeting notes → get:
|
| 19 |
+
- Clean minutes (summary, decisions, risks)
|
| 20 |
+
- Action items (owner, due date, priority)
|
| 21 |
+
- Email recap draft
|
| 22 |
+
Action items are stored in SQLite.
|
| 23 |
+
|
| 24 |
+
## Why it matters
|
| 25 |
+
Teams waste time rewriting notes and forgetting tasks. This app turns raw notes into accountable actions.
|
| 26 |
+
|
| 27 |
+
## Architecture
|
| 28 |
+
See `architecture/workflow.mmd` and `architecture/aisa_pack.md`.
|
| 29 |
+
|
| 30 |
+
## Setup (local)
|
| 31 |
+
```bash
|
| 32 |
+
python -m venv .venv
|
| 33 |
+
source .venv/bin/activate # Windows: .venv\Scripts\activate
|
| 34 |
+
pip install -r requirements.txt
|
| 35 |
+
cp .env.example .env
|
| 36 |
+
python app.py
|