@@ -515,10 +515,23 @@ export class MessageManager {
515
515
}
516
516
if ( message . channel . type === ChannelType . GuildVoice ) {
517
517
// For voice channels, use text-to-speech
518
- const audioStream = await this . runtime
519
- . getService ( ServiceType . SPEECH_GENERATION )
520
- . getInstance < ISpeechService > ( )
521
- . generate ( this . runtime , content . text ) ;
518
+
519
+ const speechService =
520
+ this . runtime . getService < ISpeechService > (
521
+ ServiceType . SPEECH_GENERATION
522
+ ) ;
523
+
524
+ if ( ! speechService ) {
525
+ throw new Error (
526
+ "Speech generation service not found"
527
+ ) ;
528
+ }
529
+
530
+ const audioStream = await speechService . generate (
531
+ this . runtime ,
532
+ content . text
533
+ ) ;
534
+
522
535
await this . voiceManager . playAudioStream (
523
536
userId ,
524
537
audioStream
@@ -603,10 +616,18 @@ export class MessageManager {
603
616
if ( message . channel . type === ChannelType . GuildVoice ) {
604
617
// For voice channels, use text-to-speech for the error message
605
618
const errorMessage = "Sorry, I had a glitch. What was that?" ;
606
- const audioStream = await this . runtime
607
- . getService ( ServiceType . SPEECH_GENERATION )
608
- . getInstance < ISpeechService > ( )
609
- . generate ( this . runtime , errorMessage ) ;
619
+
620
+ const speechService = this . runtime . getService < ISpeechService > (
621
+ ServiceType . SPEECH_GENERATION
622
+ ) ;
623
+ if ( ! speechService ) {
624
+ throw new Error ( "Speech generation service not found" ) ;
625
+ }
626
+
627
+ const audioStream = await speechService . generate (
628
+ this . runtime ,
629
+ errorMessage
630
+ ) ;
610
631
await this . voiceManager . playAudioStream ( userId , audioStream ) ;
611
632
} else {
612
633
// For text channels, send the error message
@@ -670,14 +691,17 @@ export class MessageManager {
670
691
for ( const url of urls ) {
671
692
if (
672
693
this . runtime
673
- . getService ( ServiceType . VIDEO )
674
- . getInstance < IVideoService > ( )
694
+ . getService < IVideoService > ( ServiceType . VIDEO )
675
695
. isVideoUrl ( url )
676
696
) {
677
- const videoInfo = await this . runtime
678
- . getService ( ServiceType . VIDEO )
679
- . getInstance < IVideoService > ( )
680
- . processVideo ( url ) ;
697
+ const videoService = this . runtime . getService < IVideoService > (
698
+ ServiceType . VIDEO
699
+ ) ;
700
+ if ( ! videoService ) {
701
+ throw new Error ( "Video service not found" ) ;
702
+ }
703
+ const videoInfo = await videoService . processVideo ( url ) ;
704
+
681
705
attachments . push ( {
682
706
id : `youtube-${ Date . now ( ) } ` ,
683
707
url : url ,
@@ -687,10 +711,16 @@ export class MessageManager {
687
711
text : videoInfo . text ,
688
712
} ) ;
689
713
} else {
690
- const { title, bodyContent } = await this . runtime
691
- . getService ( ServiceType . BROWSER )
692
- . getInstance < IBrowserService > ( )
693
- . getPageContent ( url , this . runtime ) ;
714
+ const browserService = this . runtime . getService < IBrowserService > (
715
+ ServiceType . BROWSER
716
+ ) ;
717
+ if ( ! browserService ) {
718
+ throw new Error ( "Browser service not found" ) ;
719
+ }
720
+
721
+ const { title, bodyContent } =
722
+ await browserService . getPageContent ( url , this . runtime ) ;
723
+
694
724
const { title : newTitle , description } = await generateSummary (
695
725
this . runtime ,
696
726
title + "\n" + bodyContent
0 commit comments