fixed typo in vsconfig get for api endpoint

This commit is contained in:
Huftierchen 2024-01-09 14:32:24 +01:00
parent 5153544346
commit 217c7c787d
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ let responsePreview: boolean | undefined;
function updateVSConfig() { function updateVSConfig() {
VSConfig = vscode.workspace.getConfiguration("ollama-autocoder"); VSConfig = vscode.workspace.getConfiguration("ollama-autocoder");
apiEndpoint = VSConfig.get("apiEndpoint") || "http://localhost:11434/api/generate"; apiEndpoint = VSConfig.get("endpoint") || "http://localhost:11434/api/generate";
apiModel = VSConfig.get("model") || "openhermes2.5-mistral:7b-q4_K_M"; // The model I tested with apiModel = VSConfig.get("model") || "openhermes2.5-mistral:7b-q4_K_M"; // The model I tested with
apiSystemMessage = VSConfig.get("system message"); apiSystemMessage = VSConfig.get("system message");
numPredict = VSConfig.get("max tokens predicted") || 500; numPredict = VSConfig.get("max tokens predicted") || 500;