File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -453,7 +453,7 @@ Below are all available configuration options with their default values:
453
453
454
454
system_prompt = ' COPILOT_INSTRUCTIONS' , -- System prompt to use (can be specified manually in prompt via /).
455
455
456
- model = ' gpt-4o-2024-11-20 ' , -- Default model to use, see ':CopilotChatModels' for available models (can be specified manually in prompt via $).
456
+ model = ' gpt-4.1 ' , -- Default model to use, see ':CopilotChatModels' for available models (can be specified manually in prompt via $).
457
457
agent = ' copilot' , -- Default agent to use, see ':CopilotChatAgents' for available agents (can be specified manually in prompt via @).
458
458
context = nil , -- Default context or array of contexts to use (can be specified manually in prompt via #).
459
459
sticky = nil , -- Default sticky prompt or array of sticky prompts to use at start of every new chat.
@@ -761,7 +761,7 @@ require("CopilotChat").load("my_debugging_session")
761
761
762
762
-- Use custom context and model
763
763
require (" CopilotChat" ).ask (" How can I optimize this?" , {
764
- model = " gpt-4o " ,
764
+ model = " gpt-4.1 " ,
765
765
context = {" buffer" , " git:staged" }
766
766
})
767
767
```
Original file line number Diff line number Diff line change @@ -512,7 +512,7 @@ Below are all available configuration options with their default values:
512
512
513
513
system_prompt = 'COPILOT_INSTRUCTIONS', -- System prompt to use (can be specified manually in prompt via /).
514
514
515
- model = 'gpt-4o-2024-11-20 ', -- Default model to use, see ':CopilotChatModels' for available models (can be specified manually in prompt via $).
515
+ model = 'gpt-4.1 ', -- Default model to use, see ':CopilotChatModels' for available models (can be specified manually in prompt via $).
516
516
agent = 'copilot' , -- Default agent to use, see ':CopilotChatAgents' for available agents (can be specified manually in prompt via @).
517
517
context = nil, -- Default context or array of contexts to use (can be specified manually in prompt via #).
518
518
sticky = nil, -- Default sticky prompt or array of sticky prompts to use at start of every new chat.
@@ -827,7 +827,7 @@ EXAMPLE USAGE *CopilotChat-example-usage*
827
827
828
828
-- Use custom context and model
829
829
require("CopilotChat").ask("How can I optimize this?", {
830
- model = "gpt-4o ",
830
+ model = "gpt-4.1 ",
831
831
context = {"buffer", "git:staged"}
832
832
})
833
833
<
You can’t perform that action at this time.
0 commit comments