exa-migration-deep-dive

Featured

Migrate from other search APIs (Google, Bing, Tavily, Serper) to Exa neural search. Use when switching to Exa from another search provider, migrating search pipelines, or evaluating Exa as a replacement for traditional search APIs. Trigger with phrases like "migrate to exa", "switch to exa", "replace google search with exa", "exa vs tavily", "exa migration", "move to exa".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Exa Migration Deep Dive ## Current State !`npm list exa-js 2>/dev/null | grep exa-js || echo 'exa-js not installed'` !`npm list 2>/dev/null | grep -E '(google|bing|tavily|serper|serpapi)' || echo 'No competing search SDK found'` ## Overview Migrate from traditional search APIs (Google Custom Search, Bing Web Search, Tavily, Serper) to Exa's neural search API. Key differences: Exa uses semantic/neural search instead of keyword matching, returns content (text/highlights/summary) in a single API call, and supports similarity search from a seed URL. ## API Comparison | Feature | Google/Bing | Tavily | Exa | |---------|-------------|--------|-----| | Search model | Keyword | AI-enhanced | Neural embeddings | | Content in results | Snippets only | Full text | Text + highlights + summary | | Similarity search | No | No | `findSimilar()` by URL | | AI answer | No | Yes | `answer()` + `streamAnswer()` | | Categories | No | No | company, news, research paper, tweet, people | | Date filtering | Limited | Yes | `startPublishedDate` / `endPublishedDate` | | Domain filtering | Yes | Yes | `includeDomains` / `excludeDomains` (up to 1200) | ## Instructions ### Step 1: Install Exa SDK ```bash set -euo pipefail npm install exa-js # Remove old SDK if replacing # npm uninstall google-search-api tavily serpapi ``` ### Step 2: Create Adapter Layer ```typescript // src/search/adapter.ts import Exa from "exa-js"; // Define a provider-agnostic search interface interface SearchResult { tit...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category