Skip to content

Commit fdf500d

Browse files
committed
subtle changes to prints
1 parent 786b914 commit fdf500d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/gpt-controller.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

test/testfiles/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)