Skip to main content

Nitro with ChatGPTBox

This guide demonstrates how to use Nitro on Web browser like an copilot on Web browser.

Installation

We'll use chatGPTBox for this setup.

Using chatGPTBox with Nitro

1. Start Nitro server

Open your terminal and run:

Run Nitro
nitro

2. Download Model

Download the Stealth 7B model with these commands:

Get a model
mkdir model && cd model
wget -O stealth-7b.gguf https://huggingface.co/janhq/stealth-v1.3-GGUF/resolve/main/stealth-v1.3.Q4_K_M.gguf

Explore more GGUF models at The Bloke.

3. Run the Model

To load the model, use the following command:

Load model to the server
curl http://localhost:3928/inferences/llamacpp/loadmodel \
-H 'Content-Type: application/json' \
-d '{
"llama_model_path": "model/stealth-7b.gguf",
"ctx_len": 512,
"ngl": 100,
}'

4. Configure chatGPTBox

Click the chatGPTBox icon in your browser to open the main menu.

Main menu chatGPTBox

In the API Mode section, switch to Custom Model.

Change the name to Stealth 7B and set the host to http://localhost:3928/v1/chat/completions

Use chatGPTBox

Your browser is now equipped with a copilot to help you on daily basis.

Web browser with chatGPTBox

For detailed guidance, visit the chatGPTBox guide

Shortcut

ShortcutDescription
Ctrl+BActivate chat dialog box on any page.
Alt+BSummarize any page via the right-click menu.
Ctrl+Shift+HOpen an independent conversation page.

Futher Usage

For convenient usage, you can utilize Jan, as it is integrated with Nitro.