Open-source context retrieval layer for AI agents and RAG systems.
Airweave.Demo.mp4
Airweave connects to your apps, tools, and databases, continuously syncs their data, and exposes it through a unified, LLM-friendly search interface. AI agents query Airweave to retrieve relevant, grounded, up-to-date context from multiple sources in a single request.
Airweave sits between your data sources and AI systems as shared retrieval infrastructure. It handles authentication, ingestion, syncing, indexing, and retrieval so you don't have to rebuild fragile pipelines for every agent or integration.
- Connect your apps, databases, and documents (50+ integrations)
- Airweave syncs, indexes, and exposes your data through a unified retrieval layer
- Agents query Airweave via our SDKs, REST API, MCP, or native integrations with popular agent frameworks
- Agents retrieve relevant, grounded context on demand
Cloud-hosted: app.airweave.ai
git clone https://github.com/airweave-ai/airweave.git
cd airweave
./start.shRequires Docker and docker-compose
pip install airweave-sdk # Python
npm install @airweave/sdk # TypeScriptfrom airweave import AirweaveSDK
client = AirweaveSDK(api_key="YOUR_API_KEY")
results = client.collections.search(
readable_id="my-collection",
query="Find recent failed payments"
)Search collections, manage sources, and trigger syncs from your terminal:
pip install airweave-cliairweave auth login
airweave search "quarterly revenue figures" --collection finance-dataThe CLI outputs rich interactive results in your terminal and clean JSON when piped — making it work for both developers and AI agents.
- Frontend: React/TypeScript with ShadCN
- Backend: FastAPI (Python)
- Databases: PostgreSQL (metadata), Vespa (vectors)
- Workers: Temporal (orchestration), Redis (pub/sub)
- Deployment: Docker Compose (dev), Kubernetes (prod)
We welcome contributions! See our Contributing Guide.