File tree 1 file changed +10
-12
lines changed
packages/plugin-node/src/services
1 file changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -43,31 +43,29 @@ export class TranscriptionService
43
43
async initialize ( _runtime : IAgentRuntime ) : Promise < void > {
44
44
this . runtime = _runtime ;
45
45
46
+ let transcriptionProvider = TranscriptionProvider . Local ;
47
+
46
48
switch ( this . runtime . character . settings . transcription ) {
47
- case TranscriptionProvider . Deepgram :
49
+ case TranscriptionProvider . Deepgram : {
48
50
const deepgramKey = this . runtime . getSetting ( "DEEPGRAM_API_KEY" ) ;
49
51
if ( deepgramKey ) {
50
52
this . deepgram = createClient ( deepgramKey ) ;
51
- this . transcriptionProvider = TranscriptionProvider . Deepgram ;
52
- } else {
53
- this . transcriptionProvider = TranscriptionProvider . Local ; // fall back to local transcription
53
+ transcriptionProvider = TranscriptionProvider . Deepgram ;
54
54
}
55
55
break ;
56
- case TranscriptionProvider . OpenAI :
56
+ }
57
+ case TranscriptionProvider . OpenAI : {
57
58
const openAIKey = this . runtime . getSetting ( "OPENAI_API_KEY" ) ;
58
59
if ( openAIKey ) {
59
60
this . openai = new OpenAI ( {
60
- apiKey : this . runtime . getSetting ( "OPENAI_API_KEY" ) ,
61
+ apiKey : openAIKey ,
61
62
} ) ;
62
- this . transcriptionProvider = TranscriptionProvider . OpenAI ;
63
- } else {
64
- this . transcriptionProvider = TranscriptionProvider . Local ; // fall back to local transcription
63
+ transcriptionProvider = TranscriptionProvider . OpenAI ;
65
64
}
66
65
break ;
67
- default :
68
- this . transcriptionProvider = TranscriptionProvider . Local ;
69
- break ;
66
+ }
70
67
}
68
+ this . transcriptionProvider = transcriptionProvider ;
71
69
}
72
70
73
71
constructor ( ) {
You can’t perform that action at this time.
0 commit comments