Mycelos logo mycelos

Getting Started

Prerequisites

Installation

Clone the repository and install in development mode:

git clone https://github.com/your-org/mycelos.git
cd mycelos
pip install -e ".[dev]"

First Run

Initialize the database, start the Gateway, and open the Web UI:

# Initialize Mycelos (creates database, config, master key)
mycelos init

# Start the Gateway server
mycelos serve

# Open in your browser
open http://localhost:9100

Quick Chat (CLI Mode)

If you prefer the terminal, start an interactive session directly:

mycelos chat

CLI mode talks directly to the LLM without the Gateway. The Web UI requires mycelos serve to be running.