jambonz-python-sdk 0.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. jambonz_python_sdk-0.2.0.dist-info/METADATA +179 -0
  2. jambonz_python_sdk-0.2.0.dist-info/RECORD +119 -0
  3. jambonz_python_sdk-0.2.0.dist-info/WHEEL +4 -0
  4. jambonz_sdk/__init__.py +52 -0
  5. jambonz_sdk/_signature.py +73 -0
  6. jambonz_sdk/client/__init__.py +15 -0
  7. jambonz_sdk/client/api.py +241 -0
  8. jambonz_sdk/schema/callbacks/amd.schema.json +50 -0
  9. jambonz_sdk/schema/callbacks/base.schema.json +29 -0
  10. jambonz_sdk/schema/callbacks/call-status.schema.json +22 -0
  11. jambonz_sdk/schema/callbacks/conference-status.schema.json +24 -0
  12. jambonz_sdk/schema/callbacks/conference-wait.schema.json +11 -0
  13. jambonz_sdk/schema/callbacks/conference.schema.json +11 -0
  14. jambonz_sdk/schema/callbacks/dequeue.schema.json +19 -0
  15. jambonz_sdk/schema/callbacks/dial-dtmf.schema.json +18 -0
  16. jambonz_sdk/schema/callbacks/dial-hold.schema.json +22 -0
  17. jambonz_sdk/schema/callbacks/dial-refer.schema.json +28 -0
  18. jambonz_sdk/schema/callbacks/dial.schema.json +31 -0
  19. jambonz_sdk/schema/callbacks/enqueue-wait.schema.json +17 -0
  20. jambonz_sdk/schema/callbacks/enqueue.schema.json +27 -0
  21. jambonz_sdk/schema/callbacks/gather-partial.schema.json +54 -0
  22. jambonz_sdk/schema/callbacks/gather.schema.json +60 -0
  23. jambonz_sdk/schema/callbacks/listen.schema.json +21 -0
  24. jambonz_sdk/schema/callbacks/llm.schema.json +30 -0
  25. jambonz_sdk/schema/callbacks/message.schema.json +35 -0
  26. jambonz_sdk/schema/callbacks/pipeline-turn.schema.json +109 -0
  27. jambonz_sdk/schema/callbacks/play.schema.json +36 -0
  28. jambonz_sdk/schema/callbacks/session-new.schema.json +143 -0
  29. jambonz_sdk/schema/callbacks/session-reconnect.schema.json +9 -0
  30. jambonz_sdk/schema/callbacks/session-redirect.schema.json +38 -0
  31. jambonz_sdk/schema/callbacks/sip-refer-event.schema.json +20 -0
  32. jambonz_sdk/schema/callbacks/sip-refer.schema.json +22 -0
  33. jambonz_sdk/schema/callbacks/sip-request.schema.json +27 -0
  34. jambonz_sdk/schema/callbacks/transcribe-translation.schema.json +24 -0
  35. jambonz_sdk/schema/callbacks/transcribe.schema.json +46 -0
  36. jambonz_sdk/schema/callbacks/tts-streaming-event.schema.json +77 -0
  37. jambonz_sdk/schema/callbacks/verb-status.schema.json +57 -0
  38. jambonz_sdk/schema/components/actionHook.schema.json +36 -0
  39. jambonz_sdk/schema/components/actionHookDelayAction.schema.json +37 -0
  40. jambonz_sdk/schema/components/amd.schema.json +68 -0
  41. jambonz_sdk/schema/components/auth.schema.json +18 -0
  42. jambonz_sdk/schema/components/bidirectionalAudio.schema.json +22 -0
  43. jambonz_sdk/schema/components/fillerNoise.schema.json +25 -0
  44. jambonz_sdk/schema/components/llm-base.schema.json +94 -0
  45. jambonz_sdk/schema/components/recognizer-assemblyAiOptions.schema.json +66 -0
  46. jambonz_sdk/schema/components/recognizer-awsOptions.schema.json +52 -0
  47. jambonz_sdk/schema/components/recognizer-azureOptions.schema.json +32 -0
  48. jambonz_sdk/schema/components/recognizer-cobaltOptions.schema.json +34 -0
  49. jambonz_sdk/schema/components/recognizer-customOptions.schema.json +27 -0
  50. jambonz_sdk/schema/components/recognizer-deepgramOptions.schema.json +147 -0
  51. jambonz_sdk/schema/components/recognizer-elevenlabsOptions.schema.json +39 -0
  52. jambonz_sdk/schema/components/recognizer-gladiaOptions.schema.json +8 -0
  53. jambonz_sdk/schema/components/recognizer-googleOptions.schema.json +35 -0
  54. jambonz_sdk/schema/components/recognizer-houndifyOptions.schema.json +53 -0
  55. jambonz_sdk/schema/components/recognizer-ibmOptions.schema.json +54 -0
  56. jambonz_sdk/schema/components/recognizer-nuanceOptions.schema.json +150 -0
  57. jambonz_sdk/schema/components/recognizer-nvidiaOptions.schema.json +39 -0
  58. jambonz_sdk/schema/components/recognizer-openaiOptions.schema.json +59 -0
  59. jambonz_sdk/schema/components/recognizer-sonioxOptions.schema.json +46 -0
  60. jambonz_sdk/schema/components/recognizer-speechmaticsOptions.schema.json +100 -0
  61. jambonz_sdk/schema/components/recognizer-verbioOptions.schema.json +46 -0
  62. jambonz_sdk/schema/components/recognizer.schema.json +216 -0
  63. jambonz_sdk/schema/components/synthesizer.schema.json +82 -0
  64. jambonz_sdk/schema/components/target.schema.json +105 -0
  65. jambonz_sdk/schema/components/vad.schema.json +48 -0
  66. jambonz_sdk/schema/jambonz-app.schema.json +113 -0
  67. jambonz_sdk/schema/verbs/alert.schema.json +34 -0
  68. jambonz_sdk/schema/verbs/answer.schema.json +22 -0
  69. jambonz_sdk/schema/verbs/conference.schema.json +107 -0
  70. jambonz_sdk/schema/verbs/config.schema.json +221 -0
  71. jambonz_sdk/schema/verbs/deepgram_s2s.schema.json +81 -0
  72. jambonz_sdk/schema/verbs/dequeue.schema.json +51 -0
  73. jambonz_sdk/schema/verbs/dial.schema.json +200 -0
  74. jambonz_sdk/schema/verbs/dialogflow.schema.json +148 -0
  75. jambonz_sdk/schema/verbs/dtmf.schema.json +49 -0
  76. jambonz_sdk/schema/verbs/dub.schema.json +103 -0
  77. jambonz_sdk/schema/verbs/elevenlabs_s2s.schema.json +81 -0
  78. jambonz_sdk/schema/verbs/enqueue.schema.json +53 -0
  79. jambonz_sdk/schema/verbs/gather.schema.json +190 -0
  80. jambonz_sdk/schema/verbs/google_s2s.schema.json +42 -0
  81. jambonz_sdk/schema/verbs/hangup.schema.json +36 -0
  82. jambonz_sdk/schema/verbs/leave.schema.json +22 -0
  83. jambonz_sdk/schema/verbs/listen.schema.json +127 -0
  84. jambonz_sdk/schema/verbs/llm.schema.json +44 -0
  85. jambonz_sdk/schema/verbs/message.schema.json +82 -0
  86. jambonz_sdk/schema/verbs/openai_s2s.schema.json +42 -0
  87. jambonz_sdk/schema/verbs/pause.schema.json +36 -0
  88. jambonz_sdk/schema/verbs/pipeline.schema.json +240 -0
  89. jambonz_sdk/schema/verbs/play.schema.json +96 -0
  90. jambonz_sdk/schema/verbs/redirect.schema.json +34 -0
  91. jambonz_sdk/schema/verbs/rest_dial.schema.json +113 -0
  92. jambonz_sdk/schema/verbs/s2s.schema.json +39 -0
  93. jambonz_sdk/schema/verbs/say.schema.json +107 -0
  94. jambonz_sdk/schema/verbs/sip-decline.schema.json +58 -0
  95. jambonz_sdk/schema/verbs/sip-refer.schema.json +58 -0
  96. jambonz_sdk/schema/verbs/sip-request.schema.json +54 -0
  97. jambonz_sdk/schema/verbs/stream.schema.json +103 -0
  98. jambonz_sdk/schema/verbs/tag.schema.json +41 -0
  99. jambonz_sdk/schema/verbs/transcribe.schema.json +57 -0
  100. jambonz_sdk/schema/verbs/ultravox_s2s.schema.json +41 -0
  101. jambonz_sdk/types/__init__.py +139 -0
  102. jambonz_sdk/types/components.py +250 -0
  103. jambonz_sdk/types/rest.py +59 -0
  104. jambonz_sdk/types/session.py +55 -0
  105. jambonz_sdk/types/verbs.py +572 -0
  106. jambonz_sdk/validator.py +107 -0
  107. jambonz_sdk/verb_builder.py +316 -0
  108. jambonz_sdk/verb_builder.pyi +1133 -0
  109. jambonz_sdk/verb_registry.py +102 -0
  110. jambonz_sdk/webhook/__init__.py +10 -0
  111. jambonz_sdk/webhook/middleware.py +63 -0
  112. jambonz_sdk/webhook/response.py +43 -0
  113. jambonz_sdk/websocket/__init__.py +15 -0
  114. jambonz_sdk/websocket/audio_client.py +11 -0
  115. jambonz_sdk/websocket/audio_stream.py +151 -0
  116. jambonz_sdk/websocket/client.py +165 -0
  117. jambonz_sdk/websocket/endpoint.py +193 -0
  118. jambonz_sdk/websocket/router.py +87 -0
  119. jambonz_sdk/websocket/session.py +259 -0
@@ -0,0 +1,58 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://jambonz.org/schema/verbs/sip:refer",
4
+ "minVersion": "0.9.6",
5
+ "title": "SIP Refer",
6
+ "description": "Sends a SIP REFER request to transfer the call to another party. Initiates an attended or unattended (blind) transfer.",
7
+ "type": "object",
8
+ "properties": {
9
+ "verb": {
10
+ "const": "sip:refer"
11
+ },
12
+ "id": {
13
+ "type": "string",
14
+ "description": "An optional unique identifier for this verb instance."
15
+ },
16
+ "referTo": {
17
+ "type": "string",
18
+ "description": "The SIP URI or phone number to transfer the call to.",
19
+ "examples": [
20
+ "sip:alice@example.com",
21
+ "+15085551212"
22
+ ]
23
+ },
24
+ "referredBy": {
25
+ "type": "string",
26
+ "description": "The SIP URI to use in the Referred-By header."
27
+ },
28
+ "referredByDisplayName": {
29
+ "type": "string",
30
+ "description": "The display name to use in the Referred-By header."
31
+ },
32
+ "headers": {
33
+ "type": "object",
34
+ "description": "Custom SIP headers to include in the REFER request.",
35
+ "additionalProperties": {
36
+ "oneOf": [{ "type": "string" }, { "type": "number" }]
37
+ }
38
+ },
39
+ "actionHook": {
40
+ "$ref": "../components/actionHook",
41
+ "description": "A webhook invoked when the REFER completes (or fails)."
42
+ },
43
+ "eventHook": {
44
+ "$ref": "../components/actionHook",
45
+ "description": "A webhook invoked for NOTIFY events during the REFER process, providing transfer progress updates."
46
+ }
47
+ },
48
+ "required": [
49
+ "referTo"
50
+ ],
51
+ "examples": [
52
+ {
53
+ "verb": "sip:refer",
54
+ "referTo": "sip:alice@example.com",
55
+ "actionHook": "/refer-complete"
56
+ }
57
+ ]
58
+ }
@@ -0,0 +1,54 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://jambonz.org/schema/verbs/sip:request",
4
+ "minVersion": "0.9.6",
5
+ "title": "SIP Request",
6
+ "description": "Sends a SIP request within the current dialog. Used to send INFO, NOTIFY, or other SIP methods to the remote party during an active call.",
7
+ "type": "object",
8
+ "properties": {
9
+ "verb": {
10
+ "const": "sip:request"
11
+ },
12
+ "id": {
13
+ "type": "string",
14
+ "description": "An optional unique identifier for this verb instance."
15
+ },
16
+ "method": {
17
+ "type": "string",
18
+ "description": "The SIP method to send.",
19
+ "examples": [
20
+ "INFO",
21
+ "NOTIFY",
22
+ "MESSAGE"
23
+ ]
24
+ },
25
+ "body": {
26
+ "type": "string",
27
+ "description": "The body of the SIP request."
28
+ },
29
+ "headers": {
30
+ "type": "object",
31
+ "description": "Custom SIP headers to include in the request.",
32
+ "additionalProperties": {
33
+ "oneOf": [{ "type": "string" }, { "type": "number" }]
34
+ }
35
+ },
36
+ "actionHook": {
37
+ "$ref": "../components/actionHook",
38
+ "description": "A webhook invoked when the response to the SIP request is received."
39
+ }
40
+ },
41
+ "required": [
42
+ "method"
43
+ ],
44
+ "examples": [
45
+ {
46
+ "verb": "sip:request",
47
+ "method": "INFO",
48
+ "body": "Signal=1\nDuration=250",
49
+ "headers": {
50
+ "Content-Type": "application/dtmf-relay"
51
+ }
52
+ }
53
+ ]
54
+ }
@@ -0,0 +1,103 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://jambonz.org/schema/verbs/stream",
4
+ "minVersion": "0.9.6",
5
+ "title": "Stream",
6
+ "description": "Streams real-time call audio to an external websocket endpoint. Functionally equivalent to 'listen' — this is an alias provided for naming clarity when the intent is audio streaming rather than recording.",
7
+ "type": "object",
8
+ "properties": {
9
+ "verb": {
10
+ "const": "stream"
11
+ },
12
+ "id": {
13
+ "type": "string",
14
+ "description": "An optional unique identifier for this verb instance."
15
+ },
16
+ "url": {
17
+ "type": "string",
18
+ "format": "uri",
19
+ "description": "The websocket URL to stream audio to."
20
+ },
21
+ "actionHook": {
22
+ "$ref": "../components/actionHook",
23
+ "description": "A webhook invoked when the stream ends."
24
+ },
25
+ "wsAuth": {
26
+ "$ref": "../components/auth",
27
+ "description": "Authentication credentials for the websocket connection."
28
+ },
29
+ "mixType": {
30
+ "type": "string",
31
+ "enum": [
32
+ "mono",
33
+ "stereo",
34
+ "mixed"
35
+ ],
36
+ "description": "How to mix audio channels."
37
+ },
38
+ "metadata": {
39
+ "type": "object",
40
+ "description": "Metadata to send with the initial connection.",
41
+ "additionalProperties": true
42
+ },
43
+ "sampleRate": {
44
+ "type": "number",
45
+ "description": "Audio sample rate in Hz.",
46
+ "examples": [
47
+ 8000,
48
+ 16000
49
+ ]
50
+ },
51
+ "finishOnKey": {
52
+ "type": "string",
53
+ "description": "DTMF key that ends the stream."
54
+ },
55
+ "maxLength": {
56
+ "type": "number",
57
+ "description": "Maximum duration in seconds."
58
+ },
59
+ "passDtmf": {
60
+ "type": "boolean",
61
+ "description": "Forward DTMF events to the websocket."
62
+ },
63
+ "playBeep": {
64
+ "type": "boolean",
65
+ "description": "Play a beep before streaming begins."
66
+ },
67
+ "disableBidirectionalAudio": {
68
+ "type": "boolean",
69
+ "description": "Disable receiving audio from the websocket."
70
+ },
71
+ "bidirectionalAudio": {
72
+ "$ref": "../components/bidirectionalAudio",
73
+ "description": "Bidirectional audio configuration."
74
+ },
75
+ "timeout": {
76
+ "type": "number",
77
+ "description": "Inactivity timeout in seconds."
78
+ },
79
+ "transcribe": {
80
+ "$ref": "transcribe",
81
+ "description": "Nested transcribe verb — enables simultaneous real-time transcription of the streamed audio."
82
+ },
83
+ "earlyMedia": {
84
+ "type": "boolean",
85
+ "description": "Stream audio before the call is answered."
86
+ },
87
+ "channel": {
88
+ "type": "number",
89
+ "description": "Specific audio channel to stream. Used when streaming a single channel of a multi-channel call."
90
+ }
91
+ },
92
+ "required": [
93
+ "url"
94
+ ],
95
+ "examples": [
96
+ {
97
+ "verb": "stream",
98
+ "url": "wss://myapp.example.com/audio",
99
+ "sampleRate": 16000,
100
+ "mixType": "stereo"
101
+ }
102
+ ]
103
+ }
@@ -0,0 +1,41 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://jambonz.org/schema/verbs/tag",
4
+ "minVersion": "0.9.6",
5
+ "title": "Tag",
6
+ "description": "Attaches arbitrary metadata to the current call. Tagged data is included in all subsequent webhook requests and in the call detail record (CDR). Useful for tracking business context, routing decisions, or analytics data through the call lifecycle.",
7
+ "type": "object",
8
+ "properties": {
9
+ "verb": {
10
+ "const": "tag"
11
+ },
12
+ "id": {
13
+ "type": "string",
14
+ "description": "An optional unique identifier for this verb instance."
15
+ },
16
+ "data": {
17
+ "type": "object",
18
+ "description": "An object containing the metadata to attach to the call. Keys and values are application-defined.",
19
+ "additionalProperties": true,
20
+ "examples": [
21
+ {
22
+ "customerId": "12345",
23
+ "department": "support",
24
+ "priority": "high"
25
+ }
26
+ ]
27
+ }
28
+ },
29
+ "required": [
30
+ "data"
31
+ ],
32
+ "examples": [
33
+ {
34
+ "verb": "tag",
35
+ "data": {
36
+ "customerId": "12345",
37
+ "intent": "billing-inquiry"
38
+ }
39
+ }
40
+ ]
41
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://jambonz.org/schema/verbs/transcribe",
4
+ "minVersion": "0.9.6",
5
+ "title": "Transcribe",
6
+ "description": "Enables real-time transcription of the call audio. Transcription results are sent to the transcriptionHook as they are produced. Runs as a background process — subsequent verbs execute immediately while transcription continues.",
7
+ "type": "object",
8
+ "properties": {
9
+ "verb": {
10
+ "const": "transcribe"
11
+ },
12
+ "id": {
13
+ "type": "string",
14
+ "description": "An optional unique identifier for this verb instance."
15
+ },
16
+ "enable": {
17
+ "type": "boolean",
18
+ "description": "Enable or disable transcription. Used when transcribe is nested inside a config or dial verb to start or stop background transcription."
19
+ },
20
+ "transcriptionHook": {
21
+ "type": "string",
22
+ "format": "uri",
23
+ "description": "The webhook URL to receive transcription results."
24
+ },
25
+ "translationHook": {
26
+ "type": "string",
27
+ "format": "uri",
28
+ "description": "The webhook URL to receive translated transcription results."
29
+ },
30
+ "recognizer": {
31
+ "$ref": "../components/recognizer",
32
+ "description": "STT configuration for the transcription."
33
+ },
34
+ "earlyMedia": {
35
+ "type": "boolean",
36
+ "description": "If true, begin transcribing before the call is answered."
37
+ },
38
+ "channel": {
39
+ "type": "number",
40
+ "description": "Specific audio channel to transcribe."
41
+ }
42
+ },
43
+ "examples": [
44
+ {
45
+ "verb": "transcribe",
46
+ "transcriptionHook": "https://myapp.example.com/transcription",
47
+ "recognizer": {
48
+ "vendor": "deepgram",
49
+ "language": "en-US",
50
+ "deepgramOptions": {
51
+ "model": "nova-2",
52
+ "smartFormatting": true
53
+ }
54
+ }
55
+ }
56
+ ]
57
+ }
@@ -0,0 +1,41 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://jambonz.org/schema/verbs/ultravox_s2s",
4
+ "minVersion": "10.1.0",
5
+ "title": "Ultravox S2S",
6
+ "description": "Shortcut for 'llm' with vendor automatically set to 'ultravox'. Connects the caller to an Ultravox model for real-time speech-to-speech voice conversation.",
7
+ "type": "object",
8
+ "allOf": [
9
+ {
10
+ "$ref": "../components/llm-base"
11
+ }
12
+ ],
13
+ "properties": {
14
+ "verb": {
15
+ "const": "ultravox_s2s",
16
+ "description": "The verb name."
17
+ },
18
+ "vendor": {
19
+ "type": "string",
20
+ "const": "ultravox",
21
+ "description": "The LLM vendor (always 'ultravox' for this shortcut)."
22
+ }
23
+ },
24
+ "required": [
25
+ "llmOptions"
26
+ ],
27
+ "examples": [
28
+ {
29
+ "verb": "ultravox_s2s",
30
+ "llmOptions": {
31
+ "messages": [
32
+ {
33
+ "role": "system",
34
+ "content": "You are a helpful voice assistant."
35
+ }
36
+ ]
37
+ },
38
+ "actionHook": "/s2s-complete"
39
+ }
40
+ ]
41
+ }
@@ -0,0 +1,139 @@
1
+ """Type definitions for jambonz SDK."""
2
+
3
+ from jambonz_sdk.types.components import (
4
+ ActionHook,
5
+ ActionHookDelayAction,
6
+ ActionHookObject,
7
+ Amd,
8
+ AmdTimers,
9
+ Auth,
10
+ BargeIn,
11
+ BidirectionalAudio,
12
+ FillerNoise,
13
+ FromHeader,
14
+ LlmBase,
15
+ McpServer,
16
+ NoiseIsolation,
17
+ Recognizer,
18
+ Synthesizer,
19
+ Target,
20
+ TtsStream,
21
+ TurnTaking,
22
+ Vad,
23
+ )
24
+ from jambonz_sdk.types.rest import (
25
+ CallInfo,
26
+ CallStatus,
27
+ CreateCallRequest,
28
+ ListCallsFilter,
29
+ )
30
+ from jambonz_sdk.types.session import (
31
+ CallDirection,
32
+ CallSession,
33
+ WsMessage,
34
+ WsMessageType,
35
+ )
36
+ from jambonz_sdk.types.verbs import (
37
+ AlertVerb,
38
+ AnswerVerb,
39
+ AnyVerb,
40
+ ConferenceVerb,
41
+ ConfigVerb,
42
+ DeepgramS2sVerb,
43
+ DequeueVerb,
44
+ DialogflowVerb,
45
+ DialVerb,
46
+ DtmfVerb,
47
+ DubVerb,
48
+ ElevenlabsS2sVerb,
49
+ EnqueueVerb,
50
+ GatherVerb,
51
+ GoogleS2sVerb,
52
+ HangupVerb,
53
+ LeaveVerb,
54
+ ListenVerb,
55
+ LlmVerb,
56
+ MessageVerb,
57
+ OpenaiS2sVerb,
58
+ PauseVerb,
59
+ PipelineVerb,
60
+ PlayVerb,
61
+ RedirectVerb,
62
+ S2sVerb,
63
+ SayVerb,
64
+ SipDeclineVerb,
65
+ SipReferVerb,
66
+ SipRequestVerb,
67
+ StreamVerb,
68
+ TagVerb,
69
+ TranscribeVerb,
70
+ UltravoxS2sVerb,
71
+ )
72
+
73
+ __all__ = [
74
+ # Components
75
+ "ActionHook",
76
+ "ActionHookDelayAction",
77
+ "ActionHookObject",
78
+ "Amd",
79
+ "AmdTimers",
80
+ "Auth",
81
+ "BargeIn",
82
+ "BidirectionalAudio",
83
+ "FillerNoise",
84
+ "FromHeader",
85
+ "LlmBase",
86
+ "McpServer",
87
+ "NoiseIsolation",
88
+ "Recognizer",
89
+ "Synthesizer",
90
+ "Target",
91
+ "TtsStream",
92
+ "TurnTaking",
93
+ "Vad",
94
+ # Verbs
95
+ "AlertVerb",
96
+ "AnswerVerb",
97
+ "AnyVerb",
98
+ "ConferenceVerb",
99
+ "ConfigVerb",
100
+ "DeepgramS2sVerb",
101
+ "DequeueVerb",
102
+ "DialVerb",
103
+ "DialogflowVerb",
104
+ "DtmfVerb",
105
+ "DubVerb",
106
+ "ElevenlabsS2sVerb",
107
+ "EnqueueVerb",
108
+ "GatherVerb",
109
+ "GoogleS2sVerb",
110
+ "HangupVerb",
111
+ "LeaveVerb",
112
+ "ListenVerb",
113
+ "LlmVerb",
114
+ "MessageVerb",
115
+ "OpenaiS2sVerb",
116
+ "PauseVerb",
117
+ "PipelineVerb",
118
+ "PlayVerb",
119
+ "RedirectVerb",
120
+ "S2sVerb",
121
+ "SayVerb",
122
+ "SipDeclineVerb",
123
+ "SipReferVerb",
124
+ "SipRequestVerb",
125
+ "StreamVerb",
126
+ "TagVerb",
127
+ "TranscribeVerb",
128
+ "UltravoxS2sVerb",
129
+ # REST
130
+ "CallInfo",
131
+ "CallStatus",
132
+ "CreateCallRequest",
133
+ "ListCallsFilter",
134
+ # Session
135
+ "CallDirection",
136
+ "CallSession",
137
+ "WsMessage",
138
+ "WsMessageType",
139
+ ]