- Overview
- Key Features
- Why PrivexBot?
- Quick Start
- Documentation
- Project Structure
- Development
- Deployment
- Contributing
- License
- Support
PrivexBot is a privacy-focused, multi-tenant SaaS platform that empowers organizations to build, train, and deploy AI-powered chatbots using their own data. Unlike traditional platforms, all AI workloadsβincluding data ingestion, training, and inferenceβare executed within Secret VM environments (Trusted Execution Environments/TEEs) to ensure:
- π Confidential Computation - Data encrypted in memory during processing
- π‘οΈ Remote Attestation - Cryptographically verify code integrity
- π Zero Data Leakage - Even platform administrators cannot access plaintext data
- β Regulatory Compliance - Built for HIPAA, GDPR, and enterprise security requirements
PrivexBot provides two powerful creation modes:
- Simple Chatbots - Form-based interface for quick FAQ bots and simple Q&A assistants
- Advanced Chatflows - Visual drag-and-drop workflow builder (like n8n/Dify) for complex, multi-step conversational AI
Both modes support:
- π RAG-powered Knowledge Bases - Import from files, websites, Notion, Google Docs
- π Multi-Channel Deployment - Website widget, Discord, Telegram, WhatsApp, API
- π Lead Capture - Built-in lead generation and analytics
- π¨ Full Customization - Branding, colors, behavior, and deployment options
- Secret VM Execution - All AI inference runs in Trusted Execution Environments
- End-to-End Encryption - Data encrypted at rest and in memory
- Multi-Provider Authentication - Email, MetaMask, Phantom, Keplr wallet support
- RBAC Permissions - Granular role-based access control
- Zero-Trust Architecture - No plaintext data exposure to platform
- Dual Creation Modes:
- Form-Based - Quick chatbot creation with guided forms
- Visual Workflow - Drag-and-drop node editor for complex logic
- Draft-First Architecture - Preview and test before deployment
- Live Testing - Test with real AI responses during creation
- Version Control - Track and rollback changes
- Multi-Source Import:
- π File Upload (PDF, Word, Text, CSV, JSON)
- π Website Scraping (multi-page crawl with Crawl4AI)
- π Google Docs & Sheets
- π Notion pages and databases
- βοΈ Direct text paste
- Smart Chunking - 4 strategies (size-based, heading-based, page-based, semantic)
- Document Annotations - Add context, importance, usage instructions
- Background Processing - Async document indexing with Celery
- Vector Search - FAISS, Qdrant, Weaviate, Milvus, Pinecone support
- Website Embed - JavaScript widget (~50KB) for any website
- Discord Bot - Native Discord integration with webhooks
- Telegram Bot - Full Telegram Bot API support
- WhatsApp Business - WhatsApp Business API integration
- Zapier Webhook - Connect to 5000+ apps via Zapier
- Direct API - RESTful API for custom integrations
- Optional Lead Capture - Collect email, name, phone, custom fields
- Smart Timing - Before chat, during chat, or after N messages
- Geolocation - Automatic IP-based location detection
- Analytics Dashboard - Geographic distribution, conversion tracking
- Privacy Controls - GDPR-compliant with consent management
- Widget Customization - Position, colors, greeting, branding
- Brand Control - White-label options, custom domains
- Behavior Configuration - System prompts, personality, tone
- Channel-Specific Settings - Different configs per deployment channel
- β Data Privacy Guaranteed - Secret VM ensures data never leaves TEE
- β Regulatory Compliance - Meet HIPAA, GDPR, SOC 2 requirements
- β On-Premise Deployment - Deploy to your own infrastructure
- β Audit Trails - Complete logging and attestation records
- β Multi-Tenant - Manage multiple clients/organizations
- β White-Label - Rebrand as your own service
- β Team Collaboration - Workspaces for different departments
- β API Access - Programmatic bot management
- β Open Source - Full codebase transparency
- β Modern Stack - FastAPI, React 19, TypeScript
- β Docker Ready - One-command deployment
- β Extensible - Plugin architecture for custom nodes
- β Production Ready - Battle-tested architecture
- β Scalable - Handles millions of messages
- β Monetization - Built-in subscription and billing hooks
- β Analytics - Usage tracking and insights
PrivexBot is built as a monorepo with three main packages:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β PrivexBot Platform β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β Frontend (React + TypeScript) β β
β β - Admin dashboard for bot creation β β
β β - Visual workflow builder (ReactFlow) β β
β β - Analytics and lead management β β
β β π Port 3000 (Dev) / 443 (Prod) β β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β REST API β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β Backend (FastAPI + Python) β β
β β - Multi-tenant API β β
β β - RAG knowledge base processing β β
β β - Secret AI inference (TEE) β β
β β - Multi-channel integrations β β
β β π Port 8000 β β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β Infrastructure β β
β β - PostgreSQL (Multi-tenant data) β β
β β - Redis (Draft storage, sessions, cache) β β
β β - Celery (Background tasks) β β
β β - Vector DB (FAISS/Qdrant/Pinecone) β β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Widget (Vanilla JavaScript) β
β - Embeddable chat widget (~50KB) β
β - Framework-agnostic β
β - Works on any website β
β π Served via CDN or backend β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
- Multi-Tenancy - Organization β Workspace β Resources hierarchy
- Draft-First - All creation happens in Redis before database commit
- Background Processing - Never block API requests (Celery tasks)
- Backend-Only AI - Secret AI never exposed to frontend
- Unified API - Same endpoints work for chatbots and chatflows
- Plugin Architecture - Extensible with custom nodes and integrations
π For detailed architecture, see ARCHITECTURE.md
- Docker (20.10+) and Docker Compose (2.0+)
- Node.js (20+) - For local frontend development
- Python (3.11+) - For local backend development
- Git - For cloning the repository
git clone https://github.com/privexbot/privexbot.git
cd privexbot# Copy environment files
cp .env.example .env
cp .env.prod.example .env.prod
# Edit .env with your settings
nano .env# Start all services (frontend + backend + database + redis)
docker compose up -d
# View logs
docker compose logs -f
# Stop services
docker compose downServices will be available at:
- Frontend: http://localhost:3000
- Backend API: http://localhost:8000
- API Docs: http://localhost:8000/docs
# Build production images
./scripts/build-prod.sh
# Test locally
./scripts/test-prod.sh
# Deploy to Docker Hub
./scripts/deploy-prod.shπ For detailed setup, see GETTING_STARTED.md
- Architecture Summary - Complete technical overview
- Database Models - Database models and components
- Multi-Tenancy Details - Tenant isolation implementation
- Draft Mode Architecture - Redis-based draft system
- Knowledge Base Flow - RAG implementation
- Deployment Architecture - Multi-channel deployment
- API Reference - REST API endpoints and schemas
- Backend Guide - Python backend architecture
- Frontend Guide - React frontend architecture
- Widget Guide - Embeddable widget development
- Docker Setup for dev - Local development environment
- Local Deployment Guide - Deploy to localhost
- Docker Setup for SecretVM deployment - Production environment
- Production Deployment Guide - Deploy to production
- Complete Architecture - Deep dive with diagrams
- Framework: FastAPI (Python 3.11+)
- ORM: SQLAlchemy 2.0+
- Database: PostgreSQL 15+ (with pgvector extension)
- Cache/Session: Redis 7+
- Task Queue: Celery with Redis broker
- Migrations: Alembic
- Validation: Pydantic V2
- Package Manager: uv
- Testing: pytest, pytest-asyncio
- Framework: React 19
- Language: TypeScript 5+
- Build Tool: Vite 5+
- Styling: Tailwind CSS + shadcn/ui
- State Management: React Context + Zustand
- Forms: React Hook Form + Zod validation
- Workflow Builder: ReactFlow
- HTTP Client: Axios
- Testing: Vitest, React Testing Library
- Language: Vanilla JavaScript (ES6+)
- Build: Webpack 5
- Size: ~50KB minified + gzipped
- Compatibility: All modern browsers (Chrome, Firefox, Safari, Edge)
- Containerization: Docker + Docker Compose
- Reverse Proxy: Nginx
- Vector Stores: FAISS, Qdrant, Weaviate, Milvus, Pinecone
- Embeddings: OpenAI, Hugging Face, Cohere (selfhosted)
- AI Inference: Secret AI (Trusted Execution Environment)
- Website Scraping: Crawl4AI, Firecrawl, Jina Reader
- Document Parsing: Unstructured.io, PyMuPDF, python-docx
- Cloud Sources: Google Docs API, Notion API, Google Sheets API
- Messaging: Discord.py, python-telegram-bot, Twilio (WhatsApp)
- Geolocation: MaxMind GeoIP2, IP2Location
- Authentication: MetaMask, Phantom, Keplr wallet support
privexbot/
βββ backend/ # Python FastAPI backend
β βββ src/app/
β β βββ main.py # FastAPI entry point
β β βββ api/v1/routes/ # API endpoints
β β β βββ auth.py # Authentication
β β β βββ chatbot.py # Chatbot CRUD
β β β βββ chatflows.py # Chatflow CRUD
β β β βββ knowledge_bases.py # KB management
β β β βββ kb_draft.py # Draft mode endpoints
β β β βββ documents.py # Document processing
β β β βββ leads.py # Lead management
β β β βββ public.py # Public API
β β β βββ webhooks/ # Platform webhooks
β β βββ models/ # SQLAlchemy models
β β β βββ user.py
β β β βββ organization.py
β β β βββ workspace.py
β β β βββ chatbot.py
β β β βββ chatflow.py
β β β βββ knowledge_base.py
β β β βββ ...
β β βββ schemas/ # Pydantic schemas
β β βββ services/ # Business logic
β β β βββ auth_service.py
β β β βββ chatbot_service.py
β β β βββ chatflow_service.py
β β β βββ chatflow_executor.py
β β β βββ kb_draft_service.py
β β β βββ inference_service.py # Secret AI
β β β βββ retrieval_service.py # RAG
β β β βββ ...
β β βββ auth/strategies/ # Auth providers
β β βββ integrations/ # External integrations
β β βββ chatflow/nodes/ # Chatflow node types
β β βββ tasks/ # Celery tasks
β β βββ alembic/ # Database migrations
β
βββ frontend/ # React TypeScript frontend
β βββ src/
β β βββ pages/
β β β βββ Dashboard.tsx
β β β βββ ChatbotBuilder.tsx # Form-based builder
β β β βββ ChatflowBuilder.tsx # Visual builder
β β β βββ KBCreationWizard.tsx # Draft KB creation
β β β βββ KnowledgeBase.tsx
β β β βββ LeadsDashboard.tsx
β β β βββ Deployments.tsx
β β βββ components/
β β β βββ chatbot/ # Chatbot components
β β β βββ chatflow/ # ReactFlow components
β β β βββ kb/ # KB creation (draft)
β β β βββ shared/ # Shared components
β β βββ api/ # API clients
β β βββ contexts/ # React contexts
β β βββ hooks/ # Custom hooks
β β βββ lib/ # Utilities
β
βββ widget/ # Embeddable chat widget
β βββ src/
β β βββ index.js # Entry point
β β βββ ui/
β β β βββ ChatBubble.js
β β β βββ ChatWindow.js
β β β βββ MessageList.js
β β β βββ InputBox.js
β β β βββ LeadForm.js
β β βββ api/client.js # Backend API
β β βββ styles/widget.css
β βββ build/widget.js # Compiled output
β βββ webpack.config.js
β
βββ docs/ # Documentation
β β
β
β
βββ scripts/ # Utility scripts
β βββ
β
βββ docker-compose.dev.yml # Development compose
βββ docker-compose.yml # Production compose
βββ .env.example # Development env template
βββ .env # Production env template
βββ README.md # This file
π For detailed structure explanation, see ARCHITECTURE.md
Frontend:
cd frontend
# Install dependencies
npm install
# Start dev server
npm run devWidget:
cd widget
# Install dependencies
npm install
# Build for development
npm run dev
# Build for production
npm run build# Backend tests
cd backend
pytest
# Frontend tests
cd frontend
npm run test
# E2E tests
npm run test:e2e# Backend linting
cd backend
ruff check .
mypy app/
# Frontend linting
cd frontend
npm run lint
# Format code
npm run formatπ For detailed development workflow, see CONTRIBUTING.md
Best for: MVPs, small teams, 1-100 customers
For serving the widget globally:
# Using Cloudflare (FREE)
1. Sign up at cloudflare.com
2. Add your domain
3. Create cdn.yourdomain.com subdomain
4. Upload widget.js to Cloudflare Workers
5. Update WIDGET_CDN_URL in .env.prodβββ backend
βΒ Β βββ __init__.py
βΒ Β βββ pyproject.toml
βΒ Β βββ src
βΒ Β βΒ Β βββ Dockerfile
βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βββ alembic.ini
βΒ Β βΒ Β βββ app
βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βββ alembic
βΒ Β βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βΒ Β βββ env.py
βΒ Β βΒ Β βΒ Β βββ script.py.mako
βΒ Β βΒ Β βΒ Β βββ versions
βΒ Β βΒ Β βββ api
βΒ Β βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βΒ Β βββ v1
βΒ Β βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βΒ Β βββ dependencies.py
βΒ Β βΒ Β βΒ Β βββ routes
βΒ Β βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βΒ Β βββ auth.py
βΒ Β βΒ Β βΒ Β βββ chatbot.py
βΒ Β βΒ Β βΒ Β βββ org.py
βΒ Β βΒ Β βΒ Β βββ workspace.py
βΒ Β βΒ Β βββ auth
βΒ Β βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βΒ Β βββ strategies
βΒ Β βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βΒ Β βββ cosmos.py
βΒ Β βΒ Β βΒ Β βββ email.py
βΒ Β βΒ Β βΒ Β βββ evm.py
βΒ Β βΒ Β βΒ Β βββ solana.py
βΒ Β βΒ Β βββ core
βΒ Β βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βΒ Β βββ config.py
βΒ Β βΒ Β βΒ Β βββ security.py
βΒ Β βΒ Β βββ db
βΒ Β βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βΒ Β βββ base.py
βΒ Β βΒ Β βΒ Β βββ base_class.py
βΒ Β βΒ Β βΒ Β βββ session.py
βΒ Β βΒ Β βββ main.py
βΒ Β βΒ Β βββ models
βΒ Β βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βΒ Β βββ auth_identity.py
βΒ Β βΒ Β βΒ Β βββ chatbot.py
βΒ Β βΒ Β βΒ Β βββ organization.py
βΒ Β βΒ Β βΒ Β βββ organization_member.py
βΒ Β βΒ Β βΒ Β βββ user.py
βΒ Β βΒ Β βΒ Β βββ workspace.py
βΒ Β βΒ Β βΒ Β βββ workspace_member.py
βΒ Β βΒ Β βββ schemas
βΒ Β βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βΒ Β βββ chatbot.py
βΒ Β βΒ Β βΒ Β βββ organization.py
βΒ Β βΒ Β βΒ Β βββ token.py
βΒ Β βΒ Β βΒ Β βββ user.py
βΒ Β βΒ Β βΒ Β βββ workspace.py
βΒ Β βΒ Β βββ services
βΒ Β βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βΒ Β βββ auth_service.py
βΒ Β βΒ Β βΒ Β βββ permission_service.py
βΒ Β βΒ Β βΒ Β βββ tenant_service.py
βΒ Β βΒ Β βββ tasks
βΒ Β βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βΒ Β βββ celery_worker.py
βΒ Β βΒ Β βββ tests
βΒ Β βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βΒ Β βββ conftest.py
βΒ Β βΒ Β βΒ Β βββ test_auth.py
βΒ Β βΒ Β βΒ Β βββ test_tenancy.py
βΒ Β βΒ Β βββ utils
βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βββ redis.py
βΒ Β βββ uv.lock
What: Entry point of the FastAPI application.
Responsibilities:
- Instantiate FastAPI app
- Include API routers
- Mount middleware, CORS, error handlers
Integration:
- Imports routes from
api/v1/routes/ - Uses config from
core/config.py
What: HTTP API layer, versioned (v1, v2, ...).
Responsibilities:
- Defines route handlers (auth.py, chatbot.py, etc.)
- Contains dependency injections (auth guards, permissions)
Integration:
- Uses Pydantic schemas for validation
- Calls services for business logic
- Uses auth for authentication/authorization
What: Authentication strategies (email, blockchain wallets, etc.)
Responsibilities:
- Email login/signup
- Ethereum, Solana, Cosmos wallet auth
- Nonce creation, signature verification
Integration:
- Called by API auth routes
- Uses Redis (via utils/redis.py) for nonce caching
What: App-wide settings and security utilities.
Responsibilities:
- Config loader (
config.py) - JWT, password hashing (
security.py) - Constants and shared utilities
Integration:
- Used throughout app startup, services, and routes
What: Database connection and session management.
Responsibilities:
- SQLAlchemy session and base models
- Initializes ORM base classes and mixins
Integration:
- Used by models, services, and API layers
What: ORM models representing database tables.
Responsibilities:
- User, Organization, Workspace models
- Relationships and tenancy via foreign keys
Integration:
- Used by services, Alembic for migrations
What: Pydantic schemas for request validation and response serialization.
Responsibilities:
- Validate API inputs
- Control API outputs
Integration:
- Used in API routes and sometimes in services
What: Business logic layer.
Responsibilities:
- Authentication service (login/signup/JWT)
- Tenant resolution (org/workspace)
- Permission mapping (roles β permissions)
Integration:
- Called by API route handlers
What: Helper functions and utilities.
Responsibilities:
- Redis client
- Common helpers used across modules
Integration:
- Used by auth, services, tasks
What: Background task runners (e.g., Celery workers).
Responsibilities:
- Runs asynchronous jobs (e.g., email sending)
Integration:
- Linked via async workflows, message brokers
What: Backend unit and integration tests.
Responsibilities:
- Pytest tests
- Test fixtures and clients
Integration:
- Tests routes, services, auth, tenancy
What: Database schema migration tool.
Responsibilities:
- Migration scripts (
versions/) - Alembic environment config (
env.py) - Templates for migrations
Integration:
- Reflects
models/for schema changes
βββ frontend
βββ Dockerfile
βββ README.md
βββ components.json
βββ eslint.config.js
βββ index.html
βββ package-lock.json
βββ package.json
βββ postcss.config.js
βββ public
βΒ Β βββ vite.svg
βββ src
βΒ Β βββ api
βΒ Β βΒ Β βββ apiClient.ts
βΒ Β βΒ Β βββ auth.ts
βΒ Β βΒ Β βββ chatbot.ts
βΒ Β βΒ Β βββ organization.ts
βΒ Β βΒ Β βββ workspace.ts
βΒ Β βββ components
βΒ Β βΒ Β βββ App
βΒ Β βΒ Β βΒ Β βββ App.tsx
βΒ Β βΒ Β βββ auth
βΒ Β βΒ Β βββ common
βΒ Β βΒ Β βββ dashboard
βΒ Β βΒ Β βββ ui
βΒ Β βΒ Β βββ button.tsx
βΒ Β βββ contexts
βΒ Β βΒ Β βββ AuthContext.tsx
βΒ Β βΒ Β βββ TenantContext.tsx
βΒ Β βΒ Β βββ index.tsx
βΒ Β βββ hooks
βΒ Β βΒ Β βββ useAuth.ts
βΒ Β βΒ Β βββ useTenant.ts
βΒ Β βββ lib
βΒ Β βΒ Β βββ utils.ts
βΒ Β βββ main.tsx
βΒ Β βββ pages
βΒ Β βΒ Β βββ Dashboard.tsx
βΒ Β βΒ Β βββ LoginPage.tsx
βΒ Β βΒ Β βββ OrgSwitchPage.tsx
βΒ Β βββ routes
βΒ Β βΒ Β βββ PrivateRoute.tsx
βΒ Β βββ styles
βΒ Β βΒ Β βββ index.css
βΒ Β βββ utils
βΒ Β βββ permissions.ts
βββ tailwind.config.js
βββ tsconfig.app.json
βββ tsconfig.json
βββ tsconfig.node.json
βββ vite.config.ts
Static assets like HTML, favicon, and manifest files.
React app source code.
- App.tsx / index.tsx: Entry points setting up providers and routing.
Axios clients for backend communication.
auth.ts: login/signup/logout requestschatbot.ts: chatbot CRUDapiClient.ts: base axios with JWT headers
Reusable UI parts.
auth/: login/register formsdashboard/: org/workspace switcherscommon/: buttons, modals, loaders
Global state management using React Context.
AuthContext: JWT, user info, permissionsTenantContext: current org/workspace
Reusable React hooks.
useAuth.ts: auth actionsuseTenant.ts: tenant context management
Route components/screens.
LoginPage.tsxDashboard.tsxOrgSwitchPage.tsx
Route protection and navigation.
PrivateRoute.tsx: protects routes requiring auth
Central styles (CSS, Tailwind config).
Helpers like permission checks (hasPermission()).
| Frontend Component | Backend Component | Purpose |
|---|---|---|
| api/auth.ts | api/v1/routes/auth.py | Authentication API requests |
| AuthContext | JWT tokens | Stores user info and permissions |
| TenantContext | Auth/session switching | Tenant context switching |
| Axios client | Middleware | Sends JWT with each request |
| Permissions (utils) | permission_service.py | Frontend permission checks |
We welcome contributions! Please see our Contributing Guide for details.
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Commit your changes:
git commit -m 'Add amazing feature' - Push to branch:
git push origin feature/amazing-feature - Open a Pull Request
- All PRs require passing tests
- Code must pass linting (ruff for Python, eslint for TypeScript)
- Add tests for new features
- Update documentation as needed
- π Bug fixes - Check Issues
- β¨ New features - See Roadmap
- π Documentation - Help improve docs
- π Translations - Add language support
- π§ͺ Testing - Improve test coverage
- π¨ UI/UX - Design improvements
π Full guidelines: CONTRIBUTING.md
This project is licensed under the Apache License 2.0 β see the LICENSE file for details.
Copyright 2025 PrivexBot
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
- GitHub Issues: Report bugs and request features
- GitHub Discussions: Ask questions and share ideas
- Discord: Join our community
- Technical Docs: docs/
- API Reference: API_REFERENCE.md
- FAQ: docs/technical-docs/FAQ.md
For enterprise support, custom development, or consulting:
- Email: privexbot@gmail.com
- Website: https://privexbot.com
- Multi-tenant architecture
- Form-based chatbot builder
- Visual chatflow builder
- Knowledge base with RAG
- Website widget
- Multi-auth support
- Lead capture
- Docker deployment
- Telegram integration
- Discord integration
- Production hardening
- Comprehensive testing
- WhatsApp Business integration
- Slack integration
- Analytics dashboard v2
- A/B testing for bots
- Multi-language support
- Advanced workflow nodes
- Zapier app integration
- Mobile app (React Native)
- On-premise deployment
- SSO integration (SAML, OAuth)
- Advanced RBAC
- Audit logs
- SLA monitoring
- High availability setup
- Multi-region deployment
- Compliance certifications
π See roadmap above for current development status
Built with amazing open-source technologies:
- FastAPI - Modern Python web framework
- React - UI library
- ReactFlow - Visual workflow builder
- Crawl4AI - Website scraping
- Unstructured - Document parsing
- Secret Network - Privacy-preserving computation
- shadcn/ui - Beautiful UI components
Special thanks to all contributors!
If you find PrivexBot useful, please consider giving it a star! β
Built by the PrivexBot Team
Website β’ Documentation β’ Discord β’ Twitter