diff --git a/openhands/usage/cli/gui-server.mdx b/openhands/usage/cli/gui-server.mdx index 5c896c65..adaaebdf 100644 --- a/openhands/usage/cli/gui-server.mdx +++ b/openhands/usage/cli/gui-server.mdx @@ -98,7 +98,7 @@ Press `Ctrl+C` in the terminal where you started the server to stop it gracefull | Feature | `openhands serve` | `openhands web` | |---------|-------------------|-----------------| -| Interface | Full web GUI | TUI in browser | +| Interface | Full web GUI | Terminal UI in browser | | Dependencies | Docker required | None | | Resources | Full container (~2GB) | Lightweight | | Features | All GUI features | CLI features only | diff --git a/openhands/usage/cli/quick-start.mdx b/openhands/usage/cli/quick-start.mdx index d0fe1dde..c86211d9 100644 --- a/openhands/usage/cli/quick-start.mdx +++ b/openhands/usage/cli/quick-start.mdx @@ -9,9 +9,9 @@ The OpenHands CLI provides multiple ways to interact with the OpenHands AI agent | Mode | Command | Best For | |------|---------|----------| -| [Terminal (TUI)](/openhands/usage/cli/terminal) | `openhands` | Interactive development | +| [Terminal (CLI)](/openhands/usage/cli/terminal) | `openhands` | Interactive development | | [Headless](/openhands/usage/cli/headless) | `openhands --headless` | Scripts & automation | -| [Web Interface](/openhands/usage/cli/web-interface) | `openhands web` | Browser-based TUI | +| [Web Interface](/openhands/usage/cli/web-interface) | `openhands web` | Browser-based terminal UI | | [GUI Server](/openhands/usage/cli/gui-server) | `openhands serve` | Full web GUI | | [IDE Integration](/openhands/usage/cli/ide/overview) | `openhands acp` | Zed, VS Code, JetBrains | diff --git a/openhands/usage/cli/terminal.mdx b/openhands/usage/cli/terminal.mdx index ad97f641..5a0ff86a 100644 --- a/openhands/usage/cli/terminal.mdx +++ b/openhands/usage/cli/terminal.mdx @@ -1,11 +1,11 @@ --- -title: Terminal (TUI) -description: Use OpenHands interactively in your terminal with the text-based user interface +title: Terminal (CLI) +description: Use OpenHands interactively in your terminal with the command-line interface --- ## Overview -The Terminal User Interface (TUI) is the default mode when you run `openhands`. It provides a rich, interactive experience directly in your terminal. +The Command Line Interface (CLI) is the default mode when you run `openhands`. It provides a rich, interactive experience directly in your terminal. ```bash openhands diff --git a/openhands/usage/cli/web-interface.mdx b/openhands/usage/cli/web-interface.mdx index 9d3e0fdc..ed87d11a 100644 --- a/openhands/usage/cli/web-interface.mdx +++ b/openhands/usage/cli/web-interface.mdx @@ -15,7 +15,7 @@ openhands web ``` -This is different from `openhands serve`, which launches the full GUI web application. The web interface runs the same TUI you see in the terminal, just in a browser. +This is different from `openhands serve`, which launches the full GUI web application. The web interface runs the same terminal UI experience you see in the terminal, just in a browser. ## Basic Usage @@ -97,7 +97,7 @@ openhands web --host 0.0.0.0 --port 8080 | Feature | `openhands web` | `openhands serve` | |---------|-----------------|-------------------| -| Interface | TUI in browser | Full web GUI | +| Interface | Terminal UI in browser | Full web GUI | | Dependencies | None | Docker required | | Resources | Lightweight | Full container | | Best for | Quick access | Rich GUI experience |