Spaces:
Building
Building
Update flare-ui/src/app/components/chat/chat.component.html
Browse files
flare-ui/src/app/components/chat/chat.component.html
CHANGED
@@ -26,6 +26,16 @@
|
|
26 |
<div *ngIf="!ttsAvailable" class="tts-hint">
|
27 |
TTS is not configured. Please configure a TTS engine in Environment settings.
|
28 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
</mat-card-content>
|
30 |
|
31 |
<mat-card-actions align="end">
|
|
|
26 |
<div *ngIf="!ttsAvailable" class="tts-hint">
|
27 |
TTS is not configured. Please configure a TTS engine in Environment settings.
|
28 |
</div>
|
29 |
+
|
30 |
+
<mat-checkbox
|
31 |
+
[(ngModel)]="useSTT"
|
32 |
+
[disabled]="!sttAvailable"
|
33 |
+
class="stt-checkbox">
|
34 |
+
Use STT
|
35 |
+
</mat-checkbox>
|
36 |
+
<div *ngIf="!sttAvailable" class="stt-hint">
|
37 |
+
STT is not configured. Please configure an STT engine in Environment settings.
|
38 |
+
</div>
|
39 |
</mat-card-content>
|
40 |
|
41 |
<mat-card-actions align="end">
|