langflow-ai / openrag
- пятница, 13 марта 2026 г. в 00:00:02
OpenRAG is a comprehensive, single package Retrieval-Augmented Generation platform built on Langflow, Docling, and Opensearch.
OpenRAG is a comprehensive Retrieval-Augmented Generation platform that enables intelligent document search and AI-powered conversations.
Users can upload, process, and query documents through a chat interface backed by large language models and semantic search capabilities. The system utilizes Langflow for document ingestion, retrieval workflows, and intelligent nudges, providing a seamless RAG experience.
Check out the documentation or get started with the quickstart.
Built with FastAPI and Next.js. Powered by OpenSearch, Langflow, and Docling.
OpenRAG follows a streamlined workflow to transform your documents into intelligent, searchable knowledge:
To get started with OpenRAG, see the installation guides in the OpenRAG documentation:
Integrate OpenRAG into your applications with our official SDKs:
pip install openrag-sdkQuick Example:
import asyncio
from openrag_sdk import OpenRAGClient
async def main():
async with OpenRAGClient() as client:
response = await client.chat.create(message="What is RAG?")
print(response.response)
if __name__ == "__main__":
asyncio.run(main())📖 Full Python SDK Documentation
npm install openrag-sdkQuick Example:
import { OpenRAGClient } from "openrag-sdk";
const client = new OpenRAGClient();
const response = await client.chat.create({ message: "What is RAG?" });
console.log(response.response);📖 Full TypeScript/JavaScript SDK Documentation
Connect AI assistants like Cursor and Claude Desktop to your OpenRAG knowledge base:
pip install openrag-mcpQuick Example (Cursor/Claude Desktop config):
{
"mcpServers": {
"openrag": {
"command": "uvx",
"args": ["openrag-mcp"],
"env": {
"OPENRAG_URL": "http://localhost:3000",
"OPENRAG_API_KEY": "your_api_key_here"
}
}
}
}The MCP server provides tools for RAG-enhanced chat, semantic search, and settings management.
For developers who want to contribute to OpenRAG or set up a development environment, see CONTRIBUTING.md.
For assistance with OpenRAG, see Troubleshoot OpenRAG and visit the Discussions page.
To report a bug or submit a feature request, visit the Issues page.