diff --git a/components/multimodal-input.tsx b/components/multimodal-input.tsx index c601ff1..e314e43 100644 --- a/components/multimodal-input.tsx +++ b/components/multimodal-input.tsx @@ -323,7 +323,7 @@ function PureMultimodalInput({ /> - + {status === 'submitted' ? ( @@ -360,10 +360,14 @@ export const MultimodalInput = memo( function PureAttachmentsButton({ fileInputRef, status, + selectedModelId, }: { fileInputRef: React.MutableRefObject; status: UseChatHelpers['status']; + selectedModelId: string; }) { + const isReasoningModel = selectedModelId === 'chat-model-reasoning'; + return (