Skip to content

Update API specifications with fern api update #487

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
22 changes: 22 additions & 0 deletions fern/apis/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -5656,6 +5656,11 @@
"maximum": 1,
"example": 0.4
},
"enableUniversalStreamingApi": {
"type": "boolean",
"description": "Uses Assembly AI's new Universal Streaming API. See: https://www.assemblyai.com/docs/speech-to-text/universal-streaming\n\n@default false",
"example": false
},
"realtimeUrl": {
"type": "string",
"description": "The WebSocket URL that the transcriber connects to."
Expand Down Expand Up @@ -6985,6 +6990,11 @@
"maximum": 1,
"example": 0.4
},
"enableUniversalStreamingApi": {
"type": "boolean",
"description": "Uses Assembly AI's new Universal Streaming API. See: https://www.assemblyai.com/docs/speech-to-text/universal-streaming\n\n@default false",
"example": false
},
"realtimeUrl": {
"type": "string",
"description": "The WebSocket URL that the transcriber connects to."
Expand Down Expand Up @@ -9195,6 +9205,13 @@
}
]
},
"timeout": {
"type": "number",
"description": "This is the timeout in seconds for the warm-transfer-wait-for-operator-to-speak-first-and-then-say-message/summary\n\n@default 60",
"minimum": 1,
"maximum": 600,
"default": 60
},
"sipVerb": {
"type": "object",
"description": "This specifies the SIP verb to use while transferring the call.\n- 'refer': Uses SIP REFER to transfer the call (default)\n- 'bye': Ends current call with SIP BYE\n- 'dial': Uses SIP DIAL to transfer the call",
Expand Down Expand Up @@ -18512,6 +18529,11 @@
"AnalysisPlan": {
"type": "object",
"properties": {
"minMessagesThreshold": {
"type": "number",
"description": "The minimum number of messages required to run the analysis plan.\nIf the number of messages is less than this, analysis will be skipped.\n@default 2",
"minimum": 0
},
"summaryPlan": {
"description": "This is the plan for generating the summary of the call. This outputs to `call.analysis.summary`.",
"allOf": [
Expand Down