From d4aa189cee73eab4931f8341f5fcfe48684dd9e0 Mon Sep 17 00:00:00 2001
From: Dustin Loring
Date: Sat, 14 Dec 2024 19:40:37 -0500
Subject: [PATCH 1/2] ui-ux: Renamed feature
Enhancement - on feature tab Change 'Enable Local Models' to 'Experimental Providers'
---
app/components/settings/features/FeaturesTab.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/components/settings/features/FeaturesTab.tsx b/app/components/settings/features/FeaturesTab.tsx
index 9c9e4a00..88dd4d4b 100644
--- a/app/components/settings/features/FeaturesTab.tsx
+++ b/app/components/settings/features/FeaturesTab.tsx
@@ -24,7 +24,7 @@ export default function FeaturesTab() {
Disclaimer: Experimental features may be unstable and are subject to change.
- Enable Local Models
+ Experimental Providers
From 5893629306d1af61d885978aae5fb9ce64ca3ada Mon Sep 17 00:00:00 2001
From: Dustin Loring
Date: Sat, 14 Dec 2024 19:43:43 -0500
Subject: [PATCH 2/2] ui-ux: combined optional features
on features tab combined (debug info and event logs) into 'Debug Features'
---
app/components/settings/features/FeaturesTab.tsx | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/app/components/settings/features/FeaturesTab.tsx b/app/components/settings/features/FeaturesTab.tsx
index 88dd4d4b..0ef7a5da 100644
--- a/app/components/settings/features/FeaturesTab.tsx
+++ b/app/components/settings/features/FeaturesTab.tsx
@@ -4,17 +4,19 @@ import { useSettings } from '~/lib/hooks/useSettings';
export default function FeaturesTab() {
const { debug, enableDebugMode, isLocalModel, enableLocalModels, eventLogs, enableEventLogs } = useSettings();
+
+ const handleToggle = (enabled: boolean) => {
+ enableDebugMode(enabled);
+ enableEventLogs(enabled);
+ };
+
return (
Optional Features
- Debug Info
-
-
-
- Event Logs
-
+ Debug Features
+