Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ const CLASS_METHODS = [
},
{
nodeType:
"method_declaration with with generic params and generic return type",
"method_declaration with generic params and generic return type",
fileName: "typescript/classMethods.ts",
language: "TypeScript",
cursorPosition: { line: 24, character: 11 },
Expand Down
2 changes: 1 addition & 1 deletion core/commands/slash/built-in-legacy/draftIssue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const PROMPT = (
title: string,
) => `You will be asked to generate the body of a GitHub issue given a user request. You should follow these rules:
- Be descriptive but do not make up details
- If the the user request includes any code snippets that are relevant, reference them in code blocks
- If the user request includes any code snippets that are relevant, reference them in code blocks
- Describe step by step how to reproduce the problem
- Describe the ideal solution to the problem
- Describe the expected behavior after the issue has been resolved
Expand Down
2 changes: 1 addition & 1 deletion core/llm/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ export abstract class BaseLLM implements ILLM {
);
} else {
return new Error(
"You are using a Codestral API key, which is not compatible with the Mistral API. Please either obtain a Mistral API key, or use the the Codestral API by setting 'apiBase' to 'https://codestral.mistral.ai/v1' in config.json.",
"You are using a Codestral API key, which is not compatible with the Mistral API. Please either obtain a Mistral API key, or use the Codestral API by setting 'apiBase' to 'https://codestral.mistral.ai/v1' in config.json.",
);
}
}
Expand Down
Loading