-
Notifications
You must be signed in to change notification settings - Fork 124
Support Using Copilot Claude 3.5 #332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Copilot Chat and Autocomplete (featured in
|
According to the GitHub documentation, both Jetbrains IDEs and VS Code support changing the completion model. |
+1, Would love claude 3.7 |
+1, vote for Claude Sonnet 3.7 |
I use JetBrains products on a regular basis and have been keeping up with Copilot changes and @pidgeon777 is correct, copilot.lua is only for autocomplete and not chat. Here is a screenshot of the autocomplete configuration (which copilot.lua does): And here is the chat configuration: Also explained here: Sorry! |
@AntoineGS thanks for your information. Can we config the option to choose between |
I created a PR to add support for it (#373). If you want to use it before it is merged you can change your configuration to something like this: return {
-- "zbirenbaum/copilot.lua",
"AntoineGS/copilot.lua",
branch = "gpt4o",
cmd = "Copilot",
event = "InsertEnter",
config = function()
require("copilot").setup {
copilot_model = "gpt-4o-copilot",
}
end,
} The notable changes being the url, branch and copilot_model parameter. Please note that you will need to change it back once merged as the branch will be deleted. |
Closing, the changes have been merged to this repo so I would recommend switching back to the original path! |
@AntoineGS appreciate that! Just see the official announcement from GitHub https://github.blog/changelog/2025-03-06-gpt-4o-copilot-march-flight-is-ready-for-takeoff/ |
With the current implementation of this plugin, is it possible to configure use of the newly added Claude 3.5 model?
See the copilot documentation here
The text was updated successfully, but these errors were encountered: