Try a better enhanced prompt prompt

This commit is contained in:
Matt Rubens
2024-12-31 23:52:08 -08:00
parent 64702e94f6
commit 621655aacb
3 changed files with 2 additions and 18 deletions

View File

@@ -127,22 +127,6 @@ export class Cline {
}
}
async enhancePrompt(promptText: string): Promise<string> {
if (!promptText) {
throw new Error("No prompt text provided")
}
const prompt = `Generate an enhanced version of this prompt (reply with only the enhanced prompt, no bullet points): ${promptText}`
// Check if the API handler supports completePrompt
if (this.api instanceof OpenRouterHandler) {
return this.api.completePrompt(prompt)
}
// Otherwise just return the prompt as is
return prompt;
}
// Storing task to disk for history
private async ensureTaskDirectoryExists(): Promise<string> {