Enterprise OCR Platform with Flow Diagram Support and Customizable Prompts - Network & Process Intelligence
Project description
NetIntel-OCR (Network Intelligence OCR) v0.1.16.11
๐ Enterprise OCR Platform with Dedicated Flow Model Support and Auto Debug Logging!
NetIntel-OCR is an enterprise-grade platform for extracting intelligence from technical documents. It automatically detects and processes network diagrams, flow diagrams, tables, and text - converting them into structured, searchable formats. With v0.1.16, it now supports process flows, workflows, and decision trees, plus full prompt customization for industry-specific needs.
๐ Version 0.1.16 adds Flow Diagram support and Prompt Management! Extract process flows, workflows, and decision trees. Customize all prompts for your specific industry or use case.
๐ฏ Key Capabilities
Network Intelligence Extraction
- Automatic Network Detection: AI-powered identification of network diagrams in documents
- Component Recognition: Identifies routers, switches, firewalls, servers, and other network elements
- Connection Mapping: Traces and documents network paths and relationships
- Security Architecture Analysis: Extracts security zones, DMZs, and trust boundaries
โจ Features
๐ New in v0.1.16.11 - Remote Server Support
- Dynamic OLLAMA_HOST handling for remote deployments
- Improved API endpoint resolution for better connectivity
๐ New in v0.1.16 - Flow Diagrams and Prompt Customization
- ๐ Flow Diagram Support: Full extraction and analysis of process flows, workflows, and decision trees
- ๐ Unified Diagram Detection: Automatically identifies network, flow, or hybrid diagrams
- ๐ฏ Process Intelligence: Identifies bottlenecks, optimization opportunities, and critical paths
- ๐ Customizable Prompts: Export, modify, and import all prompts for industry-specific needs
- ๐จ Prompt Templates: Pre-built templates for security, compliance, cloud, and process optimization
- ๐ง Runtime Overrides: Change prompts on-the-fly without editing files
- ๐ Flow Mermaid Generation: Automatic conversion to flowchart TD/LR format
- ๐ง Context-Aware Analysis: Reads 2 paragraphs before/after diagrams for accurate interpretation
- ๐ Type-Specific Processing: Different analysis for network vs flow diagrams
- ๐ Hybrid Diagram Support: Handles diagrams with both network and flow elements
Previous v0.1.15 - Milvus Vector Database Integration
- ๐ 20-60x Faster Search: Sub-100ms query response with Milvus distributed architecture
- ๐พ 70% Memory Reduction: Process 10x more documents with the same hardware
- ๐ฏ Enterprise Scale: From standalone to distributed deployment without code changes
- ๐ค Qwen3-8B Embeddings: Advanced 4096-dimensional embeddings via Ollama
- ๐ IVF_SQ8 Index: CPU-optimized scalar quantization for standard hardware
- ๐ฆ One-Command Setup: Automatic configuration with
netintel-ocr --init - ๐ณ Docker Compose Ready: Pre-configured stack with etcd, MinIO, and Milvus
- โธ๏ธ Kubernetes Support: Production-ready Helm charts for enterprise deployment
- ๐ง OLLAMA_HOST Detection: Automatic discovery of Ollama embedding service
Previous v0.1.14 - High-Performance Deduplication with C++ Core
- โก 50-100x Performance Boost: C++ core with AVX2 SIMD and OpenMP parallelization
- ๐ฏ Three-Level Deduplication: MD5 (exact), SimHash (fuzzy), CDC (content-level)
- ๐ฆ Zero-Compilation Install: Pre-compiled binary wheels for Linux/macOS/Windows
- ๐ Near-Duplicate Detection: SimHash with configurable Hamming distance threshold
- ๐ Content-Defined Chunking: Remove repetitive blocks with 30-50% storage reduction
- ๐จ Version Information:
netintel-ocr --versionshows C++ core status - ๐ง Automatic Fallback: Python implementation when C++ unavailable
Previous v0.1.13 - Service-Oriented Architecture
- ๐ REST API Server: FastAPI-based server with full OpenAPI/Swagger documentation
- ๐ค MCP Server: Model Context Protocol server for LLM integration
- ๐ฆ Multi-Scale Deployments: From single container to enterprise Kubernetes
- ๐ Flexible Worker Architecture: Embedded workers or Kubernetes Jobs
Previous v0.1.12 - Advanced Database Management
- ๐๏ธ Centralized Database Management: Unified LanceDB with deduplication and MD5 checksums
- ๐ Advanced Query Engine: Vector similarity search with multi-field filtering and reranking
- ๐ Multiple Output Formats: JSON, Markdown, and CSV output for queries
- ๐ Batch Processing Pipeline: Parallel PDF processing with progress tracking
Core Features
- ๐ Vector Database Integration (v0.1.7): Automatic generation of LanceDB-ready chunks and vector-optimized content
- ๐ฏ Intelligent Hybrid Processing: Automatically detects and processes network diagrams as Mermaid.js, tables as JSON, text as markdown
- ๐ PDF to Text Conversion: Convert PDFs to markdown files locally, no token costs
- ๐ค Multi-Model Support (v0.1.4): Use different models for text and network processing for optimal performance
- ๐ Table Extraction (v0.1.6-v0.1.10): Automatic detection and extraction of tables with smart ToC exclusion
- ๐ผ๏ธ Visual Understanding: Turn images and diagrams into detailed text descriptions
- ๐ Automatic Network Detection: No flags needed - network diagrams are detected and converted automatically
- ๐จ Icons by Default: Font Awesome icons automatically added to network diagrams for better visualization
- โฑ๏ธ Smart Timeouts: Operations timeout gracefully with fallback to simpler methods
- ๐ Diagram Types Supported: Network topology, architecture diagrams, data flow diagrams, security diagrams
- ๐ MD5-Based Organization (v0.1.4): Each document stored in unique folder using MD5 checksum
- ๐ Document Index (v0.1.4): Automatic index.md tracking all processed documents
- ๐ Enhanced Metrics (v0.1.4): Comprehensive footer with processing details, errors, and configuration
- โก Optimized Processing: Processes up to 100 pages per run with detailed progress tracking
- ๐ง Flexible Output: Unified markdown format with seamlessly embedded Mermaid diagrams and tables
- ๐ Checkpoint/Resume (v0.1.5): Resume interrupted processing from exact stopping point
- ๐ Vector Search Ready (v0.1.7): Pre-chunked content with minimal metadata for optimal vector search performance
- ๐ Vector Regeneration (v0.1.10): Regenerate vector files from existing markdown without reprocessing PDFs
๐ผ Use Cases
Network Documentation
- Convert legacy network diagrams to modern formats
- Extract network topology from vendor documentation
- Audit and inventory network architectures
Security Analysis
- Map security architecture from compliance documents
- Extract firewall rules and network segmentation
- Document data flow and trust boundaries
Infrastructure Planning
- Analyze existing network designs
- Extract capacity and redundancy information
- Document interconnections and dependencies
๐ฆ Requirements
- Python 3.10+
- Ollama installed and running locally or on a remote server
Installing Ollama and the Default Model
- Install Ollama
- Pull the default model:
ollama run nanonets-ocr-s:latest
Using a Remote Ollama Server
By default, netintel-ocr connects to Ollama running on localhost. To use a remote Ollama server, set the OLLAMA_HOST environment variable:
# Connect to a remote Ollama server
export OLLAMA_HOST="http://192.168.1.100:11434"
netintel-ocr document.pdf
# Or run with the environment variable inline
OLLAMA_HOST="http://remote-server:11434" netintel-ocr document.pdf
Installation
From PyPI
Install the published version using pip:
pip install netintel-ocr
The package now uses Ollama for embeddings (default: qwen3-embedding:8b with 4096 dimensions), providing superior accuracy with Milvus integration.
or uv:
uv tool install netintel-ocr
๐ Quick Start - Choose Your Deployment Scale (NEW v0.1.15!)
Development Scale (1-50 users, up to 1M documents)
# Initialize development deployment (default)
netintel-ocr --init
# Automatically detects OLLAMA_HOST
# Generates Docker Compose with Milvus Standalone
# Start the stack
cd ~/.netintel-ocr
docker-compose up -d
# Milvus: http://localhost:19530
# API: http://localhost:8000
# MCP: http://localhost:8001
Production Scale (100+ users, 100M+ documents)
# Initialize production deployment
netintel-ocr --init --scale production
# Deploy with Kubernetes
helm install netintel-ocr ./helm \
--namespace netintel-ocr \
--create-namespace
# Or use Docker with full monitoring
docker-compose -f docker/docker-compose.large.yml up -d
# Grafana: http://localhost:3000
Usage
๐ Server Modes (v0.1.13) - API & MCP Services
Start API Server
# Start REST API server for document processing
netintel-ocr --api
# Access Swagger UI: http://localhost:8000/docs
# With embedded workers (for small deployments)
netintel-ocr --api --embedded-workers --max-workers 2
Start MCP Server
# Start Model Context Protocol server for LLM integration
netintel-ocr --mcp
# Connect your LLM to http://localhost:8001
All-in-One Mode
# Run everything in a single process (personal use)
netintel-ocr --all-in-one --local-storage --sqlite-queue
# API: http://localhost:8000
# MCP: http://localhost:8001
Traditional CLI Usage (Document Processing)
By default, netintel-ocr automatically:
- Detects and converts network diagrams to Mermaid.js
- Extracts tables to structured JSON
- Generates vector database files (LanceDB-ready chunks)
# Automatic hybrid mode with vector generation
netintel-ocr path/to/your/file.pdf
# This creates:
# - Human-friendly markdown files
# - document-vector.md (filtered for embeddings)
# - chunks.jsonl (ready for LanceDB ingestion)
# - Complete metadata and schema files
Text-Only Mode
For faster processing when you know the document contains only text:
netintel-ocr document.pdf --text-only
๐ v0.1.15 Commands - Milvus Integration & Vector Search
# Initialize with Milvus (auto-detects OLLAMA_HOST)
netintel-ocr --init
# Check version and capabilities
netintel-ocr --version
netintel-ocr --version-json # JSON output with Milvus status
# Process with Milvus vector storage (20-60x faster search)
netintel-ocr document.pdf --vector-db milvus
# Vector similarity search in Milvus
netintel-ocr --search "network topology" \
--collection netintel_vectors \
--limit 10
# Process with full deduplication (enhanced with Milvus)
netintel-ocr document.pdf --dedup-mode full
# Find near-duplicates using Milvus binary vectors
netintel-ocr --find-duplicates document.pdf \
--hamming-threshold 5 \
--use-milvus
# Show Milvus collection statistics
netintel-ocr --milvus-stats
# Configure advanced processing
netintel-ocr document.pdf \
--embedding-model qwen3-embedding:8b \
--index-type IVF_SQ8 \
--dedup-mode full
v0.1.12 Commands - Database Management
# Query centralized database with advanced filtering
netintel-ocr --query "network security" \
--centralized-db ./centralized.lancedb \
--filters '{"source_type": "network_diagram"}' \
--output-format json \
--limit 10
# Merge documents to centralized database
netintel-ocr --merge-to-centralized \
--output ./output \
--centralized-db ./unified.lancedb \
--dedup-strategy md5
# Batch process multiple PDFs with parallel processing
netintel-ocr --batch-ingest ./pdf_directory \
--output ./batch_output \
--parallel-workers 4 \
--auto-merge
# Database management commands
netintel-ocr --db-stats ./centralized.lancedb
netintel-ocr --db-optimize ./centralized.lancedb --vacuum
netintel-ocr --db-export ./centralized.lancedb --format json
Cloud Workflow with S3/MinIO:
# Configure S3/MinIO storage
export S3_ENDPOINT=https://s3.amazonaws.com
export S3_BUCKET=netintel-documents
export AWS_ACCESS_KEY_ID=your-key
export AWS_SECRET_ACCESS_KEY=your-secret
# Process with cloud storage
netintel-ocr document.pdf --s3-sync --s3-bucket netintel-documents
# Batch process from cloud storage
netintel-ocr --batch-ingest s3://netintel-documents/pdfs/ \
--output s3://netintel-documents/output/ \
--parallel-workers 8
Multi-Model Processing (NEW v0.1.4!)
Use different Ollama models optimized for specific tasks:
# Use fast OCR model for text, powerful model for diagrams
netintel-ocr document.pdf --model nanonets-ocr-s --network-model qwen2.5vl
# Fast processing with lightweight models
netintel-ocr document.pdf --model moondream --network-model bakllava
# Heavy processing for complex network diagrams
netintel-ocr document.pdf --network-model cogvlm --timeout 120
Multi-Model Benefits:
- 30-50% faster text extraction with OCR-optimized models
- Better diagram understanding with vision-language models
- Resource efficiency by using appropriate model sizes
- Flexibility to experiment with different combinations
Recommended Model Combinations:
| Purpose | Text Model | Network Model | Speed |
|---|---|---|---|
| Balanced (Default) | nanonets-ocr-s | qwen2.5vl | Medium |
| Fast Processing | moondream | bakllava | Fast |
| Maximum Accuracy | qwen2.5vl | cogvlm | Slow |
| Resource Limited | moondream | llava-phi3 | Fast |
Table Extraction (NEW v0.1.6!)
NetIntel-OCR now automatically detects and extracts tables from PDFs:
# Tables are extracted by default in hybrid mode
netintel-ocr document.pdf
# Use library-first extraction for faster processing
netintel-ocr document.pdf --table-method pdfplumber
# Use LLM for complex tables with merged cells
netintel-ocr document.pdf --table-method llm
# Save tables as separate JSON files
netintel-ocr document.pdf --save-table-json
# Disable table extraction for faster processing
netintel-ocr document.pdf --no-tables
Table Extraction Features:
- Automatic Detection: Tables identified alongside network diagrams
- Multiple Methods: Library-first (pdfplumber), LLM-enhanced, or hybrid
- Complex Table Support: Handles merged cells, multi-row fields, nested headers
- Structured Output: Tables converted to JSON with validation
- Markdown Integration: Tables embedded in markdown with both rendered and JSON views
Vector Database Integration (NEW v0.1.7!)
NetIntel-OCR now automatically generates vector database files optimized for RAG applications:
# Vector generation is ON by default - creates LanceDB-ready chunks
netintel-ocr document.pdf
# Disable vector generation (v0.1.6 behavior)
netintel-ocr document.pdf --no-vector
# Customize chunking strategy
netintel-ocr document.pdf --chunk-size 512 --chunk-overlap 50
# Use semantic chunking (default) vs fixed-size
netintel-ocr document.pdf --chunk-strategy semantic
Vector Features:
- Automatic Generation: Creates
document-vector.mdandchunks.jsonlby default - Content Filtering: Removes processing artifacts, keeps only source content
- Minimal Metadata: Only source filename, page numbers, and indexed date
- LanceDB Optimized: Pre-chunked JSONL ready for direct ingestion
- Smart Chunking: Semantic boundaries respect document structure
Using with LanceDB:
import lancedb
import json
# Load chunks generated by NetIntel-OCR
with open("output/<md5>/lancedb/chunks.jsonl") as f:
chunks = [json.loads(line) for line in f]
# Create LanceDB table - ready to use!
db = lancedb.connect("./my_lancedb")
table = db.create_table("documents", chunks)
# Search your documents
results = table.search("network configuration").limit(5).to_list()
Performance Optimization
For faster processing of network diagrams, use the --fast-extraction flag:
# Fast extraction mode - reduces extraction time by 50-70%
netintel-ocr document.pdf --fast-extraction
# Combine with multi-model and timeout for best performance
netintel-ocr document.pdf --model nanonets-ocr-s --network-model bakllava --fast-extraction --timeout 30
Fast extraction benefits:
- Detection: ~15 seconds (vs 30-60s standard)
- Extraction: ~20 seconds (vs 30-60s standard)
- Uses simplified prompts for quicker LLM responses
- Automatic fallback if fast extraction fails
Command Line Options
Basic Options
--output,-o: Base output directory (default: "output", documents stored inoutput/<md5_checksum>/)--model,-m: Ollama model for text extraction (default: "nanonets-ocr-s:latest")--network-model: Separate model for network diagram processing (NEW v0.1.4)--flow-model: Dedicated model for flow diagram processing (NEW v0.1.16.6, defaults to --network-model)--keep-images,-k: Keep the intermediate image files (default: False)--width,-w: Width to resize images to, 0 to skip resizing (default: 0)--start,-s: Start page number (default: 0, processes from beginning)--end,-e: End page number (default: 0, processes to end)--resume: Resume processing from checkpoint if available (NEW v0.1.5)
Processing Mode Options
--text-only,-t: Skip network diagram detection for faster text-only processing--network-only: Process only network diagrams, skip regular text pages
Network Diagram Options (applies to default mode)
--confidence,-c: Minimum confidence threshold for network diagram detection (0.0-1.0, default: 0.7)--no-icons: Disable Font Awesome icons in Mermaid diagrams (icons are enabled by default)--diagram-only: Only extract network diagrams without page text (by default, both are extracted)--timeout: Timeout in seconds for each LLM operation (default: 60s, increase for complex diagrams)
Vector Database Options (NEW v0.1.7)
--no-vector: Disable vector generation (default: enabled)--vector-format: Target vector DB format (default: lancedb, options: pinecone, weaviate, qdrant, chroma)--chunk-size: Chunk size in tokens (default: 1000)--chunk-overlap: Overlap between chunks (default: 100)--chunk-strategy: Chunking strategy (default: semantic, options: fixed, sentence)--embedding-metadata: Include extended metadata (reduces content space)
Examples
Basic Usage (with automatic network detection)
# DEFAULT: Automatic network diagram detection (with icons)
netintel-ocr document.pdf
# Process with custom settings
netintel-ocr document.pdf --confidence 0.8
# Increase timeout for complex diagrams
netintel-ocr document.pdf --timeout 120
# Text-only mode (faster, no detection)
netintel-ocr document.pdf --text-only
# Process specific pages
netintel-ocr document.pdf --start 1 --end 5
# Use a different Ollama model
netintel-ocr document.pdf --model qwen2.5vl:latest
Specialized Processing
# Process ONLY network diagrams (skip text pages)
netintel-ocr network-architecture.pdf --network-only
# Higher confidence threshold (stricter detection)
netintel-ocr document.pdf --confidence 0.9
# Disable icons if not needed
netintel-ocr document.pdf --no-icons
# Extract only diagrams without text (faster)
netintel-ocr document.pdf --diagram-only
# Faster text-only processing
netintel-ocr text-document.pdf --text-only
Process large documents in sections (max 100 pages per run):
# Process first 100 pages
netintel-ocr large-document.pdf --start 1 --end 100
# Process next section
netintel-ocr large-document.pdf --start 101 --end 200
# Process specific chapter (e.g., pages 50-100)
netintel-ocr large-document.pdf --start 50 --end 100
Checkpoint/Resume Capability (NEW v0.1.5)
The tool now supports automatic checkpoint saving and resume functionality for long documents:
How It Works
- Automatic Saving: Processing state is saved after each page
- Checkpoint Location: Stored in
output/<md5>/.checkpoint/ - Resume on Interruption: Use
--resumeto continue from where you left off - Page-Level Tracking: Each page is tracked individually
- Smart Skip: Already processed pages are skipped when resuming
Usage Examples
# Start processing a large document
netintel-ocr large-document.pdf
# If interrupted (Ctrl+C, power failure, etc.), resume processing
netintel-ocr large-document.pdf --resume
# Resume with different settings (completed pages are kept)
netintel-ocr large-document.pdf --resume --timeout 120 --network-model qwen2.5vl
Resume Information
When resuming, you'll see a summary like:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ RESUME CHECKPOINT FOUND โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฃ
โ Previous Processing: โ
โ โข Pages completed: 45/100 โ
โ โข Network diagrams found: 5 โ
โ โข Regular pages: 40 โ
โ โข Failed pages: 0 โ
โ โ
โ Resume Information: โ
โ โข Will skip 45 already processed pages โ
โ โข Will process 55 remaining pages โ
โ โข Starting from page 46 โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Benefits
- No Lost Work: Never lose progress on long documents
- Resource Efficient: Don't reprocess completed pages
Vector Regeneration (v0.1.10)
Regenerate Vector Files Without Reprocessing
Use --vector-regenerate to regenerate vector database files from existing markdown output:
# First time processing
netintel-ocr document.pdf
# Regenerate vectors with different chunk settings
netintel-ocr document.pdf --vector-regenerate --chunk-size 500 --chunk-overlap 100
# Change vector database format
netintel-ocr document.pdf --vector-regenerate --vector-format pinecone
# Use different chunking strategy
netintel-ocr document.pdf --vector-regenerate --chunk-strategy sentence
When to Use Vector Regeneration
- Optimize chunk size: Adjust for better embedding performance
- Change vector format: Switch between LanceDB, Pinecone, Weaviate, etc.
- Update metadata: Add or remove extended metadata
- Fix errors: Regenerate after fixing vector generation issues
- Experiment: Try different strategies without re-OCR
Benefits
- Flexible: Change settings when resuming
- Automatic: No manual intervention needed
Processing Guidelines
Document Size Recommendations
| Document Size | Processing Strategy | Example |
|---|---|---|
| 1-50 pages | Single run | netintel-ocr doc.pdf |
| 51-100 pages | Single run or split | netintel-ocr doc.pdf |
| 101-300 pages | Process in 100-page sections | See examples below |
| 300+ pages | Process key sections only | Use specific page ranges |
Processing Large Documents
For a 250-page document:
# Section 1: Pages 1-100
netintel-ocr document.pdf --start 1 --end 100 -o output_section1
# Section 2: Pages 101-200
netintel-ocr document.pdf --start 101 --end 200 -o output_section2
# Section 3: Pages 201-250
netintel-ocr document.pdf --start 201 --end 250 -o output_section3
Network Diagram Detection (Now Default!)
NEW: Network diagram detection is now enabled by default! No flags needed.
netintel-ocr automatically (in order):
- Transcribes text content FIRST (guaranteed capture)
- Detects network diagrams in PDF pages
- Identifies components (routers, switches, firewalls, servers, databases, etc.)
- Extracts connections and relationships
- Converts to Mermaid.js format
- Combines BOTH the diagram AND the page's text content
- Embeds everything in unified markdown output
Supported Network Components
- ๐ Routers and Switches
- ๐ก๏ธ Firewalls
- ๐ฅ๏ธ Servers and Workstations
- ๐พ Databases
- โ๏ธ Load Balancers
- โ๏ธ Cloud Services
- ๐ก Wireless Access Points
Output Format
Network diagrams are saved as markdown with embedded Mermaid code:
# Page 5 - Network Diagram
**Type**: topology
**Detection Confidence**: 0.95
**Components**: 8 detected
**Connections**: 12 detected
## Diagram
```mermaid
graph TB
Router([Main Router])
Switch[Core Switch]
FW{{Firewall}}
Server1[(Web Server)]
Router --> FW
FW --> Switch
Switch --> Server1
Page Text Content
This section describes the SD-WAN architecture with multiple branch offices connecting to headquarters through various transport methods including MPLS, broadband, and LTE connections. The solution provides path selection, application-aware routing, and centralized management...
## Output Structure (Enhanced v0.1.4)
All output is organized using MD5 checksums for unique document identification:
output/ # Base directory (configurable with --output)
โโโ index.md # Master index tracking all processed documents
โโโ 6c928950e6b73fffe316e0ad6bba3a67/ # MD5 checksum as folder name
โ โโโ markdown/ # All transcribed content
โ โ โโโ page_001.md # Individual page (text or diagram)
โ โ โโโ page_002.md
โ โ โโโ document.md # Complete merged document with footer metrics
โ โโโ images/ # Original page images (if --keep-images)
โ โโโ summary.md # Processing summary and statistics
โโโ 0611ca05dab284e943e3b00d3993d424/ # Another document's folder
โโโ ...
Benefits:
- Same document won't be processed twice (deduplication)
- Easy to find previous processing results
- index.md provides overview of all processed documents
### Index File (output/index.md)
Automatically tracks all processed documents:
```markdown
| Filename | Timestamp | MD5 Checksum | Folder | Processing Time |
|----------|-----------|--------------|--------|----------------|
| network.pdf | 2025-08-20 14:30:15 | `6c9289...` | [๐ 6c9289...](./6c9289.../) | 2m 30s |
| manual.pdf | 2025-08-20 14:35:22 | `0611ca...` | [๐ 0611ca...](./0611ca.../) | 1m 45s |
Enhanced Footer Metrics (NEW v0.1.4)
Every merged document includes comprehensive processing metrics:
- Document Info: Source file, size, MD5 checksum, pages processed
- Processing Details: Date/time, models used, processing time, mode
- Quality Report: Errors, warnings, success metrics
- Configuration: Settings used during processing
Processing Modes
Default: Hybrid Mode (Text-First)
- Text-First Approach: ALWAYS transcribes text before attempting diagram detection
- Guaranteed Content: Text is captured even if diagram processing fails
- Automatic Detection: Every page is analyzed for network diagrams
- Dual Content Extraction: Pages with diagrams include BOTH Mermaid diagram AND text content
- Intelligent Processing: Network diagrams โ Mermaid (with icons), Text โ Markdown
- Progress Tracking: Detailed step-by-step progress messages
- Smart Timeouts: Operations timeout after 60s with automatic fallback
- Processing Time: 30-60 seconds per page
- Best For: Most documents (mixed content)
Text-Only Mode (--text-only)
- No Detection: Skip diagram detection for speed
- Processing Time: 15-30 seconds per page
- Best For: Documents with only text
Network-Only Mode (--network-only)
- Diagram Focus: Process only network diagrams
- Processing Time: 30-60 seconds per diagram
- Best For: Network architecture documents
Performance & Troubleshooting
If Processing is Slow or Stuck
The tool now includes detailed progress messages showing what's happening and which models are being used:
Page 3: Processing...
Transcribing page text (nanonets-ocr-s)... Done (12.3s) <-- Text captured first!
Checking for network diagram (qwen2.5vl)... Done (2.1s)
Network diagram detected (confidence: 0.90)
Type: topology
Extracting components (qwen2.5vl)... Done (5.1s)
Generating Mermaid diagram (qwen2.5vl)... Done (8.2s)
Validating Mermaid syntax... Valid (0.1s)
Writing to file... Done (0.1s)
Total processing time: 27.9s
Important: Text is ALWAYS transcribed first, so even if diagram processing times out or fails, you'll still have the page content.
If an operation takes too long:
- Default timeout: 60 seconds per operation
- Adjust timeout: Use
--timeout 120for complex diagrams - Automatic fallback: If LLM times out, falls back to simpler methods
Common Issues and Fixes
Mermaid Syntax Errors (Robust Auto-Fix)
The tool uses a comprehensive validator to automatically fix Mermaid syntax issues:
Phase 1 - Basic Cleanup:
- C-style comments (
//) โ Removed or converted to Mermaid comments (%%) - Curly braces in graph declarations โ Removed
- Invalid syntax elements โ Cleaned
Phase 2 - Node ID Fixing:
- Spaces in node IDs โ Converted to underscores (e.g.,
Data CenterโData_Center) - Special characters โ Replaced with safe alternatives
- Duplicate node IDs โ Automatically numbered (e.g.,
Server,Server2,Server3)
Phase 3 - Connection Fixing:
- Updates all connections to use fixed node IDs
- Preserves connection types and labels
- Maintains directional flow
Phase 4 - Style Application:
- Fixes class applications to use corrected node IDs
- Preserves styling and visual attributes
Examples of Auto-Fixes:
subgraph_DMZโsubgraph DMZData Center (HQ)โData_Center_HQ(as node ID)- Parentheses in labels โ Automatically quoted
- Multiple
Secure SD-WANnodes โSecure_SD_WAN,Secure_SD_WAN2, etc.
Centralized Database Management (NEW v0.1.12!)
NetIntel-OCR now supports unified database management with advanced query capabilities:
# Create unified database from per-document databases
netintel-ocr --merge-to-centralized --output ./documents --centralized-db ./unified.lancedb
# Query with advanced filtering and ranking
netintel-ocr --query "firewall configuration" \
--centralized-db ./unified.lancedb \
--filters '{"document_type": "network_diagram", "confidence": {"$gte": 0.8}}' \
--rerank-strategy semantic \
--output-format json \
--limit 20
# Get database statistics and health
netintel-ocr --db-stats ./unified.lancedb
netintel-ocr --db-optimize ./unified.lancedb --vacuum --reindex
Key Features:
- Deduplication: Automatic MD5-based duplicate detection
- Multi-field Filtering: Query by source, type, confidence, date ranges
- Reranking: Semantic, hybrid, and temporal reranking strategies
- Export Formats: JSON, Markdown, CSV with customizable fields
- Validation: Automatic schema validation and integrity checks
- Statistics: Comprehensive database metrics and health monitoring
Enhanced Batch Processing (NEW v0.1.12!)
Process multiple PDFs efficiently with parallel processing and automatic merging:
# Batch process directory with parallel workers
netintel-ocr --batch-ingest ./pdf_directory \
--output ./batch_output \
--parallel-workers 6 \
--checkpoint-interval 5 \
--auto-merge \
--s3-sync
# Resume interrupted batch processing
netintel-ocr --batch-ingest ./pdf_directory \
--output ./batch_output \
--resume-batch \
--skip-existing
Performance Benefits:
- Parallel Processing: Up to 8x faster with multiple workers
- Progress Tracking: Real-time progress with ETA and throughput
- Checkpoint Resume: Resume from interruption point
- Memory Management: Intelligent worker allocation based on system resources
- Auto-merge: Automatic centralized database updates
S3/MinIO Cloud Storage (NEW v0.1.12!)
Full cloud storage integration for distributed deployments:
# Configure cloud storage
export S3_ENDPOINT=https://minio.company.com
export S3_BUCKET=netintel-docs
export AWS_ACCESS_KEY_ID=admin
export AWS_SECRET_ACCESS_KEY=password123
# Process with cloud sync
netintel-ocr document.pdf --s3-sync --s3-backup
# Batch process from cloud
netintel-ocr --batch-ingest s3://netintel-docs/input/ \
--output s3://netintel-docs/output/ \
--centralized-db s3://netintel-docs/unified.lancedb
Cloud Features:
- Bi-directional Sync: Upload/download with versioning
- Backup/Restore: Automatic backup with retention policies
- Distributed Access: Multiple workers can access shared storage
- Credentials Management: Support for AWS IAM, MinIO admin, environment variables
Advanced Embedding Management (NEW v0.1.12!)
Enhanced embedding generation with multiple providers and caching:
# Configure multiple embedding providers
netintel-ocr document.pdf \
--embedding-provider openai \
--embedding-model text-embedding-3-large \
--embedding-cache-ttl 7200 \
--batch-size 50
# Use local Ollama embeddings
netintel-ocr document.pdf \
--embedding-provider ollama \
--embedding-model mxbai-embed-large \
--embedding-cache ./embeddings_cache
Embedding Features:
- Multiple Providers: OpenAI, Ollama, HuggingFace support
- Caching with TTL: Intelligent caching to avoid recomputation
- Batch Processing: Efficient batch embedding generation
- Model Management: Automatic model configuration and validation
- Cost Optimization: Cache hits reduce API costs by up to 90%
Recent Improvements
Version 0.1.12 (Latest - 2025-08-21)
- โ Centralized Database Management: Unified LanceDB with MD5 deduplication
- โ Advanced Query Engine: Vector search with filtering, reranking, and multiple output formats
- โ Batch Processing Pipeline: Parallel PDF processing with progress tracking and checkpoints
- โ S3/MinIO Storage Backend: Cloud storage integration with bi-directional sync
- โ Enhanced CLI Commands: --query, --merge-to-centralized, --batch-ingest, --db-stats, --db-optimize
- โ Embedding Management: Multiple provider support with caching and TTL
- โ Database Optimization: Validation, statistics, export, and backup capabilities
Version 0.1.11 (2025-08-21)
- โ Docker Support: Complete Docker containerization with MinIO integration
- โ Kubernetes Ready: Full Helm chart for production deployments
- โ
Project Initialization:
--initcommand creates complete containerized environment - โ Configuration Management: YAML-based configuration with environment variable overrides
- โ Query Interface Foundation: Query vector databases (enhanced in v0.1.12)
- โ Centralized DB Foundation: Merge per-document databases (enhanced in v0.1.12)
Version 0.1.10 (2025-08-20)
- โ Checkpoint/Resume: Automatic saving and resume capability for long documents
- โ Page-Level Tracking: Individual page checkpoint tracking
- โ Resume Summary: Clear display of resume status and remaining work
- โ Atomic Saves: Checkpoint integrity with atomic file operations
- โ Automatic Cleanup: Checkpoints removed after successful completion
Version 0.1.4 (2025-08-20)
- โ Multi-Model Support: Use different models for text and network processing
- โ MD5-Based Output: Unique folders per document using MD5 checksums
- โ Document Index: Automatic index.md tracking all processed documents
- โ Enhanced Footer: Comprehensive metrics in merged documents
- โ
Simplified Defaults: Output to
output/instead of timestamped folders - โ Model Progress Display: Shows which model is being used for each operation
- โ Deduplication: Same document uses same output folder
Version 0.1.3
- โ Hybrid Mode by Default: Automatic network diagram detection
- โ Text-First Processing: Guarantees content capture before diagram extraction
- โ Fast Extraction Mode: 50-70% faster processing option
- โ Enhanced Error Recovery: Graceful fallbacks and timeout management
Version 0.1.0
- โ Initial pypi.org Release
- โ Fixed Mermaid syntax issues: Automatically handles parentheses in node labels
- โ Improved component detection: Fixed issue with multiple types being listed
- โ Enhanced error handling: Better fallback for malformed LLM responses
- โ Automatic syntax correction: C-style comments and invalid syntax auto-fixed
- โ Better type selection: Ensures components have single, specific types
Limitations
- Maximum 100 pages per processing run: This limit ensures optimal processing time and prevents memory issues. For larger documents, use the
--startand--endflags to process specific sections. - Network Detection Accuracy: Detection confidence varies based on diagram complexity and clarity. Adjust the
--confidencethreshold as needed. - Model Requirements: Network detection requires vision-capable models (e.g., nanonets-ocr-s, qwen2.5vl, llava)
- Timeout Behavior: Operations that exceed the timeout will fall back to simpler processing methods
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file netintel_ocr-0.1.16.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: netintel_ocr-0.1.16.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 565.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21ae7993ee20d1a1fa1cf563d7ad41e555cbdfec27fa2fee7d94fff829b12328
|
|
| MD5 |
882dbde05901adeaf3be5858f0e9fe4a
|
|
| BLAKE2b-256 |
e3802fce2095ae65b9365cdc262aa28d9553fe9e9cf1ca4fa6510fe180591d05
|
File details
Details for the file netintel_ocr-0.1.16.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: netintel_ocr-0.1.16.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 565.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2142cf8cb8d4765526098c48b659e6ae8e1dd8652cabb615bb7d58e4fe9531b7
|
|
| MD5 |
38575c3a6f49963d8a34fe30c380709d
|
|
| BLAKE2b-256 |
894bd5b5b91228e0fffd14fdd5ca5dfbe18cb5f2ac3b5ff058166a89b8095372
|