Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/dynamic-speech-to-text-models.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"kilo-code": patch
---

Use NVIDIA Parakeet TDT 0.6B v3 as the default speech-to-text model while retaining dynamic model discovery and offline fallback support.
10 changes: 5 additions & 5 deletions packages/kilo-vscode/src/speech-to-text/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ export interface SpeechToTextModelDef {
}

const models: SpeechToTextModelDef[] = [
{
id: "nvidia/parakeet-tdt-0.6b-v3",
Comment thread
marius-kilocode marked this conversation as resolved.
label: "Parakeet TDT 0.6B v3",
provider: "NVIDIA",
},
{
id: "openai/whisper-large-v3-turbo",
label: "Whisper Large V3 Turbo",
Expand Down Expand Up @@ -38,11 +43,6 @@ const models: SpeechToTextModelDef[] = [
label: "Chirp 3",
provider: "Google",
},
{
id: "nvidia/parakeet-tdt-0.6b-v3",
label: "Parakeet TDT 0.6B v3",
provider: "NVIDIA",
},
]

export const SPEECH_TO_TEXT_MODELS: readonly SpeechToTextModelDef[] = models
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ describe("speech-to-text discovery", () => {
it("rejects empty or malformed catalogs so callers can use the static fallback", () => {
expect(parseSpeechToTextCatalog([])).toBeUndefined()
expect(parseSpeechToTextCatalog({ data: [] })).toBeUndefined()
expect(DEFAULT_SPEECH_TO_TEXT_MODEL.id).toBe("openai/whisper-large-v3-turbo")
expect(DEFAULT_SPEECH_TO_TEXT_MODEL.id).toBe("nvidia/parakeet-tdt-0.6b-v3")
})
})
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import {
} from "../../src/speech-to-text/models"

describe("speech-to-text model catalog", () => {
it("uses Whisper Large V3 Turbo as the fallback default", () => {
expect(DEFAULT_SPEECH_TO_TEXT_MODEL.id).toBe("openai/whisper-large-v3-turbo")
it("uses NVIDIA Parakeet TDT 0.6B v3 as the fallback default", () => {
expect(DEFAULT_SPEECH_TO_TEXT_MODEL.id).toBe("nvidia/parakeet-tdt-0.6b-v3")
expect(DEFAULT_SPEECH_TO_TEXT_MODEL.id).toBe(SPEECH_TO_TEXT_MODELS[0]?.id)
})

Expand Down
Loading