Backend
After completing the steps in the General Getting Started section, you can start the backend server in two ways:
Interactive Mode
Starts an interactive IPython shell with preloaded context for debugging or exploratory tasks.
uv run --directory backend ipython -i interactive.py
Use this mode if you want to explore the application, call internal services, or inspect the state of the system in an interactive environment.
Standalone Mode
Starts the backend as a regular long-running process.
uv run --directory backend standalone.py
Use this mode for running the backend as a service, locally or in development environments.