diff --git a/servers/nextjs/app/settings/SettingPage.tsx b/servers/nextjs/app/settings/SettingPage.tsx index 956e4f21..65dd7769 100644 --- a/servers/nextjs/app/settings/SettingPage.tsx +++ b/servers/nextjs/app/settings/SettingPage.tsx @@ -554,6 +554,11 @@ const SettingsPage = () => { {/* Model selection dropdown - show if models are available or if there's a selected model */} {((customModelsChecked && customModels.length > 0) || llmConfig.CUSTOM_MODEL) && (
+
+

+ Important: Only models with function calling capabilities (tool calls) or JSON schema support will work. +

+
diff --git a/servers/nextjs/components/Home.tsx b/servers/nextjs/components/Home.tsx index 9ebd6b81..3acd340d 100644 --- a/servers/nextjs/components/Home.tsx +++ b/servers/nextjs/components/Home.tsx @@ -639,6 +639,11 @@ export default function Home() { {/* Model selection dropdown - only show if models are available */} {customModelsChecked && customModels.length > 0 && (
+
+

+ Important: Only models with function calling capabilities (tool calls) or JSON schema support will work. +

+