I've found the vscode copilot error "No lowest priority node found" to be about a context overflow somewhere in the chain "inference engine" -> "LLM" -> copilot. Some/all of the workarounds you can try when that happens: Reduce/disable agent tools Increase the input window in chatLanguageModels.json, eg. { "id": "gemma-4-12b-it-qat-q4_0", "name": "gemma-4-12b-it-qat-q4_0", "url": "http://localhost:11434", "toolCalling": … Continue reading VScode copilot: No lowest priority node found
Tag: vscode
Restricting VS Code terminal commands to an approved commands list
Motivation If you've ever needed to restrict which commands can be run inside a VS Code integrated terminal - nowadays mainly to prevent agents from wreaking havoc - you can achieve this using a combination of VS Code terminal profiles and PowerShell's PSReadLine module. I'm not sure is/how this works with other terminals, however I've … Continue reading Restricting VS Code terminal commands to an approved commands list
