Skip to content

Commit

Permalink
Fix codeEditor llmHistoryFile name change
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcampagnolitg committed Sep 30, 2024
1 parent 8ce7011 commit 9737fa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/swe/codeEditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class CodeEditor {
// as we want all the 'system' files in one place.
const llmHistoryFolder = join(systemDir(), 'aider/llm-history');
await promisify(fs.mkdir)(llmHistoryFolder, { recursive: true });
const llmHistoryFile = `${llmHistoryFolder}/${getFormattedDate}__${agentContext().agentId}}`;
const llmHistoryFile = `${llmHistoryFolder}/${getFormattedDate()}__${agentContext().agentId}}`;

logger.info(`LLM history file ${llmHistoryFile}`);
try {
Expand Down

0 comments on commit 9737fa9

Please sign in to comment.