aboutsummaryrefslogtreecommitdiff
path: root/src/client/apis/gpt/Summarization.ts
diff options
context:
space:
mode:
authorSophie Zhang <sophie_zhang@brown.edu>2023-02-27 17:16:07 -0500
committerSophie Zhang <sophie_zhang@brown.edu>2023-02-27 17:16:07 -0500
commit08e15b05cd014f99726826c9db407e738040cdbb (patch)
tree39d6e57502b50a9dded3310c714fd73eb558c279 /src/client/apis/gpt/Summarization.ts
parented94cc8fb516455dbeea223d0fab25e4fb1c1d78 (diff)
feat: deleted unnecessary props from MarqueeAnnotator
Diffstat (limited to 'src/client/apis/gpt/Summarization.ts')
-rw-r--r--src/client/apis/gpt/Summarization.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/apis/gpt/Summarization.ts b/src/client/apis/gpt/Summarization.ts
index c0dcc0267..ba98ad591 100644
--- a/src/client/apis/gpt/Summarization.ts
+++ b/src/client/apis/gpt/Summarization.ts
@@ -10,7 +10,7 @@ const gptSummarize = async (text: string) => {
text += '.';
const model = 'text-curie-001'; // Most advanced: text-davinci-003
const maxTokens = 200;
- const temp = 0.8;
+ const temp = 0.5;
try {
const configuration = new Configuration({