Merge pull request #4 from Huftierchen/main

fixed typo in vsconfig get for api endpoint
This commit is contained in:
Nathan Hedge 2024-01-09 14:23:29 -06:00 committed by GitHub
commit d3124189e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ let responsePreview: boolean | undefined;
function updateVSConfig() {
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
apiSystemMessage = VSConfig.get("system message");
numPredict = VSConfig.get("max tokens predicted") || 500;