Skip to content

Commit 443e665

Browse files
authored
Redundant information in the markdown table (#6434)
Fixes #6361
1 parent 79c93f9 commit 443e665

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/lm/tools/displayIssuesTool.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@ export type DisplayIssuesParameters = SearchToolResult;
1717
type IssueColumn = keyof IssueSearchResultItem;
1818

1919
const LLM_FIND_IMPORTANT_COLUMNS_INSTRUCTIONS = `Instructions:
20-
You are an expert on GitHub issues. You can help the user identify the most important columns for rendering issues based on a query for issues. Include a column related to the sort value, if given. Output a newline separated list of columns only, max 4 columns. List the columns in the order they should be displayed. Don't change the casing. Here are the possible columns:
20+
You are an expert on GitHub issues. You can help the user identify the most important columns for rendering issues based on a query for issues:
21+
- Include a column related to the sort value, if given.
22+
- Output a newline separated list of columns only, max 4 columns.
23+
- List the columns in the order they should be displayed.
24+
- Don't change the casing.
25+
- Don't include columns that will all have the same value for all the resulting issues.
26+
Here are the possible columns:
2127
`;
2228

2329
export class DisplayIssuesTool extends ToolBase<DisplayIssuesParameters> {

0 commit comments

Comments
 (0)