You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ Verify "[Copilot chat in the IDE](https://github.com/settings/copilot)" is enabl
110
110
-`:CopilotChatLoad <name>?` - Load chat history from file
111
111
-`:CopilotChatDebugInfo` - Show debug information
112
112
-`:CopilotChatModels` - View and select available models. This is reset when a new instance is made. Please set your model in `init.lua` for persistence.
113
-
-`:CopilotChatModel` - View the currently selected model.
113
+
-`:CopilotChatAgents` - View and select available agents. This is reset when a new instance is made. Please set your agent in `init.lua` for persistence.
114
114
115
115
#### Commands coming from default prompts
116
116
@@ -202,7 +202,8 @@ Also see [here](/lua/CopilotChat/config.lua):
202
202
allow_insecure=false, -- Allow insecure server connections
203
203
204
204
system_prompt=prompts.COPILOT_INSTRUCTIONS, -- System prompt to use
205
-
model='gpt-4o', -- GPT model to use, see ':CopilotChatModels' for available models
205
+
model='gpt-4o', -- Default model to use, see ':CopilotChatModels' for available models
206
+
agent='copilot', -- Default agent to use, see ':CopilotChatAgents' for available agents (can be specified manually in prompt via @).
206
207
temperature=0.1, -- GPT temperature
207
208
208
209
question_header='## User ', -- Header to use for user questions
@@ -218,7 +219,7 @@ Also see [here](/lua/CopilotChat/config.lua):
218
219
clear_chat_on_new_prompt=false, -- Clears chat on every new prompt
219
220
highlight_selection=true, -- Highlight selection in the source buffer when in the chat window
220
221
221
-
context=nil, -- Default context to use, 'buffers', 'buffer' or none (can be specified manually in prompt via @).
222
+
context=nil, -- Default context to use, 'buffers', 'buffer' or none (can be specified manually in prompt via #).
222
223
history_path=vim.fn.stdpath('data') ..'/copilotchat_history', -- Default path to stored history
223
224
callback=nil, -- Callback to use when ask response is received
0 commit comments