aboutsummaryrefslogtreecommitdiff
path: root/src/client/apis/gpt
diff options
context:
space:
mode:
authorSophie Zhang <sophie_zhang@brown.edu>2023-08-17 21:02:33 -0400
committerSophie Zhang <sophie_zhang@brown.edu>2023-08-17 21:02:33 -0400
commit1f44bed14529f8bfc280f714ffd794813c1b7a73 (patch)
tree3ca60a572a8e23fb19c0a6985e1d39b4e9c735e7 /src/client/apis/gpt
parent107f718199a5b0e15f62e5c7e7034b11047ff512 (diff)
baseline before changes
Diffstat (limited to 'src/client/apis/gpt')
-rw-r--r--src/client/apis/gpt/GPT.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/apis/gpt/GPT.ts b/src/client/apis/gpt/GPT.ts
index 6b4106f56..6bde7989b 100644
--- a/src/client/apis/gpt/GPT.ts
+++ b/src/client/apis/gpt/GPT.ts
@@ -39,7 +39,6 @@ const gptAPICall = async (inputText: string, callType: GPTCallType) => {
temperature: opts.temp,
prompt: `${opts.prompt}${inputText}`,
});
- // console.log(response.data.choices[0]);
return response.data.choices[0].text;
} catch (err) {
console.log(err);