consistent assemblyAiOptions name (#98)

This commit is contained in:
Hoan Luu Huu
2025-07-03 07:35:08 +07:00
committed by GitHub
parent a9a2339821
commit f444a57bcd
2 changed files with 8 additions and 8 deletions

View File

@@ -1145,10 +1145,10 @@
"v3" "v3"
] ]
}, },
"format_turns": "boolean", "formatTurns": "boolean",
"end_of_turn_confidence_threshold": "number", "endOfTurnConfidenceThreshold": "number",
"min_end_of_turn_silence_when_confident": "number", "minEndOfTurnSilenceWhenConfident": "number",
"max_turn_silence": "number" "maxTurnSilence": "number"
} }
}, },
"resource": { "resource": {

View File

@@ -79,10 +79,10 @@ test("validate correct verbs", async (t) => {
"assemblyAiOptions": { "assemblyAiOptions": {
"apiKey": "apikey", "apiKey": "apikey",
"serviceVersion": "v3", "serviceVersion": "v3",
"format_turns": true, "formatTurns": true,
"end_of_turn_confidence_threshold": 0.5, "endOfTurnConfidenceThreshold": 0.5,
"min_end_of_turn_silence_when_confident": 500, "minEndOfTurnSilenceWhenConfident": 500,
"max_turn_silence": 2000 "maxTurnSilence": 2000
} }
} }
}, },