Enable all LLM tools in prompts (agent mode)#6956
Conversation
|
@microsoft-github-policy-service agree |
|
This was disabled intentionally. |
|
Some other references: https://code.visualstudio.com/updates/v1_99#_vs-code-extension-tools-in-agent-mode
microsoft/vscode#245129 While that language isn't 100% definitive, my testing has shown that to be required for an agent to call the tool. The screenshot I included with the checklists is triggered by the And it seems reasonable to assume that list is the authoritative set of tools available to the agent. |
alexr00
left a comment
There was a problem hiding this comment.
I removed a few tools that I don't think are useful.
|
/AzurePipelines run |
|
Azure Pipelines could not run because the pipeline triggers exclude this branch/path. |

Enables
canBeReferencedInPromptfor all LLM tools.Previously, these tools could only be used via the
@githubprchat participant. Only theactivePullRequesttool was available directly. Now, they can all be called with#syntax or invoked by agent mode.Perhaps this was disabled intentionally and there is additional polish to do. But this works and #6792 (comment) suggested that there was some confusion on whether this is live today (it's not).
Before
Using the web fetch tool works for public repositories, albeit with a lot of HTML noise as compared to feeding the model a JSON representation of the issue.
Agent mode is unable to fetch details about any issues in private repositories.
After
Related