-
Notifications
You must be signed in to change notification settings - Fork 38.4k
Closed
Labels
Milestone
Description
Refs: https://github.com/microsoft/vscode-copilot/issues/13720, #243222, #246541
- anyOS @ulugbekna
- anyOS @hawkticehurst
Complexity: 4
This month we have streamlined and polished the chat input part. The new mental model is that the input field and everything above are about the "What do you want from the LM", this includes the prompts and all attachments aka context. The lower part is the "How do you talk to a LM", e.g which model, what mode, which tools etc. With that in mind test the following
- the "Add Context..." quick pick is better organised and helps you to pick tools, files, screen capture etc that are going be send along with the prompt
- make sure the "Add Context" quick pick sorting and grouping makes sense
- when typing a prompt you can reference attachments using the #-notation, like
#<file_name>. Make sure that- you get IntelliSense for them
- they are also rendered as attachment pills, but without the
xto remove them - they override an equal manually added attachment ("Add Context > Files & Folders > foo.ts" vs typing
#foo.ts)
For the How part make sure the things are in-sync, e.g
- in the chat input reference a tool like
#codebase, open the tools picker (lower left), and sure the What part updates when enabling/disabling this tool or all tools - pick a model that doesn't support images, check the "Add Context" that you don't see the Screenshot option
Reactions are currently unavailable