An open-source AI-powered chatbot platform with advanced knowledge base integration, multi-modal support, and seamless integrations.
I'm starting a new job and won't have bandwidth to actively maintain this. If you're interested in helping maintain this project, here's how:
Start contributing:
- Submit quality PRs
- Help triage issues
- Improve documentation
- Review other people's PRs (even without merge rights, reviews are valuable!)
Then just ask: If you've made meaningful contributions and want write access to help maintain the project, just open an issue or comment saying so. I'm happy to add contributors who show they understand the codebase and want to help.
No formal process, no committee, no bureaucracy. Just good vibes and good code. βοΈ
Or fork it! If you want to take the project in a different direction or I'm not responsive enough, forking is totally fine. That's the beauty of open source.
- AI-Powered Chatbots: Build intelligent chatbots with OpenAI GPT-4 and other LLMs
- Knowledge Base Integration: Upload documents, videos, audio files, and URLs
- Multi-Modal Support: Process PDFs, videos, audio with automatic transcription
- Custom Theming: Full customization of chatbot appearance
- API Integrations: Connect to Discord, Slack, Teams, and more
- Skills System: Extend chatbot capabilities with custom actions
- Analytics Dashboard: Track usage, messages, and performance
- Embedded Widget: Add chatbots to any website
- Framework: Next.js 15 (App Router)
- Language: TypeScript
- Styling: TailwindCSS
- AI SDK: Vercel AI SDK v5
- State Management: React Context
- Database: Supabase (PostgreSQL)
- Framework: FastAPI (Python)
- Task Queue: Celery
- Document Processing: PyMuPDF, pdfplumber
- Audio/Video: Whisper API, pydub
- Embeddings: OpenAI text-embedding-3-small
- Node.js 20+ and npm
- Python 3.10+
- Supabase account
- OpenAI API key
- Redis (for backend task queue)
- Clone the repository
git clone https://github.com/Achu-shankar/Syllabi.git
cd syllabi- Setup Frontend
cd frontend
npm install
cp .env.example .env.local
# Edit .env.local with your credentials
npm run dev- Setup Backend (Optional - for document processing)
cd backend
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
cp .env.example .env
# Edit .env with your credentials
uvicorn app.main:app --reload- Setup Database
Option 1: Quick Setup with Schema File (Recommended)
Create a Supabase project at supabase.com, then run the complete schema:
- Go to Supabase Dashboard β SQL Editor
- Open
frontend/supabase/schema.sqlfile - Copy the entire contents
- Paste into SQL Editor and click "Run"
This will create all tables, indexes, RLS policies, and functions in one go.
Option 2: Using Supabase CLI
cd frontend
supabase link --project-ref your-project-ref
supabase db pushOption 3: Individual Migration Files
- Run SQL files from
frontend/supabase/migrations/one by one - Useful for understanding incremental changes during development
We welcome contributions! Please see CONTRIBUTING.md for details.
This project is licensed under the MIT License - see the LICENSE file for details.
- Built with Vercel AI SDK
- Powered by OpenAI
- Database by Supabase
- GitHub Issues: Report bugs or request features
- Discord: Join our community
Made with β€οΈ by Achu Shankar