InfoConnect Hybrid Search Engine
Turn your documents into a searchable knowledge base using AI.
What you can do:
- Upload PDFs, Word docs, text files, and images
- Ask questions in plain English
- Get relevant answers with source references
- Organize documents automatically with categories
No programming required — if you can use the command line, you can use the InfoConnect Hybrid Search Engine.
Quick Start (5 minutes)
New here? Follow these 4 steps to search your first document.
Step 1: Start the System
Run these commands in your terminal:
just prod-up
just status
Wait for all green checkmarks. First startup takes 2-3 minutes.
"just" is a command runner — like shortcuts for common tasks. See Justfile Commands for more.
Step 2: Upload Your First Document
curl -X POST http://localhost:8000/embed \
-H "X-API-Key: super-secret-key" \
-F "file=@test-documents/malaysia-wikipedia.txt" \
-F "document_id=my-first-doc"
Save the job_id from the response.
Step 3: Wait for Processing
Check until status is "completed":
curl http://localhost:8000/status/YOUR_JOB_ID \
-H "X-API-Key: super-secret-key"
Takes about 10-30 seconds.
Step 4: Search Your Document
Ask a question:
curl -X POST http://localhost:8000/search \
-H "X-API-Key: super-secret-key" \
-H "Content-Type: application/json" \
-d '{"query": "What is the capital?", "limit": 5}'
You should see search results!
What You Can Build
Enterprise Search — Make company documents searchable
Research Database — Organize papers and articles
Knowledge Base — Build an FAQ from documentation
Document Analysis — Extract insights from contracts and reports
Learn More
New to the InfoConnect Hybrid Search Engine? Start here:
- Installation Guide — Full setup instructions
- Your First Document — Detailed walkthrough
- Auto-Categorizing Your Documents — Automatic organization
Working with images?
- OCR Guide — Upload scanned documents and screenshots
Want to go deeper?
- Architecture — How it works under the hood
- Configuration — Customize settings
- Embeddings and Retrieval — How search and ranking work
API Reference:
Getting Help
- Check the troubleshooting section in Installation
- Review Configuration for setting issues
- See Architecture to understand how it works
What's Next
Choose your path:
Just getting started? → Installation Guide
Ready to upload? → Your First Document
Have scanned documents? → OCR Guide