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
4 changes: 4 additions & 0 deletions docs/source/quick-start/launching-ui.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ Running this command will produce the following expected output:
### Launch the NeMo Agent Toolkit User Interface
After the NeMo Agent toolkit server starts, launch the web user interface. Launching the UI requires that Node.js v18+ is installed. Instructions for downloading and installing Node.js can be found in the official [Node.js documentation](https://nodejs.org/en/download).

For comprehensive information about the NeMo Agent Toolkit UI, including setup instructions, configuration options, and UI components documentation, see:
- [NeMo Agent Toolkit UI README](https://github.com/NVIDIA/NeMo-Agent-Toolkit-UI/blob/main/README.md) - Complete UI documentation and setup guide
- [UI Components Documentation](https://github.com/NVIDIA/NeMo-Agent-Toolkit-UI/tree/main/docs/ui) - Detailed information about components, features, and interface elements

```bash
cd external/nat-ui
npm install
Expand Down
8 changes: 8 additions & 0 deletions examples/front_ends/simple_auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ authentication to use. Particularly, this example highlights how to use the `OAu
with a demonstrative `OAuth 2.0` provider and then return information from the authorization server's demonstrative `/api/me` endpoint
which provides information about the authenticated user.

## Installation

First, install the `simple_auth` example:

```bash
uv pip install -e examples/front_ends/simple_auth
```

## How the OAuth2.0 Authorization‑Code Flow Works

1. **Agent launches login** – it sends the user’s browser to the OAuth provider’s
Expand Down