Real-world examples of AI-powered data pipelines built with Conduit - demonstrating how to integrate modern AI services into production data workflows.
This repository showcases practical AI pipeline implementations using Conduit's data streaming capabilities. Each example demonstrates different aspects of building intelligent, real-time data processing systems that integrate with popular AI services like OpenAI, cloud storage, and vector databases.
Real-time customer support automation
- Source: PostgreSQL (support tickets)
- AI Processing: OpenAI GPT-4 summarization
- Destination: Slack webhooks
- Use Case: Automatically summarize and notify teams of new support tickets
Real-time customer feedback monitoring
- Source: PostgreSQL (customer reviews)
- AI Processing: OpenAI GPT-4 sentiment classification
- Destination: Slack webhooks
- Use Case: Automatically analyze and notify teams of customer review sentiment
Real-time ingest document processing and intelligent search
- Source: AWS S3 (documents)
- AI Processing: Document parsing + OpenAI embeddings + vector search
- Destination: PostgreSQL with pgvector
- Use Case: Build searchable knowledge bases from document collections
- Includes: Document parsing service + RAG query API
Real-time ingest document processing and chatbot UI running locally
- Source: AWS S3 (documents)
- AI Processing: Document parsing + Ollama embeddings + vector search
- Destination: Supabase
- Use Case: Build a chatbot UI with knowledge bases from document collections using local and open source software
- Includes: Document parsing service
-
Install Conduit
# Download latest release curl -sSL https://get.conduit.io | sh # Or use Homebrew brew install conduit
-
Choose an Example
cd examples/summarize
-
Follow Setup Instructions Each example includes detailed setup instructions and environment configuration in the respective README
- Conduit (latest version)
- OpenAI API key for AI processing
- Database access (PostgreSQL recommended)
- Cloud storage credentials (AWS S3 for RAG example)
- AI Integration: OpenAI GPT models, embeddings, and text processing
- Real-time Processing: Stream processing with immediate AI-powered transformations
- Vector Databases: pgvector integration for similarity search and retrieval
- API Orchestration: HTTP processors for external service integration
- Data Transformation: Complex multi-step processing workflows
- Custom Processing: JavaScript processors for domain-specific logic
- Multiple Connectors: S3, PostgreSQL, HTTP webhooks, and more
- Documentation: conduit.io/docs
- Community: Discord
- Issues: GitHub Issues
- API Reference: docs.conduit.io/api
- Conduit - The core data streaming platform
- Conduit Connectors - Full list of available connectors
- Conduit Processors - Built-in data transformation capabilities
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.