Skip to content

Commit 37ffc83

Browse files
committed
clean code
1 parent c984a1e commit 37ffc83

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

packages/plugin-node/src/services/transcription.ts

+10-12
Original file line numberDiff line numberDiff line change
@@ -43,31 +43,29 @@ export class TranscriptionService
4343
async initialize(_runtime: IAgentRuntime): Promise<void> {
4444
this.runtime = _runtime;
4545

46+
let transcriptionProvider = TranscriptionProvider.Local;
47+
4648
switch (this.runtime.character.settings.transcription) {
47-
case TranscriptionProvider.Deepgram:
49+
case TranscriptionProvider.Deepgram: {
4850
const deepgramKey = this.runtime.getSetting("DEEPGRAM_API_KEY");
4951
if (deepgramKey) {
5052
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;
5454
}
5555
break;
56-
case TranscriptionProvider.OpenAI:
56+
}
57+
case TranscriptionProvider.OpenAI: {
5758
const openAIKey = this.runtime.getSetting("OPENAI_API_KEY");
5859
if (openAIKey) {
5960
this.openai = new OpenAI({
60-
apiKey: this.runtime.getSetting("OPENAI_API_KEY"),
61+
apiKey: openAIKey,
6162
});
62-
this.transcriptionProvider = TranscriptionProvider.OpenAI;
63-
} else {
64-
this.transcriptionProvider = TranscriptionProvider.Local; // fall back to local transcription
63+
transcriptionProvider = TranscriptionProvider.OpenAI;
6564
}
6665
break;
67-
default:
68-
this.transcriptionProvider = TranscriptionProvider.Local;
69-
break;
66+
}
7067
}
68+
this.transcriptionProvider = transcriptionProvider;
7169
}
7270

7371
constructor() {

0 commit comments

Comments
 (0)