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: doc/CopilotChat.txt
+48-4Lines changed: 48 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -137,7 +137,7 @@ COMMANDS ~
137
137
- `:CopilotChatLoad <name>?` - Load chat history from file
138
138
- `:CopilotChatDebugInfo` - Show debug information
139
139
- `:CopilotChatModels` - View and select available models. This is reset when a new instance is made. Please set your model in `init.lua` for persistence.
140
-
- `:CopilotChatModel` - View the currently selected model.
140
+
- `:CopilotChatAgents` - View and select available agents. This is reset when a new instance is made. Please set your agent in `init.lua` for persistence.
141
141
142
142
143
143
COMMANDS COMING FROM DEFAULT PROMPTS
@@ -151,6 +151,49 @@ COMMANDS COMING FROM DEFAULT PROMPTS
151
151
- `:CopilotChatCommit` - Write commit message for the change with commitizen convention
152
152
153
153
154
+
MODELS, AGENTS AND CONTEXTS ~
155
+
156
+
157
+
MODELS
158
+
159
+
You can list available models with `:CopilotChatModels` command. Model
160
+
determines the AI model used for the chat. Default models are:
161
+
162
+
- `gpt-4o` - This is the default Copilot Chat model. It is a versatile, multimodal model that excels in both text and image processing and is designed to provide fast, reliable responses. It also has superior performance in non-English languages. Gpt-4o is hosted on Azure.
163
+
- `claude-3.5-sonnet` - This model excels at coding tasks across the entire software development lifecycle, from initial design to bug fixes, maintenance to optimizations. GitHub Copilot uses Claude 3.5 Sonnet hosted on Amazon Web Services.
164
+
- `o1-preview` - This model is focused on advanced reasoning and solving complex problems, in particular in math and science. It responds more slowly than the gpt-4o model. You can make 10 requests to this model per day. o1-preview is hosted on Azure.
165
+
- `o1-mini` - This is the faster version of the o1-preview model, balancing the use of complex reasoning with the need for faster responses. It is best suited for code generation and small context operations. You can make 50 requests to this model per day. o1-mini is hosted on Azure.
0 commit comments