Last active
May 20, 2026 16:15
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "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