ニジカ投稿局 https://tv.nizika.tv
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
410 B

  1. import { ModelFormat } from './transcription-model.js'
  2. export type TranscriptionEngineName = 'openai-whisper' | 'whisper-ctranslate2'
  3. export interface TranscriptionEngine {
  4. name: TranscriptionEngineName
  5. description?: string
  6. language?: string
  7. type: 'binary'
  8. command: string
  9. version: string
  10. license?: string
  11. forgeURL?: string
  12. supportedModelFormats: ModelFormat[]
  13. languageDetection?: true
  14. }