Updating readme

This commit is contained in:
2026-05-25 20:27:21 -04:00
parent 933ddb2ce6
commit 357fc4139f
+10 -4
View File
@@ -38,10 +38,13 @@ A browser sidebar chat extension that connects to a self-hosted Ollama instance.
1. Click the ⚙ Settings button in the sidebar header 1. Click the ⚙ Settings button in the sidebar header
2. Set your **Ollama Base URL** (default: `http://localhost:11434`) 2. Set your **Ollama Base URL** (default: `http://localhost:11434`)
3. Click **Test Connection** — connected models will appear in the dropdowns 3. Click **Test Connection** — connected models will appear in the dropdowns
4. Set a **Default Chat Model** 4. Set a **Chat Title Model**
5. Set a **Default Chat Model**
6. (OPTIONAL) Set a **Embedded model**
5. Click **Save Settings** 5. Click **Save Settings**
If Ollama is behind a reverse proxy with bearer token auth, enter the token in the **Bearer Token** field. > [!NOTE]
> If Ollama is behind a reverse proxy with bearer token auth, enter the token in the **Bearer Token** field.
--- ---
@@ -50,9 +53,8 @@ If Ollama is behind a reverse proxy with bearer token auth, enter the token in t
### Chat ### Chat
- Streaming responses with stop, regenerate, and edit - Streaming responses with stop, regenerate, and edit
- Thinking/reasoning block support (collapsed by default) - Thinking/reasoning block support
- Full markdown rendering with syntax-highlighted code blocks - Full markdown rendering with syntax-highlighted code blocks
- Token metrics per response (tokens, tok/s, duration)
### Context ### Context
@@ -114,6 +116,10 @@ If Ollama is behind a reverse proxy with bearer token auth, enter the token in t
## Project structure ## Project structure
``` ```
├── .gitignore # gitignore
├── LICENSE.md # MIT License
├── README.md # Readme file
├── PrivacyPolicyForWebStore # Privacy Policy to publish to webstores
├── background.js # Service worker — message routing, stream relay ├── background.js # Service worker — message routing, stream relay
├── content.js # Content script — page text extraction ├── content.js # Content script — page text extraction
├── sidepanel.html # Sidebar UI ├── sidepanel.html # Sidebar UI