Replies: 1 comment
-
Is this available for JetBrains products also? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This guide will help you verify that your custom model is being correctly selected and used in VS Code, and provide guidance for reverting back to the base model on a per-user basis, rather than deleting your custom model for everyone.
Verifying Custom Model Selection
VS Code exposes information about the models available to you and the custom model the IDE has selected in the Copilot Logs. From the command palette (
F1
orctrl
+shift
+p
on windows,cmd
+shift
+p
on macos) you can find theGitHub Copilot: Open Logs
command:This will open a log view at the bottom of the window, which will show the models available to your GitHub account:
Custom models have the format
copilot-prod-finetune-centralus.{organization}-{hash}
, so in this case a custom model for thegithub
organization is available, as well as the base model, titledcopilot-codex
. You can verify that the correct model is being used by checking the logs after performing a completion:Overriding Model Selection
If you would like to override the model selection to explicitly use the base model rather than your custom model, this can be done in your user or workspace settings JSON. Again open the command palette, and search for
Preferences: Open Workspace Settings (JSON)
.This will open the settings.json file for your IDE workspace, and you can change the model you're using by setting the value:
Beta Was this translation helpful? Give feedback.
All reactions