diff --git a/studio/frontend/src/features/chat/api/chat-adapter.ts b/studio/frontend/src/features/chat/api/chat-adapter.ts
index 45e172bcd4..8997570271 100644
--- a/studio/frontend/src/features/chat/api/chat-adapter.ts
+++ b/studio/frontend/src/features/chat/api/chat-adapter.ts
@@ -182,6 +182,7 @@ export function createOpenAIStreamAdapter(): ChatModelAdapter {
top_p: params.topP,
max_tokens: params.maxTokens,
top_k: params.topK,
+ min_p: params.minP,
repetition_penalty: params.repetitionPenalty,
image_base64: imageBase64,
...(useAdapter === undefined ? {} : { use_adapter: useAdapter }),
diff --git a/studio/frontend/src/features/chat/chat-settings-sheet.tsx b/studio/frontend/src/features/chat/chat-settings-sheet.tsx
index f61f3329e0..900a82a652 100644
--- a/studio/frontend/src/features/chat/chat-settings-sheet.tsx
+++ b/studio/frontend/src/features/chat/chat-settings-sheet.tsx
@@ -300,6 +300,14 @@ export function ChatSettingsPanel({
step={1}
onChange={set("topK")}
/>
+