Introduction
Every household and small office accumulates a growing mountain of paperwork: receipts, contracts, medical records, school reports, and the occasional handwritten note. Traditional cloud‑based scanning services promise convenience, but they also require you to upload sensitive documents to servers you don’t control. With Octaven’s on‑device AI hardware, you can keep that information under your roof while still enjoying powerful optical character recognition (OCR), instant search, and automated workflows.
In this guide we’ll walk through a practical, step‑by‑step setup that works on any Octaven model—Mini, Studio, or Pro. You’ll learn how to:
- Capture paper documents using a standard scanner or smartphone camera.
- Run a local OCR model on Octaven to convert images to searchable text.
- Organize files with smart tags generated by on‑device agents.
- Build a private search index that respects your data sovereignty.
- Automate routine actions (e.g., expense‑report filing, warranty‑expiry reminders) with Octaven’s touch console and mobile app.
No subscription, no internet‑required inference, and no data leaving the room. Let’s get started.
1. Preparing Your Octaven Device
Choose the Right Model for Your Workload
| Model | Neural Engine | Unified Memory | Storage | Ideal Use | |-------|---------------|----------------|---------|-----------| | Mini | 16 TOPS | 32 GB | 1 TB NVMe | Light‑weight OCR, occasional batch scans | | Studio | 38 TOPS | 64 GB | 2 TB NVMe | Medium‑size families or small offices, multi‑agent pipelines | | Pro | 76 TOPS (combined) | 128 GB | 4 TB NVMe + Thunderbolt 5 | Heavy‑duty batch processing, team‑wide document repositories |
All three models ship with the same touch console, Octaven mobile app, and local agent orchestration tools, so the workflow described below is identical across the lineup. Choose the device that matches the volume of documents you expect to process.
Set Up the Local Environment
- Power on the device and connect it to your home or office network via Wi‑Fi 7 (or use Ethernet through Thunderbolt 5 on Pro).
- Install the Octaven Agent Suite from the pre‑loaded app store. This suite includes:
- OCR Agent – a lightweight vision model optimized for 16‑38 TOPS.
- Tagger Agent – a text‑classification model that creates smart labels.
- Search Agent – a local vector‑search engine that indexes documents.
- Open the Octaven mobile app on your phone or tablet. Pair it with the device by scanning the QR code shown on the touch console. The app will act as a remote control and a secure file‑transfer portal.
Tip: All data is stored on the device’s encrypted NVMe drive. The Mini’s 1 TB is ample for several thousand pages; the Studio and Pro models give you plenty of headroom for larger archives.
2. Capturing Documents
Using a Traditional Scanner
- Connect your USB scanner to the Octaven device (Studio and Pro have native USB‑C ports; Mini can use a USB‑C‑to‑USB‑A adapter).
- Launch the Scanner Agent from the touch console. Choose a resolution of 300 dpi for optimal OCR accuracy without excessive file size.
- Press Scan. The agent saves each page as a lossless PNG in the
Incoming/Scansfolder.
Using a Smartphone Camera
- Open the Octaven Scan feature in the mobile app.
- Align the document within the guide overlay; the app automatically corrects perspective and lighting.
- Tap Upload – the image is transferred over the local Wi‑Fi 7 network and stored in
Incoming/Scans.
Both methods feed the same pipeline, so you can mix hardware as convenient.
3. Running On‑Device OCR
Why Local OCR Matters
Traditional cloud OCR services send your images to remote servers, exposing sensitive data to potential interception. Octaven’s OCR Agent runs entirely on‑device, leveraging the 16‑38 TOPS neural engine to process a typical page in under 2 seconds on Mini and 0.8 seconds on Pro. The result is a plain‑text file stored alongside the original image.
Executing the OCR Pipeline
- Navigate to the Agent Orchestrator on the touch console.
- Create a new workflow called "Doc‑OCR":
- Trigger: New file in
Incoming/Scans. - Action: Run OCR Agent → output to
Processed/Text.
- Trigger: New file in
- Activate the workflow. As soon as a scan lands in the folder, the OCR Agent reads the image, extracts characters, and writes a
.txtfile with the same base name.
Example:
receipt_2026_08_01.png→receipt_2026_08_01.txt
You can monitor progress in real time on the console or via the mobile app’s Workflow Dashboard.
4. Enriching Documents with Smart Tags
The Role of the Tagger Agent
Once you have searchable text, the next step is to add context. The Tagger Agent uses a locally‑hosted classification model to detect categories such as "Invoice," "Medical," "Warranty," "Personal" and extracts key fields (date, amount, vendor). This information becomes metadata that powers downstream automation.
Adding Tags Automatically
- Extend the "Doc‑OCR" workflow:
- After OCR, invoke Tagger Agent on the newly created
.txtfile. - Store the resulting JSON metadata in
Processed/Metadata.
- After OCR, invoke Tagger Agent on the newly created
- Sample metadata output:
{ "category": "Invoice", "date": "2026-08-01", "vendor": "Acme Supplies", "total": "$124.50" } - The Tagger Agent also writes human‑readable tags to the file’s extended attributes, which the Search Agent can read directly.
5. Building a Private Search Index
Vector Search on the Edge
Octaven’s Search Agent creates a compact vector representation of each document’s text and metadata. Because the index lives on the device’s encrypted storage, you retain full control over who can query it.
Index Creation Steps
- From the Agent Orchestrator, add a "Build Index" task that runs nightly:
- Scan
Processed/Textfor new files. - Generate embeddings using the built‑in Embedding Agent (leveraging the same neural engine).
- Store vectors in
Index/DocVectors.
- Scan
- The index size is roughly 5 KB per page, so a 1 TB Mini can hold millions of pages with room to spare.
Performing a Search
- Via Touch Console: Open the Search UI, type a query like "2024 warranty expiration" and hit Enter. Results appear instantly, ranked by relevance.
- Via Mobile App: Use the Voice Search button; the app streams your voice to the local Speech‑to‑Text agent, then queries the index.
All queries are processed locally; no data ever leaves the Octaven device.
6. Automating Everyday Tasks
Example 1: Expense‑Report Generation
- Trigger: New document tagged as "Invoice".
- Action: Extract
date,vendor,totalfrom metadata. - Output: Append a row to a local CSV file
Finance/Expenses.csvstored on the device. - Notification: Push a summary to the Octaven mobile app.
You now have a continuously updated expense ledger without manual entry.
Example 2: Warranty Expiry Alerts
- Trigger: Document tagged "Warranty" with a
datefield. - Action: Calculate
date + 1 year. - Schedule: Add a reminder to the device’s Calendar Agent.
- Alert: Receive a push notification a month before the warranty ends.
Both automations run entirely on‑device, preserving privacy while saving time.
7. Securing Your Document Hub
- Encrypted Storage: All NVMe drives are encrypted by default; the key is stored in the device’s TPM.
- Hardware Privacy Controls: Use the touch console to enable "Data‑at‑Rest Isolation" which prevents any external USB device from reading the storage without authentication.
- No Monthly Subscription: All agents are bundled with the device; there are no hidden fees.
- Crypto Payments: If you ever need to upgrade storage or purchase additional agents, Octaven supports crypto checkout directly from the device’s UI.
8. Scaling for Teams or Families
If you have multiple users (e.g., a family of five or a small office), Octaven’s local agent orchestration lets you create separate workspaces:
- User Profiles stored in isolated directories.
- Role‑Based Access managed through the touch console’s Privacy Settings.
- Shared Index that respects each user’s permission set.
The Studio and Pro models shine here with their larger memory pools and Thunderbolt 5 connectivity for fast external‑drive backups.
Conclusion
By leveraging Octaven’s on‑device AI capabilities, you can transform a pile of paper into a searchable, automated knowledge base—without ever trusting a third‑party cloud. Whether you choose the affordable Mini for occasional scans or the powerhouse Pro for enterprise‑scale archives, the workflow remains the same: capture, OCR, tag, index, and automate, all under the roof of your home or office.
Take control of your documents today. Install the Octaven Agent Suite, set up the Doc‑OCR pipeline, and experience the freedom of truly private, local AI.
Ready to start? Visit the Octaven support portal for downloadable workflow templates and model files, all pre‑configured for your device.