Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openhands/usage/cli/gui-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
4 changes: 2 additions & 2 deletions openhands/usage/cli/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

Expand Down
6 changes: 3 additions & 3 deletions openhands/usage/cli/terminal.mdx
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions openhands/usage/cli/web-interface.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ openhands web
```

<Note>
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.
</Note>

## Basic Usage
Expand Down Expand Up @@ -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 |
Expand Down