diff --git a/app/src/components/Generation/FloatingGenerateBox.tsx b/app/src/components/Generation/FloatingGenerateBox.tsx
index a8d556a6..bd024859 100644
--- a/app/src/components/Generation/FloatingGenerateBox.tsx
+++ b/app/src/components/Generation/FloatingGenerateBox.tsx
@@ -316,7 +316,7 @@ export function FloatingGenerateBox({
- {isExpanded && (
+ {isExpanded && form.watch('engine') !== 'luxtts' && (
- (
-
-
-
-
- )}
- />
+
+
+
diff --git a/app/src/components/Generation/GenerationForm.tsx b/app/src/components/Generation/GenerationForm.tsx
index 2d9412f0..25709469 100644
--- a/app/src/components/Generation/GenerationForm.tsx
+++ b/app/src/components/Generation/GenerationForm.tsx
@@ -101,30 +101,33 @@ export function GenerationForm() {
)}
- (
-
- TTS Engine
-
-
- {field.value === 'luxtts' ? 'Fast, English-focused' : 'Multi-language'}
-
-
-
- )}
- />
+
+ Model
+
+
+ {form.watch('engine') === 'luxtts'
+ ? 'Fast, English-focused'
+ : 'Multi-language, two sizes'}
+
+
- {form.watch('engine') !== 'luxtts' && (
- (
-
- Model Size
-
- Larger models produce better quality
-
-
- )}
- />
- )}
-