Skip to content
Open
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
78 changes: 72 additions & 6 deletions fern/apis/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -7518,14 +7518,19 @@
]
},
"model": {
"type": "string",
"description": "This is the model that will be used for the transcription.",
"enum": [
"scribe_v1"
"oneOf": [
{
"enum": [
"scribe_v1",
"scribe_v2_realtime"
]
}
]
},
"language": {
"type": "string",
"description": "This is the language that will be used for the transcription.",
"enum": [
"aa",
"ab",
Expand Down Expand Up @@ -7714,6 +7719,34 @@
"zu"
]
},
"silenceThresholdSeconds": {
"type": "number",
"description": "This is the number of seconds of silence before VAD commits (0.3-3.0).",
"minimum": 0.3,
"maximum": 3,
"example": 1.5
},
"confidenceThreshold": {
"type": "number",
"description": "This is the VAD sensitivity (0.1-0.9, lower indicates more sensitive).",
"minimum": 0.1,
"maximum": 0.9,
"example": 0.4
},
"minSpeechDurationMs": {
"type": "number",
"description": "This is the minimum speech duration for VAD (50-2000ms).",
"minimum": 50,
"maximum": 2000,
"example": 100
},
"minSilenceDurationMs": {
"type": "number",
"description": "This is the minimum silence duration for VAD (50-2000ms).",
"minimum": 50,
"maximum": 2000,
"example": 100
},
"fallbackPlan": {
"description": "This is the plan for voice provider fallbacks in the event that the primary voice provider fails.",
"allOf": [
Expand Down Expand Up @@ -9343,14 +9376,19 @@
]
},
"model": {
"type": "string",
"description": "This is the model that will be used for the transcription.",
"enum": [
"scribe_v1"
"oneOf": [
{
"enum": [
"scribe_v1",
"scribe_v2_realtime"
]
}
]
},
"language": {
"type": "string",
"description": "This is the language that will be used for the transcription.",
"enum": [
"aa",
"ab",
Expand Down Expand Up @@ -9538,6 +9576,34 @@
"zh",
"zu"
]
},
"silenceThresholdSeconds": {
"type": "number",
"description": "This is the number of seconds of silence before VAD commits (0.3-3.0).",
"minimum": 0.3,
"maximum": 3,
"example": 1.5
},
"confidenceThreshold": {
"type": "number",
"description": "This is the VAD sensitivity (0.1-0.9, lower indicates more sensitive).",
"minimum": 0.1,
"maximum": 0.9,
"example": 0.4
},
"minSpeechDurationMs": {
"type": "number",
"description": "This is the minimum speech duration for VAD (50-2000ms).",
"minimum": 50,
"maximum": 2000,
"example": 100
},
"minSilenceDurationMs": {
"type": "number",
"description": "This is the minimum silence duration for VAD (50-2000ms).",
"minimum": 50,
"maximum": 2000,
"example": 100
}
},
"required": [
Expand Down