Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.atom14.ai/llms.txt

Use this file to discover all available pages before exploring further.

Search Modes

SearchAnything offers two powerful search modes:

Quick Search (Keyword Matching)

Best for: Instant results, exact matches, known phrases Quick Search performs fast keyword matching across your indexed content. Results appear instantly as you type.
GET /api/search?q=quarterly+revenue&mode=quick
Characteristics:
  • โšก Ultra-fast response (~100ms)
  • ๐ŸŽฏ Exact keyword matches
  • ๐Ÿ“ Precise location tracking (page, line, timestamp)
  • ๐Ÿ” Best for known phrases and specific terms

AI Search (Semantic + Summary)

Best for: Complex queries, finding concepts, summarizing information AI Search uses semantic understanding to find content by meaning, not just exact words. It can also summarize findings across multiple documents.
GET /api/search?q=what+were+the+main+challenges&mode=ai
Characteristics:
  • ๐Ÿง  Semantic understanding (finds synonyms and related concepts)
  • ๐Ÿ“Š Cross-document synthesis
  • ๐Ÿ’ก AI-generated summaries
  • โฑ๏ธ Slower (~2-5s) but more powerful

When to Use Each Mode

Use CaseRecommended Mode
Finding specific quote or numberQuick Search
Searching by file nameQuick Search
Understanding themes across documentsAI Search
Answering questions that require synthesisAI Search
Real-time search-as-you-typeQuick Search
Research and analysisAI Search

Example Comparison

Query: โ€œWhat are the security features?โ€ Quick Search returns:
  • Exact matches for โ€œsecurity featuresโ€ across all files
  • Each match shown separately with location
  • Fast, precise, minimal processing
AI Search returns:
  • All related security concepts (authentication, encryption, access control)
  • Synthesized answer combining multiple sources
  • Citations linking back to original content
  • Contextual understanding of your question

API Parameters

Both modes support the same parameters:
  • q: Search query (required)
  • limit: Max results (default: 50, max: 100)
  • mode: quick or ai (default: quick)
# Quick search with 20 results
GET /api/search?q=revenue&mode=quick&limit=20

# AI search for comprehensive answer
GET /api/search?q=what+are+the+main+findings&mode=ai