Skip to content

Commit

Permalink
Release v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Feb 11, 2024
1 parent 1e4f6e4 commit 0ed8a73
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "superagent-py"
version = "v0.2.2"
version = "v0.2.3"
description = ""
readme = "README.md"
authors = []
Expand Down
2 changes: 1 addition & 1 deletion src/superagent/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "superagent-py",
"X-Fern-SDK-Version": "v0.2.2",
"X-Fern-SDK-Version": "v0.2.3",
}
token = self._get_token()
if token is not None:
Expand Down
2 changes: 1 addition & 1 deletion src/superagent/types/prisma_models_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class PrismaModelsTool(pydantic.BaseModel):
description: str
type: ToolType
return_direct: bool = pydantic.Field(alias="returnDirect")
metadata: str
metadata: typing.Optional[str]
created_at: dt.datetime = pydantic.Field(alias="createdAt")
updated_at: dt.datetime = pydantic.Field(alias="updatedAt")
api_user_id: str = pydantic.Field(alias="apiUserId")
Expand Down

0 comments on commit 0ed8a73

Please sign in to comment.