Skip to content

Commit

Permalink
fix: Simplify word generation prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
유미라 authored and 유미라 committed Dec 4, 2024
1 parent bb49ee3 commit 447d403
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions server/src/common/clova-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ export class ClovaClient {
`,
},
],
topP: 0.8,
topK: 0,
topP: 0.95,
topK: 50,
maxTokens: 256,
temperature: 0.8,
temperature: 0.9,
repeatPenalty: 5.0,
stopBefore: [],
includeAiFilters: true,
seed: Date.now(),
seed: Math.floor(Math.random() * 1000000),
};

try {
Expand Down

0 comments on commit 447d403

Please sign in to comment.