Skip to content

Enable all LLM tools in prompts (agent mode) #6956

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3287,7 +3287,7 @@
"displayName": "%languageModelTools.github-pull-request_issue_fetch.displayName%",
"modelDescription": "Get a GitHub issue/PR's details as a JSON object.",
"icon": "$(info)",
"canBeReferencedInPrompt": false,
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -3330,7 +3330,7 @@
"displayName": "%languageModelTools.github-pull-request_notification_fetch.displayName%",
"modelDescription": "Get a GitHub notification's details as a JSON object.",
"icon": "$(info)",
"canBeReferencedInPrompt": false,
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"properties": {
Expand All @@ -3356,7 +3356,7 @@
"displayName": "%languageModelTools.github-pull-request_issue_summarize.displayName%",
"modelDescription": "Summarizes a GitHub issue or pull request. A summary is a great way to describe an issue or pull request.",
"icon": "$(info)",
"canBeReferencedInPrompt": false,
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -3431,7 +3431,7 @@
"displayName": "%languageModelTools.github-pull-request_notification_summarize.displayName%",
"modelDescription": "Summarizes a GitHub notification. A summary is a great way to describe a notification.",
"icon": "$(info)",
"canBeReferencedInPrompt": false,
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -3543,7 +3543,7 @@
"displayName": "%languageModelTools.github-pull-request_suggest-fix.displayName%",
"modelDescription": "Summarize and suggest a fix for a GitHub issue.",
"icon": "$(info)",
"canBeReferencedInPrompt": false,
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -3590,7 +3590,7 @@
"displayName": "%languageModelTools.github-pull-request_formSearchQuery.displayName%",
"modelDescription": "Converts natural language to a GitHub search query. Should ALWAYS be called before doing a search.",
"icon": "$(search)",
"canBeReferencedInPrompt": false,
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -3634,7 +3634,7 @@
"displayName": "%languageModelTools.github-pull-request_doSearch.displayName%",
"modelDescription": "Execute a GitHub search given a well formed GitHub search query. Call github-pull-request_formSearchQuery first to get good search syntax and pass the exact result in as the 'query'.",
"icon": "$(search)",
"canBeReferencedInPrompt": false,
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -3680,7 +3680,7 @@
"displayName": "%languageModelTools.github-pull-request_renderIssues.displayName%",
"modelDescription": "Render issue items from an issue search in a markdown table. The markdown table will be displayed directly to the user by the tool. No further display should be done after this!",
"icon": "$(paintcan)",
"canBeReferencedInPrompt": false,
"canBeReferencedInPrompt": true,
"inputSchema": {
"type": "object",
"properties": {
Expand Down