Skip to content

Commit ee85522

Browse files
committedApr 22, 2025
Release 1.3.0
1 parent 133578a commit ee85522

5 files changed

+14
-7
lines changed
 

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "vapi_server_sdk"
33

44
[tool.poetry]
55
name = "vapi_server_sdk"
6-
version = "1.2.3"
6+
version = "1.3.0"
77
description = ""
88
readme = "README.md"
99
authors = []

‎src/vapi/core/client_wrapper.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ def __init__(
2020

2121
def get_headers(self) -> typing.Dict[str, str]:
2222
headers: typing.Dict[str, str] = {
23-
"User-Agent": "vapi_server_sdk/1.2.3",
23+
"User-Agent": "vapi_server_sdk/1.3.0",
2424
"X-Fern-Language": "Python",
2525
"X-Fern-SDK-Name": "vapi_server_sdk",
26-
"X-Fern-SDK-Version": "1.2.3",
26+
"X-Fern-SDK-Version": "1.3.0",
2727
}
2828
headers["Authorization"] = f"Bearer {self._get_token()}"
2929
return headers

‎src/vapi/types/cartesia_experimental_controls.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
from ..core.unchecked_base_model import UncheckedBaseModel
44
import typing
5-
from .cartesia_experimental_controls_speed import CartesiaExperimentalControlsSpeed
5+
from .cartesia_speed_control import CartesiaSpeedControl
66
from .cartesia_experimental_controls_emotion import CartesiaExperimentalControlsEmotion
77
from ..core.pydantic_utilities import IS_PYDANTIC_V2
88
import pydantic
99

1010

1111
class CartesiaExperimentalControls(UncheckedBaseModel):
12-
speed: typing.Optional[CartesiaExperimentalControlsSpeed] = None
12+
speed: typing.Optional[CartesiaSpeedControl] = None
1313
emotion: typing.Optional[CartesiaExperimentalControlsEmotion] = None
1414

1515
if IS_PYDANTIC_V2:
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# This file was auto-generated by Fern from our API Definition.
22

3-
from __future__ import annotations
43
import typing
54

6-
CartesiaExperimentalControlsSpeed = typing.Union["CartesiaExperimentalControlsSpeed", float]
5+
CartesiaExperimentalControlsSpeed = typing.Union[
6+
typing.Literal["slowest", "slow", "normal", "fast", "fastest"], typing.Any
7+
]
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# This file was auto-generated by Fern from our API Definition.
2+
3+
import typing
4+
from .cartesia_experimental_controls_speed import CartesiaExperimentalControlsSpeed
5+
6+
CartesiaSpeedControl = typing.Union[CartesiaExperimentalControlsSpeed, float]

0 commit comments

Comments
 (0)