diff --git a/options.js b/options.js index 87f6290..25f7ce6 100644 --- a/options.js +++ b/options.js @@ -44,6 +44,8 @@ chrome.storage.sync.get("huggingfaceApiKey", (data) => { chrome.storage.sync.get("otherService", (data) => { if (data.otherService) { document.getElementById("otherServiceUrl").value = data.otherService; + } else { + document.getElementById("otherServiceUrl").value = "https://api-inference.huggingface.co/models/bigcode/starcoderbase/" } });