exa-data-handling
Installation
SKILL.md
Exa Data Handling
Overview
Manage search result data from Exa neural search APIs. Covers content extraction filtering, result caching with TTL, citation deduplication, and handling large content payloads efficiently for RAG pipelines.
Prerequisites
- Exa API key
exa-jsSDK installed- Storage layer for cached results
- Understanding of content extraction options
Instructions
Step 1: Control Content Extraction Scope
import Exa from 'exa-js';
const exa = new Exa(process.env.EXA_API_KEY!);
// Minimal extraction: metadata only (cheapest)
Related skills