> ## Documentation Index
> Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# UI

> Web UI management for PraisonAI

The `ui` command manages the PraisonAI web user interface.

<Note>
  Use `praisonai serve ui` for the unified command. The standalone `praisonai ui` still works but shows a deprecation warning.
</Note>

## Usage

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai serve ui [OPTIONS]
```

## Options

| Option     | Short | Description                 | Default     |
| ---------- | ----- | --------------------------- | ----------- |
| `--port`   | `-p`  | Port to run UI on           | `8082`      |
| `--host`   | `-h`  | Host to bind to             | `127.0.0.1` |
| `--public` |       | Make UI publicly accessible | `false`     |

## Examples

### Start UI

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai serve ui
```

### Start on custom port

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai serve ui --port 3000
```

### Make publicly accessible

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai serve ui --public --host 0.0.0.0
```

## See Also

* [Serve Commands](/docs/deploy/servers/serve) - All serve commands
* [Interactive TUI](/docs/cli/interactive-tui) - Terminal interface
