Skip to content
Merged
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
19 changes: 17 additions & 2 deletions fern/apis/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3576,6 +3576,13 @@
"pattern": "/^\\p{L}[\\p{L}\\d]*(?::[+-]?\\d+)?$/u"
}
},
"keyterm": {
"description": "Keyterm Prompting allows you improve Keyword Recall Rate (KRR) for important keyterms or phrases up to 90%.",
"type": "array",
"items": {
"type": "string"
}
},
"endpointing": {
"type": "number",
"description": "This is the timeout after which Deepgram will send transcription on user silence. You can read in-depth documentation here: https://developers.deepgram.com/docs/endpointing.\n\nHere are the most important bits:\n- Defaults to 10. This is recommended for most use cases to optimize for latency.\n- 10 can cause some missing transcriptions since because of the shorter context. This mostly happens for one-word utterances. For those uses cases, it's recommended to try 300. It will add a bit of latency but the quality and reliability of the experience will be better.\n- If neither 10 nor 300 work, contact [email protected] and we'll find another solution.\n\n@default 10",
Expand Down Expand Up @@ -22925,14 +22932,19 @@
},
"minutesIncluded": {
"type": "number",
"description": "The number of minutes included in the subscription. Enterprise only.",
"description": "The number of minutes included in the subscription.",
"minimum": 1
},
"minutesUsed": {
"type": "number",
"description": "The number of minutes used in the subscription. Enterprise only.",
"description": "The number of minutes used in the subscription.",
"minimum": 1
},
"minutesUsedNextResetAt": {
"format": "date-time",
"type": "string",
"description": "This is the timestamp at which the number of monthly free minutes is scheduled to reset at."
},
"minutesOverageCost": {
"type": "number",
"description": "The per minute charge on minutes that exceed the included minutes. Enterprise only."
Expand Down Expand Up @@ -23195,6 +23207,9 @@
"viewer"
],
"type": "string"
},
"redirectTo": {
"type": "string"
}
},
"required": [
Expand Down
Loading