diff --git a/src/apps/chat/components/appbar/Dropdowns.tsx b/src/apps/chat/components/appbar/Dropdowns.tsx
index cd510bcb9..d9d98f314 100644
--- a/src/apps/chat/components/appbar/Dropdowns.tsx
+++ b/src/apps/chat/components/appbar/Dropdowns.tsx
@@ -44,6 +44,8 @@ export function Dropdowns(props: {
const handleSystemPurposeChange = (event: any, value: SystemPurposeId | null) =>
value && props.conversationId && setSystemPurposeId(props.conversationId, value);
+ const handleOpenLLMOptions = () => chatLLMId && openLLMOptions(chatLLMId);
+
// filter-out hidden models
const llmItems: DropdownItems = {};
for (const llm of llms)
@@ -58,7 +60,8 @@ export function Dropdowns(props: {
placeholder='Model'
appendOption={<>
-
+ )}