diff --git a/studio/frontend/src/features/chat/chat-settings-sheet.tsx b/studio/frontend/src/features/chat/chat-settings-sheet.tsx
index 508194c061..a7969b6c7b 100644
--- a/studio/frontend/src/features/chat/chat-settings-sheet.tsx
+++ b/studio/frontend/src/features/chat/chat-settings-sheet.tsx
@@ -44,9 +44,10 @@ const BUILTIN_PRESETS: Preset[] = [
name: "Creative",
params: {
...defaultInferenceParams,
- temperature: 1.2,
- topP: 0.95,
- topK: 80,
+ temperature: 1.5,
+ topP: 1.0,
+ topK: 0,
+ minP: 0.1,
repetitionPenalty: 1.0,
},
},
@@ -54,9 +55,10 @@ const BUILTIN_PRESETS: Preset[] = [
name: "Precise",
params: {
...defaultInferenceParams,
- temperature: 0.2,
- topP: 0.7,
- topK: 20,
+ temperature: 0.1,
+ topP: 0.95,
+ topK: 80,
+ minP: 0.01,
repetitionPenalty: 1.0,
},
},
@@ -307,14 +309,16 @@ export function ChatSettingsPanel({
max={1}
step={0.05}
onChange={set("topP")}
+ displayValue={params.topP === 1 ? "Off" : undefined}
/>