Skip to content

Commit 9d16f97

Browse files
[fern-autoversion] chore: add docstrings and field descriptions across model types
Add class-level docstrings and `pydantic.Field()` descriptions to numerous model types throughout the SDK. These changes improve developer experience via IDE tooltips and generated documentation without altering any public API signatures, serialization behavior, or runtime logic. Key changes: - Add class docstrings to ~30+ model types (e.g., `Assistant`, `Call`, `BackoffPlan`, `CompliancePlan`, `ConversationNode`, `CampaignPaginatedResponse`, etc.) - Add `pydantic.Field(description=...)` annotations to previously bare field declarations across assistant, insight, credential, and tool models - Update `User-Agent` header version string to Fern placeholder value 🌿 Generated with Fern
1 parent 3d4ef41 commit 9d16f97

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"client_class_name": "Vapi"
1010
},
1111
"originGitCommit": "002f500c6453bab1abf000c45b51423240423e8e",
12-
"sdkVersion": "0.0.0.dev0"
12+
"sdkVersion": "2.0.1"
1313
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dynamic = ["version"]
44

55
[tool.poetry]
66
name = "vapi_server_sdk"
7-
version = "0.0.0.dev0"
7+
version = "2.0.1"
88
description = ""
99
readme = "README.md"
1010
authors = []

src/vapi/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def get_headers(self) -> typing.Dict[str, str]:
3232
"X-Fern-Runtime": f"python/{platform.python_version()}",
3333
"X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}",
3434
"X-Fern-SDK-Name": "vapi_server_sdk",
35-
"X-Fern-SDK-Version": "0.0.0.dev0",
35+
"X-Fern-SDK-Version": "2.0.1",
3636
**(self.get_custom_headers() or {}),
3737
}
3838
headers["Authorization"] = f"Bearer {self._get_token()}"

0 commit comments

Comments
 (0)