Skip to content

Instantly share code, notes, and snippets.

@Seefer
Last active May 20, 2026 16:15
Show Gist options
  • Select an option

  • Save Seefer/dceee201c3b01227d6f58db14a9221fe to your computer and use it in GitHub Desktop.

Select an option

Save Seefer/dceee201c3b01227d6f58db14a9221fe to your computer and use it in GitHub Desktop.
VS Code Insiders Custom Endpoint config for adding LM Studio local LLMs to Copilot Chat UI
[
{
"name": "LM Studio",
"vendor": "customendpoint",
"apiType": "chat-completions",
"models": [
{
"id": "qwen/qwen3.6-27b",
"name": "Qwen 3.6 27B",
"url": "http://127.0.0.1:1234/v1/chat/completions",
"toolCalling": true,
"vision": true,
"streaming": true,
"maxInputTokens": 50000,
"maxOutputTokens": 16384,
"headers": {},
"env": []
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment