Agent-readable wiki
Presenton Plain-Language Wiki
Presenton is a fully self-hosted, open-source AI presentation generator. You give it a topic or a document, it calls an LLM of your choice, and hands back a polished, editable slide deck — no SaaS subscription required.
Pages
- Explain It Simply: What Is Presenton?What this app does in one sentence, the simplest useful analogy, and the three ideas every reader should hold on to before diving deeper.
- Bring Your Own Brain: How LLM Providers WorkPresenton does not pick an AI for you. This page explains the 15 supported providers, how the app selects a default model per provider, and what BYOK (bring your own key) means in practice.
- From Prompt to Slides: The Generation PipelineStep by step: how a user's topic travels through outline generation, layout selection, per-slide content calls, image fetching, and final assembly — all coordinated by the FastAPI backend.
- What You Can Feed It: Documents, PDFs & ImagesPresenton can read uploaded PDFs, Office files, images (via OCR), and plain text to ground the presentation in real content. This page covers the document loader, LiteParse integration, and image generation service.
- Slide Templates & Layouts: How Designs Get ChosenPresenton ships with named design templates (general, pitch-deck, Education, Code, etc.) and per-slide layouts. The LLM picks a layout index for each slide based on content rules baked into the system prompt.
- The Python Backend: FastAPI ServerThe FastAPI server is the engine room: it hosts the REST + SSE API, manages the SQLite/Alembic database, runs background export tasks, validates LLM responses, and serves static assets. Every LLM call, slide write, and export goes through here.
- The Browser UI: Next.js FrontendThe Next.js app is the face the user sees: a dashboard to manage decks, an outline editor, a live slide editor with Tiptap rich text, and an export flow (PDF, PPTX, Google Slides). Routes map directly to stages of the generation workflow.
- The Desktop App: Electron WrapperThe Electron app bundles the FastAPI backend (as a sidecar process) and the Next.js frontend into a single installable for Mac, Windows, and Linux — no Docker needed. This page explains how the build scripts wire everything together.
Complete Markdown
The complete agent-readable Markdown files are published separately from this HTML page.