Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d9f39d7

Browse filesBrowse files
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
Copy full SHA for d9f39d7

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Collapse file

‎assistant/src/index.ts‎

Copy file name to clipboardExpand all lines: assistant/src/index.ts
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.