File size: 25,370 Bytes
e1a8462 e196f86 e1a8462 e196f86 e1a8462 e196f86 e1a8462 e196f86 e1a8462 664bb38 e1a8462 4823da9 e1a8462 e196f86 e1a8462 e196f86 e1a8462 e196f86 965dd2f e196f86 965dd2f e1a8462 e196f86 e1a8462 664bb38 e1a8462 664bb38 e1a8462 664bb38 e1a8462 4823da9 e1a8462 e196f86 e1a8462 e196f86 e1a8462 e196f86 e1a8462 e196f86 e1a8462 e196f86 e1a8462 664bb38 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 | """
Whiteboard Notes β Meeting Summary
A Gradio Space that converts whiteboard/handwritten meeting notes into
structured summaries with action items, owners, and due dates.
Designed for HuggingFace Spaces free CPU tier.
"""
import os
import re
import base64
import time
import hashlib
import logging
import glob
from datetime import datetime
from typing import Tuple, Dict, List, Optional
import gradio as gr
# Configure logging
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
logger = logging.getLogger(__name__)
# =============================================================================
# Configuration
# =============================================================================
HF_TOKEN = os.getenv("HF_TOKEN", None)
# Vision-Language Model - Qwen2.5-VL is excellent for OCR and handwriting
VISION_MODEL = "Qwen/Qwen2.5-VL-7B-Instruct"
# Rate limiting
MIN_REQUEST_INTERVAL = 2
session_timestamps: Dict[str, float] = {}
# Cache for processed results
results_cache: Dict[str, Dict] = {}
MAX_CACHE_SIZE = 20
# =============================================================================
# Image Utilities
# =============================================================================
def image_to_base64_url(image_path: str) -> str:
"""Convert image file to base64 data URL."""
try:
with open(image_path, "rb") as f:
image_data = f.read()
# Detect image type
if image_path.lower().endswith(".png"):
mime_type = "image/png"
elif image_path.lower().endswith(".gif"):
mime_type = "image/gif"
elif image_path.lower().endswith(".webp"):
mime_type = "image/webp"
else:
mime_type = "image/jpeg"
base64_data = base64.b64encode(image_data).decode("utf-8")
return f"data:{mime_type};base64,{base64_data}"
except Exception as e:
logger.error(f"Failed to encode image: {e}")
raise
def get_image_hash(image_path: str) -> str:
"""Generate hash of image for caching."""
try:
with open(image_path, "rb") as f:
return hashlib.md5(f.read()).hexdigest()[:12]
except:
return hashlib.md5(str(time.time()).encode()).hexdigest()[:12]
def find_example_images() -> List[str]:
"""Find all example images in the examples folder, supporting multiple formats."""
examples = []
if os.path.exists("examples"):
# Support multiple image formats
for ext in ["*.jpg", "*.jpeg", "*.png", "*.webp", "*.gif", "*.bmp"]:
examples.extend(glob.glob(f"examples/{ext}"))
examples.extend(glob.glob(f"examples/{ext.upper()}"))
# Sort by filename
examples.sort()
return examples
# =============================================================================
# HuggingFace API Client
# =============================================================================
class HFClient:
"""Client for HuggingFace Inference API."""
def __init__(self, token: Optional[str] = None):
self.token = token
self._client = None
@property
def client(self):
"""Lazy initialization of the client."""
if self._client is None:
try:
from huggingface_hub import InferenceClient
self._client = InferenceClient(token=self.token)
logger.info("HuggingFace InferenceClient initialized")
except ImportError:
logger.error("huggingface_hub not installed")
raise ImportError("Please install huggingface_hub")
return self._client
def extract_text_from_image(self, image_path: str) -> Tuple[str, bool]:
"""
Extract text from whiteboard/handwritten notes image using OCR.
Returns (extracted_text, success).
"""
try:
image_url = image_to_base64_url(image_path)
messages = [
{
"role": "user",
"content": [
{
"type": "image_url",
"image_url": {"url": image_url}
},
{
"type": "text",
"text": """You are an expert OCR system specialized in reading whiteboard notes and handwritten text.
Extract ALL text visible in this image. This appears to be meeting notes on a whiteboard or handwritten notes.
Instructions:
1. Read every piece of text you can see, including messy handwriting
2. Preserve the structure (bullet points, numbered lists, sections)
3. If text is unclear, make your best guess and mark it with [?]
4. Include any names, dates, numbers, or action items you see
5. Preserve any arrows, connections, or groupings in your description
Output the extracted text exactly as written, maintaining the original structure as much as possible."""
}
]
}
]
response = self.client.chat.completions.create(
model=VISION_MODEL,
messages=messages,
max_tokens=2000,
temperature=0.1 # Low temperature for accurate OCR
)
result = response.choices[0].message.content
logger.info(f"OCR extraction successful: {len(result)} chars")
return result, True
except Exception as e:
error_msg = str(e)
logger.error(f"OCR extraction failed: {error_msg}")
if "rate" in error_msg.lower() or "limit" in error_msg.lower():
return "Rate limited. Please wait a moment and try again.", False
elif "loading" in error_msg.lower():
return "Model is loading. Please try again in 30 seconds.", False
else:
return f"Text extraction failed: {error_msg[:150]}", False
def generate_meeting_summary(self, extracted_text: str, meeting_context: str) -> Tuple[str, bool]:
"""
Generate structured meeting summary from extracted text.
Returns (summary, success).
"""
try:
context_info = f"\nAdditional context: {meeting_context}" if meeting_context.strip() else ""
prompt = f"""You are an expert meeting notes organizer. Convert the following raw whiteboard/handwritten notes into a clean, professional meeting summary.
RAW EXTRACTED TEXT:
{extracted_text}
{context_info}
Create a structured summary with these sections. Use the EXACT headers shown:
## π Meeting Summary
[2-4 bullet points capturing the main topics discussed]
## β
Key Decisions
[List any decisions that were made. If none are clear, write "No explicit decisions captured"]
## π― Action Items
[Create a table with these columns: Action Item | Owner | Due Date | Priority
- Extract any tasks, to-dos, or follow-ups mentioned
- If owner is not specified, write "TBD"
- If due date is not specified, write "TBD"
- Estimate priority as High/Medium/Low based on context
- If no action items found, write "No action items identified"]
## β Items Needing Clarification
[List anything that was unclear or needs follow-up:
- Illegible text that couldn't be read
- Action items missing owners or dates
- Decisions that need confirmation
- If everything is clear, write "None"]
## π Raw Notes (for reference)
[Include a cleaned-up version of the original notes]
IMPORTANT FORMATTING RULES:
- Use bullet points (not numbered lists) for summary items
- Format the Action Items section as a proper markdown table
- Keep the summary concise and professional
- If information is missing, explicitly note it as TBD
- Do not invent information that isn't in the notes"""
messages = [
{
"role": "user",
"content": prompt
}
]
response = self.client.chat.completions.create(
model=VISION_MODEL,
messages=messages,
max_tokens=2500,
temperature=0.3
)
result = response.choices[0].message.content
logger.info(f"Summary generation successful: {len(result)} chars")
return result, True
except Exception as e:
error_msg = str(e)
logger.error(f"Summary generation failed: {error_msg}")
return f"Summary generation failed: {error_msg[:150]}", False
# Initialize client
hf_client = HFClient(token=HF_TOKEN)
# =============================================================================
# Word Document Generator
# =============================================================================
def create_word_document(summary_text: str, extracted_text: str) -> Optional[str]:
"""
Create a Word document from the meeting summary.
Returns the file path or None if creation fails.
"""
try:
from docx import Document
from docx.shared import Pt
from docx.enum.text import WD_ALIGN_PARAGRAPH
doc = Document()
# Set up styles
style = doc.styles['Normal']
style.font.name = 'Arial'
style.font.size = Pt(11)
# Title
title = doc.add_heading('Meeting Notes Summary', 0)
title.alignment = WD_ALIGN_PARAGRAPH.CENTER
# Date
date_para = doc.add_paragraph()
date_para.alignment = WD_ALIGN_PARAGRAPH.CENTER
date_run = date_para.add_run(f"Generated: {datetime.now().strftime('%B %d, %Y at %I:%M %p')}")
date_run.font.size = Pt(10)
date_run.font.italic = True
doc.add_paragraph() # Spacer
# Parse and add the summary content
lines = summary_text.split('\n')
table_started = False
table_rows = []
for line in lines:
line = line.strip()
if not line:
if table_started and table_rows:
# End table and add it
add_table_to_doc(doc, table_rows)
table_rows = []
table_started = False
continue
# Check for headers
if line.startswith('## '):
if table_started and table_rows:
add_table_to_doc(doc, table_rows)
table_rows = []
table_started = False
# Clean header text (remove emojis for Word)
header_text = re.sub(r'[^\w\s\-\(\)]', '', line[3:]).strip()
doc.add_heading(header_text, level=1)
continue
# Check for table header
if '|' in line and 'Action Item' in line:
table_started = True
# Parse header
headers = [h.strip() for h in line.split('|') if h.strip()]
table_rows.append(headers)
continue
# Skip table separator lines
if table_started and line.replace('|', '').replace('-', '').replace(':', '').strip() == '':
continue
# Table row
if table_started and '|' in line:
cells = [c.strip() for c in line.split('|') if c.strip()]
if cells:
table_rows.append(cells)
continue
# Bullet points
if line.startswith('- ') or line.startswith('* '):
doc.add_paragraph(line[2:], style='List Bullet')
continue
# Regular paragraph
if line and not line.startswith('#'):
doc.add_paragraph(line)
# Add any remaining table
if table_started and table_rows:
add_table_to_doc(doc, table_rows)
# Save document
timestamp = datetime.now().strftime('%Y%m%d_%H%M%S')
filepath = f"/tmp/meeting_notes_{timestamp}.docx"
doc.save(filepath)
logger.info(f"Word document created: {filepath}")
return filepath
except ImportError:
logger.warning("python-docx not installed, skipping Word document creation")
return None
except Exception as e:
logger.error(f"Failed to create Word document: {e}")
return None
def add_table_to_doc(doc, rows: List[List[str]]):
"""Add a table to the Word document."""
if not rows:
return
from docx.shared import Pt
from docx.enum.table import WD_TABLE_ALIGNMENT
num_cols = max(len(row) for row in rows)
table = doc.add_table(rows=len(rows), cols=num_cols)
table.style = 'Table Grid'
table.alignment = WD_TABLE_ALIGNMENT.CENTER
for i, row_data in enumerate(rows):
row = table.rows[i]
for j, cell_text in enumerate(row_data):
if j < num_cols:
cell = row.cells[j]
cell.text = cell_text
# Bold header row
if i == 0:
for paragraph in cell.paragraphs:
for run in paragraph.runs:
run.font.bold = True
run.font.size = Pt(10)
doc.add_paragraph() # Spacer after table
# =============================================================================
# Rate Limiting
# =============================================================================
def check_rate_limit(session_id: str) -> Tuple[bool, str]:
"""Check if request is within rate limits."""
now = time.time()
last = session_timestamps.get(session_id, 0)
if now - last < MIN_REQUEST_INTERVAL:
wait = MIN_REQUEST_INTERVAL - (now - last)
return False, f"Please wait {wait:.0f} seconds before trying again."
session_timestamps[session_id] = now
return True, ""
# =============================================================================
# Main Processing Pipeline
# =============================================================================
def process_whiteboard_images(
images: List[str],
meeting_context: str,
session_id: str
) -> Tuple[str, str, str, Optional[str]]:
"""
Main pipeline: Process whiteboard images β Extract text β Generate summary
Returns: (status, extracted_text, summary, docx_filepath)
"""
# Validate session
if not session_id:
session_id = "default"
# Rate limit check
rate_ok, rate_msg = check_rate_limit(session_id)
if not rate_ok:
return f"β³ {rate_msg}", "", "", None
# Validate input
if not images or len(images) == 0:
return "β Please upload at least one image of whiteboard notes.", "", "", None
# Filter out None values and get valid image paths
valid_images = [img for img in images if img is not None]
if not valid_images:
return "β No valid images found. Please upload whiteboard photos.", "", "", None
logger.info(f"Processing {len(valid_images)} image(s)")
# =========================================================================
# Step 1: Extract text from all images
# =========================================================================
all_extracted_text = []
for idx, image_path in enumerate(valid_images):
status_msg = f"π Extracting text from image {idx + 1} of {len(valid_images)}..."
logger.info(status_msg)
extracted, success = hf_client.extract_text_from_image(image_path)
if not success:
return f"β Failed to process image {idx + 1}: {extracted}", "", "", None
if len(valid_images) > 1:
all_extracted_text.append(f"=== Image {idx + 1} ===\n{extracted}")
else:
all_extracted_text.append(extracted)
combined_text = "\n\n".join(all_extracted_text)
if not combined_text.strip():
return "β Could not extract any text from the images. Please ensure the notes are visible.", "", "", None
# =========================================================================
# Step 2: Generate meeting summary
# =========================================================================
logger.info("Generating meeting summary...")
summary, success = hf_client.generate_meeting_summary(combined_text, meeting_context)
if not success:
return f"β Failed to generate summary: {summary}", combined_text, "", None
# =========================================================================
# Step 3: Create Word document
# =========================================================================
docx_path = create_word_document(summary, combined_text)
# =========================================================================
# Return results
# =========================================================================
status = f"β
Successfully processed {len(valid_images)} image(s)"
return status, combined_text, summary, docx_path
# =============================================================================
# Gradio Interface
# =============================================================================
EXAMPLE_CONTEXT = """Example contexts:
β’ "Weekly team standup - Engineering"
β’ "Product roadmap planning Q2"
β’ "Client meeting - Project Alpha kickoff"
β’ "Brainstorming session - New feature ideas"
"""
def create_interface():
"""Create and configure the Gradio interface."""
with gr.Blocks(
title="Whiteboard Notes β Meeting Summary"
) as app:
# Session state
session = gr.State(lambda: hashlib.md5(str(time.time()).encode()).hexdigest()[:8])
# Header
gr.Markdown("""
# π Whiteboard Notes β Meeting Summary
**Made by :- Yash Chowdhary**
**Transform messy whiteboard photos into clean, actionable meeting notes!**
Upload photos of your whiteboard or handwritten meeting notes. The AI will:
1. π Extract all text using advanced OCR
2. π Organize into a structured summary
3. β
Identify action items, owners, and due dates
4. π Generate a downloadable Word document
> Perfect for pasting into Slack, Notion, or sending via email.
""")
with gr.Row():
# Left Column - Input
with gr.Column(scale=1):
# Single image input - works with examples and shows thumbnails
image_input = gr.Image(
label="πΈ Upload Whiteboard Photo",
type="filepath",
height=250,
sources=["upload", "clipboard"]
)
# Optional: Multiple images upload
with gr.Accordion("π Upload Multiple Photos (Optional)", open=False):
multi_image_input = gr.File(
label="Select multiple whiteboard photos",
file_count="multiple",
file_types=["image"],
type="filepath"
)
gr.Markdown("*Upload multiple photos here if you have more than one whiteboard to process*")
# Meeting context
context_input = gr.Textbox(
label="π Meeting Context (Optional)",
placeholder="e.g., Weekly team standup, Project kickoff, Brainstorming session...",
lines=2,
max_lines=3
)
gr.Markdown(EXAMPLE_CONTEXT)
# Process button
process_btn = gr.Button(
"π Process Notes",
variant="primary",
size="lg"
)
# Examples Gallery - shows actual image thumbnails
gr.Markdown("### πΈ Try an Example")
# Find example images dynamically (supports any image format)
example_images = find_example_images()
if example_images:
gr.Examples(
examples=example_images,
inputs=image_input,
label="Click an image to try it",
examples_per_page=4
)
else:
gr.Markdown("*No example images found in examples/ folder*")
gr.Markdown("""
---
**π‘ Tips for Best Results:**
- Use good lighting to capture the whiteboard
- Ensure text is in focus and readable
- Include the full whiteboard in the frame
- For multiple photos, use the "Upload Multiple Photos" section
""")
# Right Column - Output
with gr.Column(scale=2):
# Status
status_output = gr.Textbox(
label="Status",
interactive=False,
max_lines=2
)
# Tabs for different outputs
with gr.Tabs():
with gr.TabItem("π Meeting Summary"):
summary_output = gr.Markdown(
label="Meeting Summary",
value="*Upload whiteboard photos to generate summary...*"
)
with gr.TabItem("π€ Extracted Text"):
extracted_output = gr.Textbox(
label="Raw Extracted Text",
lines=15,
interactive=False
)
with gr.TabItem("π₯ Download"):
gr.Markdown("### Download Your Meeting Notes")
docx_output = gr.File(
label="π Word Document (.docx)",
interactive=False
)
gr.Markdown("""
*The Word document contains the formatted meeting summary,
ready to share or archive.*
""")
# Copy-friendly output section
with gr.Accordion("π Copy-Paste Ready (for Slack/Notion)", open=False):
gr.Markdown("Select all text below (Ctrl+A) and copy (Ctrl+C) for Slack or Notion:")
copy_output = gr.Textbox(
label="Plain Text Summary",
lines=10,
interactive=False
)
# Footer
gr.Markdown("""
---
**How It Works:**
1. πΈ Upload one or more photos of whiteboard/handwritten notes
2. π€ AI extracts text using advanced vision models (handles messy handwriting!)
3. π Text is analyzed and organized into structured meeting notes
4. β
Action items are identified with owners and due dates
5. π Download as Word document or copy to clipboard
*Powered by HuggingFace Vision-Language Models and love from Yash Chowdhary*
""")
# Processing function that handles both single and multiple images
def on_process(single_image, multi_images, context, session_id):
# Combine images from both inputs
image_list = []
# Add single image if provided
if single_image is not None:
image_list.append(single_image)
# Add multiple images if provided
if multi_images is not None:
if isinstance(multi_images, list):
image_list.extend([img for img in multi_images if img is not None])
else:
image_list.append(multi_images)
# Process
status, extracted, summary, docx_path = process_whiteboard_images(
image_list, context, session_id
)
# Create plain text version for copy-paste
plain_summary = summary.replace('## ', '\n').replace('**', '').replace('*', '')
return status, extracted, summary, docx_path, plain_summary
# Connect the button
process_btn.click(
fn=on_process,
inputs=[image_input, multi_image_input, context_input, session],
outputs=[status_output, extracted_output, summary_output, docx_output, copy_output]
)
return app
# =============================================================================
# Application Entry Point
# =============================================================================
# Create the app
demo = create_interface()
# Configure queue
demo.queue(max_size=10, default_concurrency_limit=2)
# Launch
if __name__ == "__main__":
demo.launch(
server_name="0.0.0.0",
server_port=7860,
show_error=True
) |