fixed typo in vsconfig get for api endpoint
This commit is contained in:
parent
5153544346
commit
217c7c787d
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue