Airweave: Context Retrieval for AI Agents Across Apps and Databases

This repository profile is provided by osrepos.com, an open source repository discovery platform.

Airweave: Context Retrieval for AI Agents Across Apps and Databases

Summary

Airweave is an open-source context retrieval layer designed for AI agents, enabling them to access information across various applications and databases. It transforms diverse content into searchable knowledge bases, offering a standardized interface for agents to perform semantic, hybrid, and recency-biased searches. The platform simplifies data synchronization, entity extraction, and serves as a robust foundation for building intelligent AI applications.

Repository Information

Analyzed by OSRepos on December 19, 2025

Use at your own risk

OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.

Introduction

Airweave is a fully open-source context retrieval layer designed to empower AI agents by providing them with access to information across various applications and databases. It connects seamlessly to productivity tools, databases, and document stores, transforming their diverse contents into semantically searchable knowledge bases. This platform offers a standardized interface, accessible via REST API or MCP, handling everything from authentication and data extraction to embedding and serving, making it easier for agents to find relevant information.

Installation

You can get started with Airweave quickly by self-hosting it using Docker and Docker Compose.

First, ensure Docker and Docker Compose are installed on your system.

# 1. Clone the repository
git clone https://github.com/airweave-ai/airweave.git
cd airweave

# 2. Build and run
chmod +x start.sh
./start.sh

Once the setup is complete, you can access the Airweave dashboard at http://localhost:8080. For a managed service option, consider Airweave Cloud.

Examples

Airweave provides SDKs for both Python and TypeScript/JavaScript, allowing developers to easily integrate its powerful search capabilities into their applications.

Python SDK

Install the SDK:

pip install airweave-sdk

Example usage:

from airweave import AirweaveSDK

# Initialize client
client = AirweaveSDK(
    api_key="YOUR_API_KEY",
    base_url="http://localhost:8001"
)

# Create a collection
collection = client.collections.create(name="My Collection")

# Add a source connection (e.g., Stripe)
source = client.source_connections.create(
    name="My Stripe Connection",
    short_name="stripe",
    readable_collection_id=collection.readable_id,
    authentication={
        "credentials": {"api_key": "your_stripe_api_key"}
    }
)

# Semantic search (default)
results = client.collections.search(
    readable_id=collection.readable_id,
    query="Find recent failed payments"
)

# Hybrid search (semantic + keyword)
results = client.collections.search(
    readable_id=collection.readable_id,
    query="customer invoices Q4 2024",
    search_type="hybrid"
)

# Get AI-generated answer instead of raw results
answer = client.collections.search(
    readable_id=collection.readable_id,
    query="What are our customer refund policies?",
    response_type="completion",
    enable_reranking=True
)

TypeScript/JavaScript SDK

Install the SDK:

npm install @airweave/sdk
# or
yarn add @airweave/sdk

Example usage:

import { AirweaveSDKClient, AirweaveSDKEnvironment } from "@airweave/sdk";

// Initialize client
const client = new AirweaveSDKClient({
    apiKey: "YOUR_API_KEY",
    environment: AirweaveSDKEnvironment.Local
});

// Create a collection
const collection = await client.collections.create({
    name: "My Collection"
});

// Add a source connection (e.g., Stripe)
const source = await client.sourceConnections.create({
    name: "My Stripe Connection",
    shortName: "stripe",
    readableCollectionId: collection.readableId,
    authentication: {
        credentials: { apiKey: "your_stripe_api_key" }
    }
});

// Semantic search (default)
const results = await client.collections.search(
    collection.readableId,
    { query: "Find recent failed payments" }
);

// Hybrid search (semantic + keyword)
const hybridResults = await client.collections.search(
    collection.readableId,
    {
        query: "customer invoices Q4 2024",
        searchType: "hybrid"
    }
);

// Get AI-generated answer instead of raw results
const answer = await client.collections.search(
    collection.readableId,
    {
        query: "What are our customer refund policies?",
        responseType: "completion",
        enableReranking: true
    }
);

Why Use Airweave

Airweave stands out as a powerful solution for enhancing AI agent capabilities through robust context retrieval. Its key features include:

  • Extensive Data Synchronization: Connects to over 30 sources, including popular apps like GitHub, Notion, Slack, Salesforce, and various databases, with minimal configuration.
  • Intelligent Data Processing: Features entity extraction and a sophisticated transformation pipeline to prepare data for optimal search.
  • Scalable Architecture: Built with a multi-tenant architecture and OAuth2 support, ensuring security and scalability.
  • Efficient Updates: Utilizes content hashing for incremental updates, keeping knowledge bases fresh without redundant processing.
  • Advanced Search Capabilities: Offers semantic search for nuanced agent queries, alongside hybrid search (semantic + keyword), query expansion, reranking, and recency bias options.
  • Data Versioning: Provides versioning for data changes, ensuring traceability and reliability.

With its comprehensive feature set and support for a wide array of integrations, Airweave simplifies the creation of intelligent AI applications that can effectively leverage vast amounts of distributed information.

Links

Related repositories

Similar repositories that may be relevant next.

Micstec Skills: A Comprehensive Collection for AI Coding Agents

Micstec Skills: A Comprehensive Collection for AI Coding Agents

August 21, 2026

Micstec Skills is a centralized GitHub repository offering a vast collection of skills, plugins, and extensions for various AI coding agents. It supports platforms like Claude Code, Gemini CLI, Copilot, and Cursor, providing a unified approach to managing AI agent capabilities. Developers can easily discover, install, and enhance their AI-powered development workflows across multiple environments.

PythonAI AgentsClaude Code
microsoft/skills: Empowering AI Coding Agents with Domain-Specific Knowledge

microsoft/skills: Empowering AI Coding Agents with Domain-Specific Knowledge

August 19, 2026

The microsoft/skills repository provides a comprehensive collection of skills, custom agents, and configurations designed to enhance AI coding agents. It offers domain-specific knowledge for working with Azure SDKs and Microsoft AI Foundry, enabling more effective and context-driven development. Developers can leverage these resources to ground agents like GitHub Copilot with specialized expertise.

AI AgentsAzure SDKGitHub Copilot
agent-skills: Reusable AI Agent Skills for Specification-Driven Development

agent-skills: Reusable AI Agent Skills for Specification-Driven Development

August 17, 2026

agent-skills is a comprehensive collection of reusable AI agent skills designed for specification-driven and autonomous development. It streamlines the entire software development lifecycle, from generating requirements and designs to implementing, reviewing, testing, and orchestrating the process. This repository empowers developers to leverage AI for enhanced productivity and consistent quality.

AI AgentsDevelopment AutomationSpecification-Driven Development
AMD Skills: Empowering AI Agents with AMD's Optimized Software Stack

AMD Skills: Empowering AI Agents with AMD's Optimized Software Stack

August 16, 2026

AMD Skills is the official catalog of AI agent skills from AMD, designed to empower AI agents with optimized software for AMD hardware. This repository provides knowledge, scripts, and conventions for working with AMD's stack, enabling seamless integration with major coding agents like Cursor, Claude Code, OpenAI Codex, and Gemini CLI.

PythonAI AgentsMachine Learning

Source repository

Open the original repository on GitHub.

21 counted GitHub visits

View on GitHub
OS
OSRepos

Analysis and discovery of open source repositories. Find interesting projects and follow their updates.

Monitor your website with YourWebsiteScore

OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of third-party repository code is at your own risk. Always review source code, dependencies, licenses, and security implications before running anything.

© 2025 OSRepos. Built with Nuxt 3 and lots of ❤️