Yera Run

The run command loads a single agent from a Python file, starts the Yera dev server, and opens the UI directly on that agent's chat page. It is the single-file counterpart to dev, which discovers all agents under a directory. Use run when you want to target one specific agent file without scanning a whole project tree.

yera run

Run a single app from a Python file and serve the dev UI.

yera run APP_PATH [OPTIONS]

Arguments

APP_PATH
type: str (required)

Path to the Python file defining the app.

Options

--app-id
type: str = None

app id to run when the file defines multiple apps.

--port
type: int = 8991

Bind port.

--host
type: str = '127.0.0.1'

Bind address (not a URL).

--hub
type: str = None

Hub name override for deploy.

--log-events
type: bool = False
aliases: --no-log-events
negative: --no-log-events

Stream raw events to stdout.

--browser
type: bool = True
aliases: --no-browser
negative: --no-browser

Open the dev UI in a browser on startup.

--dev-ui
type: bool = False
aliases: --no-dev-ui
negative: --no-dev-ui

Enable the experimental dev UI.