diff options
author | bobzel <zzzman@gmail.com> | 2025-02-13 10:19:35 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-02-13 10:19:35 -0500 |
commit | 8ec3055971ed3d79289e90c1fc2d0db5df131fe5 (patch) | |
tree | a73089d6f75855bdd5cadc2129658032b8f87431 /src/client/apis/gpt/GPT.ts | |
parent | fed9d4964c3d7074f9e78d873e2d5b08dcac6c13 (diff) |
trying to cleanup GPTpopup
Diffstat (limited to 'src/client/apis/gpt/GPT.ts')
-rw-r--r-- | src/client/apis/gpt/GPT.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/apis/gpt/GPT.ts b/src/client/apis/gpt/GPT.ts index 1894bb4df..dc4607b94 100644 --- a/src/client/apis/gpt/GPT.ts +++ b/src/client/apis/gpt/GPT.ts @@ -187,7 +187,6 @@ const gptAPICall = async (inputTextIn: string, callType: GPTCallType, prompt?: s max_tokens: opts.maxTokens, }); lastResp = response.choices[0].message.content ?? ''; - console.log('RESP:' + lastResp); return lastResp; } catch (err) { console.log(err); |