mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 21:26:41 +02:00
- New bot that transcribes voice messages to text - Uses mana-stt service (Whisper/Voxtral) for transcription - Supports German and English with auto-detection - Commands: !language, !model, !status, !help - Runs on port 3024 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { MatrixService } from './matrix.service';
|
|
import { SttModule } from '../stt/stt.module';
|
|
|
|
@Module({
|
|
imports: [SttModule],
|
|
providers: [MatrixService],
|
|
})
|
|
export class BotModule {}
|