presenton / presenton
- воскресенье, 24 мая 2026 г. в 00:00:05
Open-Source AI Presentation Generator and API (Gamma, Beautiful AI, Decktopus Alternative)
Quickstart · Docs · Youtube · Discord
No SaaS lock-in · No forced subscriptions · Full control over models and data
What makes Presenton different?
Tip
Star us! A ⭐ shows your support and encourages us to keep building! 😇
Create AI-powered presentations using your own model provider (BYOK) or run everything locally on your own machine for full control and data privacy.
Available Platforms
| Platform | Architecture | Package | Download |
|---|---|---|---|
| macOS | Apple Silicon / Intel | .dmg |
Download ↗ |
| Windows | x64 | .exe |
Download ↗ |
| Linux | x64 | .deb |
Download ↗ |
Deploy to Cloud Providers
Presenton gives you complete control over your AI presentation workflow. Choose your models, customize your experience, and keep your data private.
Run Presenton directly in your browser — no installation, no setup required. Start creating presentations instantly from anywhere.
You can run Presenton in two ways: Docker for a one-command setup without installing a local dev stack, or the Electron desktop app for a native app experience (ideal for development or offline use).
Option 1: Electron (Desktop App)
Run Presenton as a native desktop application. LLM and image provider (API keys, etc.) can be configured in the app. The same environment variables used for Docker apply when running the bundled backend.
Prerequisites: Node.js (LTS), npm, Python 3.11, and
uv
(for the shared FastAPI backend in servers/fastapi).
Setup (First Time)
cd electron
npm run setup:envThis installs Node dependencies, runs uv sync in the FastAPI
server, and installs Next.js dependencies.
Run in Development
npm run devThis compiles TypeScript and starts Electron. The backend and UI run locally inside the desktop window.
Build Distributable (Optional) To create installers for Windows, macOS, or Linux:
npm run build:all
npm run dist
Output files are written to electron/dist
(or as configured in your electron-builder settings).
Option 2: Docker
Start Presenton Linux/MacOS (Bash/Zsh Shell):
docker run -it --name presenton -p 5000:80 -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestWindows (PowerShell):
docker run -it --name presenton -p 5000:80 -v "${PWD}\app_data:/app_data" ghcr.io/presenton/presenton:latestOpen Presenton
Open http://localhost:5000 in the browser of your choice to use Presenton.
Note: You can replace
5000with any other port number of your choice to run Presenton on a different port number.
The lists below match the environment variables forwarded in this repository’s docker-compose.yml (production, production-gpu, development, and development-gpu). Put values in a .env file next to the compose file, or export them before docker compose up. The Electron app backend can read the same names when run outside Docker.
Other optional variables exist in code (for example advanced Mem0 paths, LiteParse runners, or FAST_API_INTERNAL_URL when Next.js and FastAPI are not same-origin); they are not wired in docker-compose.yml. Supported names are discoverable from servers/fastapi/utils/get_env.py and the Next.js server utilities under servers/nextjs/.
gpt-4.1).models/gemini-2.0-flash).gemini-2.5-flash).VERTEX_API_KEY).2024-10-21).us-east-1).us.anthropic.claude-3-5-haiku-20241022-v1:0).BEDROCK_API_KEY is not set).accounts/fireworks/models/llama-v3p1-8b-instruct).https://api.fireworks.ai/inference/v1).openai/gpt-oss-20b).https://api.together.ai/v1).claude-3-5-sonnet-20241022).http://localhost:1234/v1; /v1 is auto-appended when omitted).openai/gpt-oss-20b).Use when LLM is ollama:
http://host.docker.internal:11434 from Docker).llama3.2:3b).start.js): optional install + ollama serve. Default false (development / production compose).Mem0 uses local Qdrant + SQLite (OSS); memory is scoped per presentation.
By default the Docker runtime now points Mem0 at a local Ollama-compatible LLM endpoint, so it no longer needs an OpenAI key just to initialize. If you want to use OpenAI instead, set MEM0_LLM_BASE_URL/MEM0_LLM_API_KEY to your OpenAI-compatible endpoint and key.
Docker images install the default spaCy model (en_core_web_sm) during build so Mem0 can start without extra setup on each run.
| Variable | Purpose |
|---|---|
| MEM0_ENABLED | true/false (compose default true). |
| MEM0_LLM_MODEL | Mem0 LLM model name (compose default llama3.1:latest or OLLAMA_MODEL). |
| MEM0_LLM_API_KEY | Mem0 LLM API key placeholder for OpenAI-compatible clients (compose default ollama). |
| MEM0_LLM_BASE_URL | Mem0 LLM base URL (compose default OLLAMA_URL or http://host.docker.internal:11434). |
| MEM0_DIR | Root directory (compose default /app_data/mem0). |
| MEM0_EMBEDDER_PROVIDER | Embedder backend (compose default fastembed). |
| MEM0_EMBEDDER_MODEL | Model id (compose default BAAI/bge-small-en-v1.5). |
| MEM0_EMBEDDING_DIMS | Vector size (compose default 384). |
| MEM0_SPACY_MODEL | Optional spaCy model override (default en_core_web_sm). |
| MEM0_REQUIRE_SPACY_MODEL | Keep as true (default). Set to false only if you intentionally want Mem0 to run without spaCy lemmatization. |
| Variable | Purpose |
|---|---|
| LITEPARSE_DPI | OCR render DPI (compose default 120). |
| LITEPARSE_NUM_WORKERS | Worker count (compose default 1). |
true for all services so migrations run on startup.These variables match docker-compose.yml. IMAGE_PROVIDER selects the backend (pexels, pixabay, gemini_flash, nanobanana_pro, dall-e-3, gpt-image-1.5, comfyui, open_webui). Use OPENAI_API_KEY for OpenAI image modes and GOOGLE_API_KEY for Gemini image modes (same keys as the LLM section).
standard).medium)./v1/images/* endpoint (LiteLLM, Azure, vLLM Gateways, etc.).Presenton uses a single admin account per instance. Credentials live in app_data (hashed; see userConfig.json). Pass these with -e or via .env for compose:
Examples
docker run -it --name presenton -p 5000:80 -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestdocker run -it --name presenton -p 5000:80 -e AUTH_USERNAME=admin -e AUTH_PASSWORD=changeme123 -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestdocker run -it --name presenton -p 5000:80 -e AUTH_USERNAME=admin -e AUTH_PASSWORD=changeme123 -v "${PWD}\app_data:/app_data" ghcr.io/presenton/presenton:latestdocker stop presenton && docker rm presenton && docker run -it --name presenton -p 5000:80 -e AUTH_USERNAME=admin -e AUTH_PASSWORD=newcred456 -e AUTH_OVERRIDE_FROM_ENV=true -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestdocker stop presenton && docker rm presenton && docker run -it --name presenton -p 5000:80 -e RESET_AUTH=true -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestdocker stop presenton && docker rm presenton && docker run -it --name presenton -p 5000:80 -e AUTH_USERNAME=admin -e AUTH_PASSWORD=changeme123 -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestManual reset: stop the container, edit ./app_data/userConfig.json, delete AUTH_USERNAME, AUTH_PASSWORD_HASH, and AUTH_SECRET_KEY, save, and start again.
Sign out from the app: Settings → Other → Sign out.
Note: LLM and image variables above are forwarded from
docker-compose.ymlwhen set in.env.
Docker Run Examples by Provider
Same variables as compose; use -e instead of .env when running docker run directly.
Using OpenAI
docker run -it --name presenton -p 5000:80 -e LLM="openai" -e OPENAI_API_KEY="******" -e IMAGE_PROVIDER="dall-e-3" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestUsing Google
docker run -it --name presenton -p 5000:80 -e LLM="google" -e GOOGLE_API_KEY="******" -e IMAGE_PROVIDER="gemini_flash" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestUsing Vertex AI (API key mode)
docker run -it --name presenton -p 5000:80 -e LLM="vertex" -e VERTEX_API_KEY="******" -e VERTEX_MODEL="gemini-2.5-flash" -e IMAGE_PROVIDER="gemini_flash" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestUsing Azure OpenAI
docker run -it --name presenton -p 5000:80 -e LLM="azure" -e AZURE_OPENAI_API_KEY="******" -e AZURE_OPENAI_MODEL="gpt-4.1" -e AZURE_OPENAI_API_VERSION="2024-10-21" -e AZURE_OPENAI_ENDPOINT="https://YOUR-RESOURCE.openai.azure.com" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestUsing Amazon Bedrock (AWS keys)
docker run -it --name presenton -p 5000:80 -e LLM="bedrock" -e BEDROCK_REGION="us-east-1" -e BEDROCK_AWS_ACCESS_KEY_ID="******" -e BEDROCK_AWS_SECRET_ACCESS_KEY="******" -e BEDROCK_MODEL="us.anthropic.claude-3-5-haiku-20241022-v1:0" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestUsing Fireworks
docker run -it --name presenton -p 5000:80 -e LLM="fireworks" -e FIREWORKS_API_KEY="******" -e FIREWORKS_MODEL="accounts/fireworks/models/llama-v3p1-8b-instruct" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestUsing Together AI
docker run -it --name presenton -p 5000:80 -e LLM="together" -e TOGETHER_API_KEY="******" -e TOGETHER_MODEL="openai/gpt-oss-20b" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestUsing Ollama
docker run -it --name presenton -p 5000:80 -e LLM="ollama" -e OLLAMA_MODEL="llama3.2:3b" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="*******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestUsing Anthropic
docker run -it --name presenton -p 5000:80 -e LLM="anthropic" -e ANTHROPIC_API_KEY="******" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestUsing LM Studio (local)
docker run -it --name presenton -p 5000:80 -e LLM="lmstudio" -e LMSTUDIO_BASE_URL="http://host.docker.internal:1234" -e LMSTUDIO_MODEL="openai/gpt-oss-20b" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestUsing OpenAI Compatible LLM API
docker run -it -p 5000:80 -e CAN_CHANGE_KEYS="false" -e LLM="custom" -e CUSTOM_LLM_URL="http://*****" -e CUSTOM_LLM_API_KEY="*****" -e CUSTOM_MODEL="llama3.2:3b" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="********" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestRunning Presenton with GPU Support
To use GPU acceleration with Ollama models, you need to install and configure the NVIDIA Container Toolkit. This allows Docker containers to access your NVIDIA GPU.
Once the NVIDIA Container Toolkit is installed and configured, you can run Presenton with GPU support by adding the --gpus=all flag:
docker run -it --name presenton --gpus=all -p 5000:80 -e LLM="ollama" -e OLLAMA_MODEL="llama3.2:3b" -e IMAGE_PROVIDER="pexels" -e PEXELS_API_KEY="*******" -e CAN_CHANGE_KEYS="false" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestUsing an OpenAI-Compatible Image Provider
This routes all slide image requests through your OpenAI-compatible gateway (LiteLLM, Azure, vLLM, etc.) while keeping the text LLM configuration independent:
docker run -it --name presenton -p 5000:80 -e IMAGE_PROVIDER="openai_compatible" -e OPENAI_COMPAT_IMAGE_BASE_URL="https://proxy.example.com/v1" -e OPENAI_COMPAT_IMAGE_API_KEY="******" -e OPENAI_COMPAT_IMAGE_MODEL="gpt-image-1" -v "./app_data:/app_data" ghcr.io/presenton/presenton:latestGenerate Presentation
Endpoint: /api/v1/ppt/presentation/generate
Method: POST
Content-Type: application/json
Authentication (HTTP Basic):
All /api/v1/ routes except /api/v1/auth/* require authentication. Send your Presenton admin username and password (same as the web UI, or AUTH_USERNAME / AUTH_PASSWORD when preseeding Docker). With curl, put them right after -u as -u USERNAME:PASSWORD — that is HTTP Basic auth and sets Authorization: Basic … for you. Replace the sample username:password below with your real credentials.
Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
content |
string | Yes | Main content used to generate the presentation. |
slides_markdown |
string[] | null | No | Provide custom slide markdown instead of auto-generation. |
instructions |
string | null | No | Additional generation instructions. |
tone |
string | No |
Text tone (default: "default").
Options: default, casual, professional,
funny, educational, sales_pitch
|
verbosity |
string | No |
Content density (default: "standard").
Options: concise, standard, text-heavy
|
web_search |
boolean | No | Enable web search grounding (default: false). |
n_slides |
integer | No | Number of slides to generate (default: 8). |
language |
string | No | Presentation language (default: "English"). |
template |
string | No | Template name (default: "general"). |
include_table_of_contents |
boolean | No | Include table of contents slide (default: false). |
include_title_slide |
boolean | No | Include title slide (default: true). |
files |
string[] | null | No |
Files to use in generation.
Upload first via /api/v1/ppt/files/upload.
|
export_as |
string | No |
Export format (default: "pptx").
Options: pptx, pdf
|
Response
{
"presentation_id": "string",
"path": "string",
"edit_path": "string"
}Example (curl + HTTP Basic auth with -u)
curl -u username:password \
-X POST http://localhost:5000/api/v1/ppt/presentation/generate \
-H "Content-Type: application/json" \
-d '{
"content": "Introduction to Machine Learning",
"n_slides": 5,
"language": "English",
"template": "general",
"export_as": "pptx"
}'Example Response
{
"presentation_id": "d3000f96-096c-4768-b67b-e99aed029b57",
"path": "/app_data/d3000f96-096c-4768-b67b-e99aed029b57/Introduction_to_Machine_Learning.pptx",
"edit_path": "/presentation?id=d3000f96-096c-4768-b67b-e99aed029b57"
}Note: Prepend your server’s root URL topathandedit_pathto construct valid links.
Documentation & Tutorials
Track the public roadmap on GitHub Projects: https://github.com/orgs/presenton/projects/2