open-notebook/CLAUDE.md
Luis Novo eac837d555
feat(podcasts): model registry integration, credential passthrough & new features (#632)
* feat(podcasts): integrate model registry for profiles and credential passthrough

Replace loose provider/model string fields with record<model> references
in podcast profiles, enabling credential passthrough to podcast-creator.

Backend:
- EpisodeProfile: outline_llm, transcript_llm (record<model>) replace
  outline_provider/outline_model strings. New language field (BCP 47).
- SpeakerProfile: voice_model (record<model>) replaces tts_provider/
  tts_model strings. Per-speaker voice_model override support.
- Migration 14: schema changes making legacy fields optional, adding new
  record<model> fields.
- Data migration (migration.py): auto-converts legacy profiles to model
  registry references on startup. Idempotent.
- podcast_commands.py: resolves credentials for ALL profiles before
  calling podcast-creator.
- New /api/languages endpoint (pycountry + babel) with BCP 47 locale
  codes (pt-BR, en-US, etc.).

Frontend:
- Episode/speaker profile forms use ModelSelector instead of manual
  provider/model dropdowns.
- Language dropdown with BCP 47 codes in episode profile form.
- Per-speaker TTS voice model override in speaker profile form.
- "Templates" tab renamed to "Profiles".
- Setup required badge on unconfigured profiles.
- i18n updated across all 8 locales.

Closes #486, closes #552

* fix(i18n): remove unused legacy podcast provider/model keys

Remove 10 orphaned i18n keys across all 8 locales that were left behind
after replacing manual provider/model dropdowns with ModelSelector.

* fix: address review violations in podcast model registry

- P1: Remove profiles with failed model resolution from dicts to prevent
  podcast-creator validation errors on unrelated profiles
- P2: Use centralized QUERY_KEYS.languages instead of inline key
- P3: Fix ISO 639-1 → BCP 47 in model field description and CLAUDE.md
- P3: Update "templates" → "profiles" in locale string values (all 8)

* chore: bump version to 1.8.0
2026-02-27 11:06:47 -03:00

10 KiB

Open Notebook - Root CLAUDE.md

This file provides architectural guidance for contributors working on Open Notebook at the project level.

Project Overview

Open Notebook is an open-source, privacy-focused alternative to Google's Notebook LM. It's an AI-powered research assistant enabling users to upload multi-modal content (PDFs, audio, video, web pages), generate intelligent notes, search semantically, chat with AI models, and produce professional podcasts—all with complete control over data and choice of AI providers.

Key Values: Privacy-first, multi-provider AI support, fully self-hosted option, open-source transparency.


Three-Tier Architecture

┌─────────────────────────────────────────────────────────┐
│              Frontend (React/Next.js)                    │
│              frontend/ @ port 3000                       │
├─────────────────────────────────────────────────────────┤
│ - Notebooks, sources, notes, chat, podcasts, search UI  │
│ - Zustand state management, TanStack Query (React Query)│
│ - Shadcn/ui component library with Tailwind CSS         │
└────────────────────────┬────────────────────────────────┘
                         │ HTTP REST
┌────────────────────────▼────────────────────────────────┐
│              API (FastAPI)                              │
│              api/ @ port 5055                           │
├─────────────────────────────────────────────────────────┤
│ - REST endpoints for notebooks, sources, notes, chat    │
│ - LangGraph workflow orchestration                      │
│ - Job queue for async operations (podcasts)             │
│ - Multi-provider AI provisioning via Esperanto          │
└────────────────────────┬────────────────────────────────┘
                         │ SurrealQL
┌────────────────────────▼────────────────────────────────┐
│         Database (SurrealDB)                            │
│         Graph database @ port 8000                      │
├─────────────────────────────────────────────────────────┤
│ - Records: Notebook, Source, Note, ChatSession, Credential│
│ - Relationships: source-to-notebook, note-to-source     │
│ - Vector embeddings for semantic search                 │
└─────────────────────────────────────────────────────────┘

Useful sources

User documentation is at @docs/

Tech Stack

Frontend (frontend/)

  • Framework: Next.js 16 (React 19)
  • Language: TypeScript
  • State Management: Zustand
  • Data Fetching: TanStack Query (React Query)
  • Styling: Tailwind CSS + Shadcn/ui
  • Build Tool: Webpack (via Next.js)
  • i18n compatible: All front-end changes must also consider the translation keys

API Backend (api/ + open_notebook/)

  • Framework: FastAPI 0.104+
  • Language: Python 3.11+
  • Workflows: LangGraph state machines
  • Database: SurrealDB async driver
  • AI Providers: Esperanto library (8+ providers: OpenAI, Anthropic, Google, Groq, Ollama, Mistral, DeepSeek, xAI)
  • Job Queue: Surreal-Commands for async jobs (podcasts)
  • Logging: Loguru
  • Validation: Pydantic v2
  • Testing: Pytest

Database

  • SurrealDB: Graph database with built-in embedding storage and vector search
  • Schema Migrations: Automatic on API startup via AsyncMigrationManager

Additional Services

  • Content Processing: content-core library (file/URL extraction)
  • Prompts: AI-Prompter with Jinja2 templating
  • Podcast Generation: podcast-creator library
  • Embeddings: Multi-provider via Esperanto

Architecture Highlights

1. Async-First Design

  • All database queries, graph invocations, and API calls are async (await)
  • SurrealDB async driver with connection pooling
  • FastAPI handles concurrent requests efficiently

2. LangGraph Workflows

  • source.py: Content ingestion (extract → embed → save)
  • chat.py: Conversational agent with message history
  • ask.py: Search + synthesis (retrieve relevant sources → LLM)
  • transformation.py: Custom transformations on sources
  • All use provision_langchain_model() for smart model selection

3. Multi-Provider AI

  • Esperanto library: Unified interface to 8+ AI providers
  • Credential system: Individual encrypted credential records per provider; models link to credentials for direct config
  • ModelManager: Factory pattern with fallback logic; uses credential config when available, env vars as fallback
  • Smart selection: Detects large contexts, prefers long-context models
  • Override support: Per-request model configuration

4. Database Schema

  • Automatic migrations: AsyncMigrationManager runs on API startup
  • SurrealDB graph model: Records with relationships and embeddings
  • Vector search: Built-in semantic search across all content
  • Transactions: Repo functions handle ACID operations

5. Authentication

  • Current: Simple password middleware (insecure, dev-only)
  • Production: Replace with OAuth/JWT (see CONFIGURATION.md)

Important Quirks & Gotchas

API Startup

  • Migrations run automatically on startup; check logs for errors
  • Must start API before UI: UI depends on API for all data
  • SurrealDB must be running: API fails without database connection

Frontend-Backend Communication

  • Base API URL: Configured in .env.local (default: http://localhost:5055)
  • CORS enabled: Configured in api/main.py (allow all origins in dev)
  • Rate limiting: Not built-in; add at proxy layer for production

LangGraph Workflows

  • Blocking operations: Chat/podcast workflows may take minutes; no timeout
  • State persistence: Uses SQLite checkpoint storage in /data/sqlite-db/
  • Model fallback: If primary model fails, falls back to cheaper/smaller model

Podcast Generation

  • Async job queue: podcast_service.py submits jobs but doesn't wait
  • Track status: Use /commands/{command_id} endpoint to poll status
  • TTS failures: Fall back to silent audio if speech synthesis fails

Content Processing

  • File extraction: Uses content-core library; supports 50+ file types
  • URL handling: Extracts text + metadata from web pages
  • Large files: Content processing is sync; may block API briefly

Component References

See dedicated CLAUDE.md files for detailed guidance:


Documentation Map


Testing Strategy

  • Unit tests: tests/test_domain.py, test_models_api.py
  • Graph tests: tests/test_graphs.py (workflow integration)
  • Utils tests: tests/test_utils.py, tests/test_chunking.py, tests/test_embedding.py
  • Run all: uv run pytest tests/
  • Coverage: Check with pytest --cov

Common Tasks

Add a New API Endpoint

  1. Create router in api/routers/feature.py
  2. Create service in api/feature_service.py
  3. Define schemas in api/models.py
  4. Register router in api/main.py
  5. Test via http://localhost:5055/docs

Add a New LangGraph Workflow

  1. Create open_notebook/graphs/workflow_name.py
  2. Define StateDict and node functions
  3. Build graph with .add_node() / .add_edge()
  4. Invoke in service: graph.ainvoke({"input": ...}, config={"..."})
  5. Test with sample data in tests/

Add Database Migration

  1. Create migrations/XXX_description.surql
  2. Write SurrealQL schema changes
  3. Create migrations/XXX_description_down.surql (optional rollback)
  4. API auto-detects on startup; migration runs if newer than recorded version

Deploy to Production

  1. Review CONFIGURATION.md for security settings
  2. Use make docker-release for multi-platform image
  3. Push to Docker Hub / GitHub Container Registry
  4. Deploy docker compose --profile multi up
  5. Verify migrations via API logs

Support & Community


Last Updated: February 2026 | Project Version: 1.8.0