**Quanta is a Hierarchical CMS (Content Management System) **
Create hierarchically organized content that's always editable like a wiki and shared online. Quanta is a new kind of platform with a new kind of architecture.
Designed to allow a more fine-grained hierarchical approach to content management, collaborative documents, wikis, and micro-blogs, Quanta "quantizes" each piece of content into tree nodes.
These nodes are the main elements of the app, similar to Facebook Posts or Twitter Tweets. Quanta has a unique and more powerful design, allowing content to be organized into larger structures of information, to create arbitrary data structures representing documents, wikis, web pages, blogs, ChatGPT conversations, etc.
- Block-based Editor (similar to Jypyter Notebooks)
- AI Chat & Agents
- Wikis & micro-blogging
- Document collaboration and publishing
- PDF Generation
- Secure messaging with (E2E Encryption)
- Video/audio recording & sharing
- File sharing
- Podcatcher (RSS Reader)
- Many other features related to managing hierarchical content
- TypeScript, ReactJS, TailwindCSS, Vite Build (front end)
- Java Spring Boot 3 FAT Jar with embedded Tomcat (back end)
- MongoDB as database
- Redis for session data
- Python Microservice using LangChain for AI functions
- Deployment: Docker Compose (Swarm Mode)
Quantizr is a mono-repo that is itself (at the root level) the Quanta Web App (CMS), which is a very large app with around 500K lines of code. However inside the root folder we have two separate projects which are standalone applications themselves, and can be run independently of Quanta. These two separate apps are:
Quanta Web App (CMS)
The root level of the repository contains the Quanta App itself.
Quanta Gradio App
The QuantaGradio
folder in this repo contains several Python-based Gradio apps for doing AI (General Chatbot, Coding Agent Chatbox, Image Understanding, and Image Generation), and relies on the same Python in the commmon
folder. So to use QuantaGradio apps you only need to checkout the QuantaGradio
and common
folders.
Quanta Chat App
The QuantaChat
folder in this repo is a Peer-to-Peer WebRTC-based Chat app that runs in web browsers, using JavaScript, and the associated Signaling Server that goes with it. This app is completely self contained, so you only need to checkout the QuantaChat
folder.