fix: issue with alternate message when importing from folder and git (#1216)

This commit is contained in:
Anirban Kar
2025-01-29 22:16:58 +05:30
committed by GitHub
parent 7016111906
commit f5fbf421e9
3 changed files with 31 additions and 8 deletions

View File

@@ -91,6 +91,11 @@ ${escapeBoltTags(file.content)}
const messages = [filesMessage];
if (commandsMessage) {
messages.push({
role: 'user',
id: generateId(),
content: 'Setup the codebase and Start the application',
});
messages.push(commandsMessage);
}