Live deployed build: https://pretzelai.github.io
Pretzel is an open-source, offline browser-based tool for fast and intuitive data exploration and visualization. It can handle large data files, runs locally in your browser, and requires no backend setup. Pretzel makes it easy to manipulate data via visual chained data transform blocks. It's also reactive - changing a transform block in the chain automatically updates all transform blocks, and charts that follow.
- 🚀 Blazing-fast performance with WebAssembly-based DuckDB and PRQL
- 🔍 Intuitive data exploration with a visual, top-down pipeline of data transformations and visualizations
- 🧠 AI-powered transformation block to help with fast data manipulation
- 🔒 Privacy-first design: run Pretzel AI locally or host it yourself for full control over your data
- 📊 Upcoming features: Local LLM support, API calls, in-browser Python support with Pyodide, save and share workflows securely and canvas-based table rendering
- Demo video
- Getting started
- Optional Configuration
- Implemented Transformation Blocks
- Known Bugs
- Contact
Pretzel.mp4
The easiest way to use Pretzel is to visit https://pretzelai.github.io
Since Pretzel doesn't have a backend, you can easily install it as a Chrome app and it will work even without internet (for those long flights!)
-
Visit https://pretzelai.github.io in Chrome
-
Click the install app icon
- Now you can launch Pretzel as a standalone app. It will also work offline, though it may error if you try to use some internet feature (like the AI Block). Just close it and open it again to fix it.
To run Pretzel locally, follow these steps:
-
Clone the repository:
git clone https://github.com/pretzelai/pretzelai.git
-
Install dependencies:
cd pretzelai npm install
-
Start the development server:
npm run start
-
Open your browser and navigate to
http://localhost:3000
To host Pretzel, follow these steps (it's just a static website!):
- Build the app
npm run build
- Upload the contents of the
dist
folder to your hosting. This is what you can find live at https://pretzelai.github.io
- Bug report box: Update
/src/lib/config.ts
with your PostHog config to let users report bugs directly on the website - AI Endpoint: Deploy a cloud function to provide an AI endpoint for users without an OpenAI API key. Check the
cloud
folder for instructions.
- Upload: accepts CSV / Excel (XLSX) files
- Filter: string/number/date filtering including nested filters
- Ask AI: connects to OpenAI to transform user command to SQL
- Pivot: to create a pivot table (you can also go group-by using this - only use the
Rows
andValues
fields) - Sort: sorts ascending or descending on multiple columns
- Chart: supports line (including multi-line) charts, bar charts (grouped and stacked) and scatter plot
- Create column: make a new column with basic math or use PRQL functions
- Remove columns: easily add/remove columns with visual toggles
- Table: add a table in the middle of your workflow to visualize data in a intermediate step
- Download: export your transformed data in CSV
- Dates are sometimes parsed incorrectly - existing GH issue here
- Table panel is slow for large datasets. We're planning on moving to a canvas-based table.
- [Rare] Charts axes can sometimes not be ordered correctly
Please report any bugs you find in GitHub issues.
You can email us at founders [at] withpretzel [dot] com.
We also read all the feedback and bugs you report at the top left of https://pretzelai.github.io