aboutsummaryrefslogtreecommitdiff
path: root/src/client/apis/gpt/GPT.ts
diff options
context:
space:
mode:
authoralyssaf16 <alyssa_feinberg@brown.edu>2024-07-23 14:06:11 -0400
committeralyssaf16 <alyssa_feinberg@brown.edu>2024-07-23 14:06:11 -0400
commite82c95293bb2d9db32fc9901f57f1997b74597c1 (patch)
tree0c67a0a66fd7d80f1853720400bbf9e5684cb843 /src/client/apis/gpt/GPT.ts
parent0b2a8c0d718940ddc06a966d4e027a79bb06ed6e (diff)
labeling work
Diffstat (limited to 'src/client/apis/gpt/GPT.ts')
-rw-r--r--src/client/apis/gpt/GPT.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/apis/gpt/GPT.ts b/src/client/apis/gpt/GPT.ts
index 1bec2fb11..3550b6216 100644
--- a/src/client/apis/gpt/GPT.ts
+++ b/src/client/apis/gpt/GPT.ts
@@ -97,6 +97,7 @@ const gptAPICall = async (inputTextIn: string, callType: GPTCallType, prompt?: a
max_tokens: opts.maxTokens,
});
lastResp = response.choices[0].message.content ?? '';
+ console.log('RESP:' + lastResp);
return lastResp;
} catch (err) {
console.log(err);