Skip to content

Commit d9f39d7

Browse files
author
Tulga Tsogtgerel
committed
fix: set isAnswerOnly to false to actually implement changes
Change isAnswerOnly from true to false in auggie.prompt() call. When isAnswerOnly is true, Auggie only provides a text description of what it would do without actually making file changes. With isAnswerOnly: false, Auggie will: - Actually edit the files - Make the requested changes - Allow git to detect and commit the changes
1 parent 1bb3c66 commit d9f39d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assistant/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ Please implement the requested changes based on the comment and PR context above
310310

311311
// Send the instruction to Auggie
312312
core.info('💬 Sending instruction to Auggie...');
313-
const response = await auggie.prompt(instruction, { isAnswerOnly: true });
313+
const response = await auggie.prompt(instruction, { isAnswerOnly: false });
314314

315315
core.info('📝 Auggie response:');
316316
core.info(response);

0 commit comments

Comments
 (0)