diff --git a/src/interface/web/app/settings/page.tsx b/src/interface/web/app/settings/page.tsx index 534a87a7..1de28216 100644 --- a/src/interface/web/app/settings/page.tsx +++ b/src/interface/web/app/settings/page.tsx @@ -842,6 +842,80 @@ export default function SettingsView() { +
+
Models
+
+ {userConfig.chat_model_options.length > 0 && ( + + Chat + +

Pick the chat model to generate text responses

+ +
+ + {!userConfig.is_active && ( +

Subscribe to switch model

+ )} +
+
+ )} + {userConfig.search_model_options.length > 0 && ( + + Search + +

Pick the search model to find your documents

+ +
+ + +
+ )} + {userConfig.paint_model_options.length > 0 && ( + + Paint + +

Pick the paint model to generate image responses

+ +
+ + {!userConfig.is_active && ( +

Subscribe to switch model

+ )} +
+
+ )} + {userConfig.voice_model_options.length > 0 && ( + + Voice + +

Pick the voice model to generate speech responses

+ +
+ + {!userConfig.is_active && ( +

Subscribe to switch model

+ )} +
+
+ )} +
+
Clients
@@ -981,80 +1055,6 @@ export default function SettingsView() {
-
-
Models
-
- {userConfig.chat_model_options.length > 0 && ( - - Chat - -

Pick the chat model to generate text responses

- -
- - {!userConfig.is_active && ( -

Subscribe to switch model

- )} -
-
- )} - {userConfig.search_model_options.length > 0 && ( - - Search - -

Pick the search model to find your documents

- -
- - -
- )} - {userConfig.paint_model_options.length > 0 && ( - - Paint - -

Pick the paint model to generate image responses

- -
- - {!userConfig.is_active && ( -

Subscribe to switch model

- )} -
-
- )} - {userConfig.voice_model_options.length > 0 && ( - - Voice - -

Pick the voice model to generate speech responses

- -
- - {!userConfig.is_active && ( -

Subscribe to switch model

- )} -
-
- )} -
-