Skip to content

Commit

Permalink
Anthropic: decrease recommendedTopK to 32 (#4587)
Browse files Browse the repository at this point in the history
  • Loading branch information
spolu authored and flvndvd committed May 26, 2024
1 parent e843292 commit 7bf41ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions types/src/front/lib/assistant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const CLAUDE_3_OPUS_DEFAULT_MODEL_CONFIG = {
modelId: CLAUDE_3_OPUS_2024029_MODEL_ID,
displayName: "Claude 3 Opus",
contextSize: 200000,
recommendedTopK: 64,
recommendedTopK: 32,
largeModel: true,
description:
"Anthropic's Claude 3 Opus model, most powerful model for highly complex tasks.",
Expand All @@ -59,7 +59,7 @@ export const CLAUDE_3_SONNET_DEFAULT_MODEL_CONFIG = {
modelId: CLAUDE_3_SONNET_2024029_MODEL_ID,
displayName: "Claude 3 Sonnet",
contextSize: 200000,
recommendedTopK: 64,
recommendedTopK: 32,
largeModel: true,
description:
"Anthropic Claude 3 Sonnet model, targeting balance between intelligence and speed for enterprise workloads.",
Expand All @@ -71,7 +71,7 @@ export const CLAUDE_3_HAIKU_DEFAULT_MODEL_CONFIG = {
modelId: CLAUDE_3_HAIKU_20240307_MODEL_ID,
displayName: "Claude 3 Haiku",
contextSize: 200000,
recommendedTopK: 64,
recommendedTopK: 32,
largeModel: true,
description:
"Anthropic Claude 3 Haiku model, fastest and most compact model for near-instant responsiveness.",
Expand Down

0 comments on commit 7bf41ec

Please sign in to comment.