Spaces:
Paused
Paused
Update flare-ui/src/app/components/chat/chat.component.html
Browse files
flare-ui/src/app/components/chat/chat.component.html
CHANGED
|
@@ -47,19 +47,34 @@
|
|
| 47 |
>
|
| 48 |
<mat-icon>chat</mat-icon>
|
| 49 |
Start Chat
|
| 50 |
-
</button>
|
|
|
|
| 51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
<button
|
| 53 |
mat-raised-button
|
| 54 |
color="accent"
|
| 55 |
(click)="startRealtimeChat()"
|
| 56 |
[disabled]="!selectedProject || !sttAvailable"
|
| 57 |
class="realtime-button"
|
|
|
|
| 58 |
>
|
| 59 |
<mat-icon>mic</mat-icon>
|
| 60 |
Real-time Chat
|
| 61 |
-
</button>
|
| 62 |
</mat-card-actions>
|
|
|
|
| 63 |
</mat-card>
|
| 64 |
</div>
|
| 65 |
|
|
|
|
| 47 |
>
|
| 48 |
<mat-icon>chat</mat-icon>
|
| 49 |
Start Chat
|
| 50 |
+
</button>
|
| 51 |
+
</mat-card-actions>
|
| 52 |
|
| 53 |
+
<mat-card-actions align="end">
|
| 54 |
+
<button
|
| 55 |
+
mat-raised-button
|
| 56 |
+
color="primary"
|
| 57 |
+
(click)="startChat()"
|
| 58 |
+
[disabled]="!selectedProject"
|
| 59 |
+
>
|
| 60 |
+
<mat-icon>chat</mat-icon>
|
| 61 |
+
Start Chat
|
| 62 |
+
</button>
|
| 63 |
+
|
| 64 |
+
<!-- YENİ BUTON -->
|
| 65 |
<button
|
| 66 |
mat-raised-button
|
| 67 |
color="accent"
|
| 68 |
(click)="startRealtimeChat()"
|
| 69 |
[disabled]="!selectedProject || !sttAvailable"
|
| 70 |
class="realtime-button"
|
| 71 |
+
matTooltip="Start real-time voice conversation"
|
| 72 |
>
|
| 73 |
<mat-icon>mic</mat-icon>
|
| 74 |
Real-time Chat
|
| 75 |
+
</button>
|
| 76 |
</mat-card-actions>
|
| 77 |
+
|
| 78 |
</mat-card>
|
| 79 |
</div>
|
| 80 |
|