From 0490b67e0ac8837f404b5b0aab839a56fcf51656 Mon Sep 17 00:00:00 2001 From: Jordan Wages Date: Tue, 8 Jul 2025 02:29:29 -0500 Subject: [PATCH] Fixing default URI --- options/options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options/options.js b/options/options.js index c17529a..1fc0a7f 100644 --- a/options/options.js +++ b/options/options.js @@ -82,7 +82,7 @@ document.addEventListener('DOMContentLoaded', async () => { typical_p: 1, tfs: 1 }; - document.getElementById('endpoint').value = defaults.endpoint || 'http://127.0.0.1:5000/v1/classify'; + document.getElementById('endpoint').value = defaults.endpoint || 'http://127.0.0.1:5000/v1/completions'; const templates = { openai: browser.i18n.getMessage('template.openai'),