parallel

High-accuracy web search and research via Parallel.ai API. Optimized for AI agents with rich excerpts and citations.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "parallel" with this command: npx skills add mvanhorn/clawdbot-skill-parallel/mvanhorn-clawdbot-skill-parallel-parallel

Parallel.ai 🔬

High-accuracy web search API built for AI agents. Outperforms Perplexity/Exa on research benchmarks.

Setup

pip install parallel-web

API key is configured. Uses Python SDK.

from parallel import Parallel
client = Parallel(api_key="YOUR_KEY")
response = client.beta.search(
    mode="one-shot",  # or "fast" for lower latency/cost, "agentic" for multi-hop
    max_results=10,
    objective="your query"
)

Modes

ModeUse CaseTradeoff
one-shotDefault, balanced accuracyBest for most queries
fastQuick lookups, cost-sensitiveLower latency/cost, may sacrifice some accuracy
agenticComplex multi-hop researchHigher accuracy, more expensive

Quick Usage

# Default search (one-shot mode)
{baseDir}/.venv/bin/python {baseDir}/scripts/search.py "Who is the CEO of Anthropic?" --max-results 5

# Fast mode - lower latency/cost ⚡
{baseDir}/.venv/bin/python {baseDir}/scripts/search.py "latest AI news" --mode fast

# Agentic mode - complex research
{baseDir}/.venv/bin/python {baseDir}/scripts/search.py "compare transformer architectures" --mode agentic

# JSON output
{baseDir}/.venv/bin/python {baseDir}/scripts/search.py "latest AI news" --json

Response Format

Returns structured results with:

  • search_id - unique search identifier
  • results[] - array of results with:
    • url - source URL
    • title - page title
    • excerpts[] - relevant text excerpts
    • publish_date - when available
  • usage - API usage stats

When to Use

  • Deep research requiring cross-referenced facts
  • Company/person research with citations
  • Fact-checking with evidence-based outputs
  • Complex queries that need multi-hop reasoning
  • Higher accuracy than traditional search for research tasks

API Reference

Docs: https://docs.parallel.ai Platform: https://platform.parallel.ai

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Research

Swarm

Cut your LLM costs by 200x. Offload parallel, batch, and research work to Gemini Flash workers instead of burning your expensive primary model.

Registry SourceRecently Updated
3.1K8Profile unavailable
Coding

Claw Multi Agent

Claw Multi Agent enables parallel multi-agent orchestration for faster, comprehensive research, model comparison, and code pipelines, saving 50-65% time.

Registry SourceRecently Updated
2910Profile unavailable
Automation

Multi-Agent Orchestrator

Production-grade multi-agent orchestration patterns. Decompose complex tasks into parallel subtasks, coordinate agent swarms, build sequential pipelines, and...

Registry SourceRecently Updated
1010Profile unavailable
Security

Subagent Architecture

Advanced patterns for specialized subagent orchestration with production-ready reference implementations. Security isolation, phased implementation, peer col...

Registry SourceRecently Updated
2700Profile unavailable