File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export class GPTController {
4242 content : prompt + questions ,
4343 attachments : [ { file_id : fileID , tools : [ { type : "file_search" } ] } ] ,
4444 } ;
45- console . log ( `Thread Message: ${ threadMessage } ` )
45+ // console.log(`Thread Message: ${threadMessage}`)
4646 // Create the three threads for each paper
4747 let threadResults : GPTData [ ] = [ ]
4848 for ( let i = 0 ; i < 3 ; i ++ ) {
@@ -66,7 +66,7 @@ export class GPTController {
6666 if ( message . content [ 0 ] . type == "text" ) {
6767 result = message . content [ 0 ] . text . value ; // TODO: parse this result, then verify with user or add to database
6868 console . log ( `${ message . role } > ${ result } ` ) ;
69- console . log ( ) ;
69+ // console.log();
7070 // TODO: push the parsed results to the threadResults as a GPTData object
7171 threadResults . push ( )
7272 }
You can’t perform that action at this time.
0 commit comments