Skip to content

Commit

Permalink
stt_service = STTService.soniox soniox
Browse files Browse the repository at this point in the history
  • Loading branch information
josancamon19 committed Sep 28, 2024
1 parent 4477581 commit e72cbbb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
15 changes: 7 additions & 8 deletions app/lib/pages/speech_profile/page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import 'package:friend_private/utils/other/temp.dart';
import 'package:friend_private/widgets/device_widget.dart';
import 'package:friend_private/widgets/dialog.dart';
import 'package:gradient_borders/box_borders/gradient_box_border.dart';
import 'package:intercom_flutter/intercom_flutter.dart';
import 'package:provider/provider.dart';
import 'package:url_launcher/url_launcher.dart';

class SpeechProfilePage extends StatefulWidget {
final bool onbording;
Expand Down Expand Up @@ -329,14 +329,13 @@ class _SpeechProfilePageState extends State<SpeechProfilePage> with TickerProvid
builder: (c) => getDialog(
context,
() => Navigator.pop(context),
() {
Navigator.pop(context);
launchUrl(Uri.parse(
'https://github.com/BasedHardware/Omi/releases/tag/v1.0.4-firmware'));
() async {
await Intercom.instance.displayArticle(
'9918118-updating-the-firmware-on-your-friend-device');
},
'Firmware Update Required',
'Please update your device firmware to set-up your speech profile.',
okButtonText: 'Do now',
'Device Update Required',
'Your current device has an old firmware version (1.0.2). Please check our guide on how to update it.',
okButtonText: 'View Guide',
),
barrierDismissible: false,
);
Expand Down
2 changes: 1 addition & 1 deletion backend/routers/transcribe.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ async def _websocket_util(
else:
stt_service = STTService.deepgram

stt_service = STTService.deepgram
# stt_service = STTService.deepgram

try:
await websocket.accept()
Expand Down

0 comments on commit e72cbbb

Please sign in to comment.