Skip to content

Commit 88134c1

Browse files
SDK regeneration (#441)
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent 189ce39 commit 88134c1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cohere"
3-
version = "5.1.3"
3+
version = "5.1.4"
44
description = ""
55
readme = "README.md"
66
authors = []

src/cohere/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def get_headers(self) -> typing.Dict[str, str]:
2525
headers: typing.Dict[str, str] = {
2626
"X-Fern-Language": "Python",
2727
"X-Fern-SDK-Name": "cohere",
28-
"X-Fern-SDK-Version": "5.1.3",
28+
"X-Fern-SDK-Version": "5.1.4",
2929
}
3030
if self._client_name is not None:
3131
headers["X-Client-Name"] = self._client_name

src/cohere/types/tool_parameter_definitions_value.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
class ToolParameterDefinitionsValue(pydantic.BaseModel):
15-
description: str = pydantic.Field()
15+
description: typing.Optional[str] = pydantic.Field(default=None)
1616
"""
1717
The description of the parameter.
1818
"""

0 commit comments

Comments
 (0)