Skip to content

Playground

Local only

The Apogee documentation platform bundles a JupyterHub container for local use. It is not part of this public site — run it on your own machine.

Run the notebooks locally

Bash
git clone https://github.com/Digital-Codigos/apogee-framework
cd apogee-framework
make docs-up

Then open http://localhost:8080/jupyter/ and sign in:

  • User: demo (or alice / bob)
  • Password: apogee

JupyterLab opens with the Apogee modules (apogee-core, apogee-ai-rag, …) pre-mounted at /srv/apogee/modules/ and already on PYTHONPATH. Ready-to-run notebooks live at /srv/apogee/app-tests-docs/globaltrust-bank/notebooks/.

Quick smoke test

Open a new Python 3 notebook and paste:

Python
from apogee_ai_rag import RagType
print(list(RagType))

If this prints the list of supported RAG variants, your environment is ready.

Why a server, not WASM?

apogee-ai-rag depends on native drivers for Postgres/pgvector, MongoDB, Qdrant, FAISS, etc. WASM-based notebooks (JupyterLite/Pyodide) cannot run those, so the local platform uses a real JupyterHub container.