File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -259,4 +259,4 @@ type User {
259259 subscribedProjects : [Project ! ] @deprecated (reason : " Use projects with forkedFromId instead" )
260260 updatedAt : Date !
261261 username : String !
262- }
262+ }
Original file line number Diff line number Diff line change @@ -581,8 +581,6 @@ export async function summaryTool(
581581 input : ChatInputType ,
582582 context : AgentContext
583583) : Promise < void > {
584- console . log ( 'summaryTool called' ) ;
585-
586584 try {
587585 // Prepare code changes analysis
588586 const codeAnalysis = Object . entries ( context . modifiedFiles )
@@ -676,9 +674,8 @@ ${result.final_response
676674 . join ( '\n\n\n' ) }
677675` ;
678676 await saveFinalResponse ( formattedResponse , input , context ) ;
679- console . log ( 'Summary generated successfully' ) ;
680677 } catch ( error ) {
681- console . error ( 'Error in summaryTool:' , error ) ;
678+ toast . error ( 'Failed to generate summary' ) ;
682679 throw error ;
683680 }
684681}
You can’t perform that action at this time.
0 commit comments