High-accuracy web search API built for AI agents. Outperforms Perplexity/Exa on research benchmarks.
- Three search modes for different use cases:
one-shot— Default, balanced accuracyfast⚡ — Lower latency/cost for quick lookupsagentic— Multi-hop reasoning for complex research
- Rich excerpts with citations
- Optimized for LLM context efficiency
# Install via ClawHub
clawhub install parallel# Default search
python3 scripts/search.py "Who founded OpenAI?" --max-results 5
# Fast mode (new!) ⚡
python3 scripts/search.py "latest AI news" --mode fast
# Agentic mode for deep research
python3 scripts/search.py "compare transformer architectures" --mode agentic- Docs: https://docs.parallel.ai
- Platform: https://platform.parallel.ai
- Added fast mode (
--mode fast) for lower latency/cost searches - Added mode comparison table to docs
- Initial release with one-shot and agentic modes