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
Adds integration with Github Marketplace models available through Azure ML API.
The models are fetched from the Azure catalog and exposed through the same
interface as regular Copilot models. This provides users with access to
additional experimental models while maintaining consistent UX.
The docs are updated to point to official Copilot model documentation and
marketplace models page rather than listing models inline.
Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
Copy file name to clipboardExpand all lines: README.md
+2-10Lines changed: 2 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -239,16 +239,8 @@ You can also set default sticky prompts in the configuration:
239
239
240
240
You can list available models with `:CopilotChatModels` command. Model determines the AI model used for the chat.
241
241
You can set the model in the prompt by using `$` followed by the model name or default model via config using `model` key.
242
-
Default models are:
243
-
244
-
-`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.
245
-
-`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. Claude is **not available everywhere** so if you do not see it, try github codespaces or VPN.
246
-
-`gemini-2.0-flash-001` - This model has strong coding, math, and reasoning capabilities that makes it well suited to assist with software development.
247
-
-`o1` - 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.
248
-
-`o3-mini` - This model is the next generation of reasoning models, following from o1 and o1-mini. The o3-mini model outperforms o1 on coding benchmarks with response times that are comparable to o1-mini, providing improved quality at nearly the same latency. It is best suited for code generation and small context operations. You can make 50 requests to this model every 12 hours.
249
-
250
-
For more information about models, see [here](https://docs.github.com/en/copilot/using-github-copilot/asking-github-copilot-questions-in-your-ide#ai-models-for-copilot-chat)
251
-
You can use more models from [here](https://github.com/marketplace/models) by using `@models` agent from [here](https://github.com/marketplace/models-github) (example: `@models Using Mistral-small, what is 1 + 11`)
242
+
For list of models supported by Copilot Chat see [here](https://docs.github.com/en/copilot/using-github-copilot/ai-models/changing-the-ai-model-for-copilot-chat#ai-models-for-copilot-chat).
243
+
This plugin also supports Github Marketplace Models. These have fairly low limits but are useful for experimentation. For more information see [here](https://github.com/marketplace/models).
prompt='> /COPILOT_GENERATE\n\nThere is a problem in this code. Rewrite the code to show it with the bug fixed.',
349
-
},
350
-
Optimize= {
351
-
prompt='> /COPILOT_GENERATE\n\nOptimize the selected code to improve performance and readability.',
352
-
},
353
-
Docs= {
354
-
prompt='> /COPILOT_GENERATE\n\nPlease add documentation comments to the selected code.',
355
-
},
356
-
Tests= {
357
-
prompt='> /COPILOT_GENERATE\n\nPlease generate tests for my code.',
358
-
},
359
-
Commit= {
360
-
prompt='> #git:staged\n\nWrite commit message for the change with commitizen convention. Make sure the title has maximum 50 characters and message is wrapped at 72 characters. Wrap the whole message in code block with language gitcommit.',
361
-
},
362
-
},
114
+
prompts=prompts,
363
115
364
116
-- default mappings
365
-
mappings= {
366
-
complete= {
367
-
insert='<Tab>',
368
-
},
369
-
close= {
370
-
normal='q',
371
-
insert='<C-c>',
372
-
},
373
-
reset= {
374
-
normal='<C-l>',
375
-
insert='<C-l>',
376
-
},
377
-
submit_prompt= {
378
-
normal='<CR>',
379
-
insert='<C-s>',
380
-
},
381
-
toggle_sticky= {
382
-
detail='Makes line under cursor sticky or deletes sticky line.',
383
-
normal='gr',
384
-
},
385
-
accept_diff= {
386
-
normal='<C-y>',
387
-
insert='<C-y>',
388
-
},
389
-
jump_to_diff= {
390
-
normal='gj',
391
-
},
392
-
quickfix_answers= {
393
-
normal='gqa',
394
-
},
395
-
quickfix_diffs= {
396
-
normal='gqd',
397
-
},
398
-
yank_diff= {
399
-
normal='gy',
400
-
register='"', -- Default register to use for yanking
401
-
},
402
-
show_diff= {
403
-
normal='gd',
404
-
full_diff=false, -- Show full diff instead of unified diff when showing diff window
0 commit comments