We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 570cd2e commit 45ed43dCopy full SHA for 45ed43d
pyproject.toml
@@ -3,7 +3,7 @@ name = "cohere"
3
4
[tool.poetry]
5
name = "cohere"
6
-version = "5.19.0"
+version = "5.20.0"
7
description = ""
8
readme = "README.md"
9
authors = []
src/cohere/core/client_wrapper.py
@@ -22,10 +22,10 @@ def __init__(
22
23
def get_headers(self) -> typing.Dict[str, str]:
24
headers: typing.Dict[str, str] = {
25
- "User-Agent": "cohere/5.19.0",
+ "User-Agent": "cohere/5.20.0",
26
"X-Fern-Language": "Python",
27
"X-Fern-SDK-Name": "cohere",
28
- "X-Fern-SDK-Version": "5.19.0",
+ "X-Fern-SDK-Version": "5.20.0",
29
}
30
if self._client_name is not None:
31
headers["X-Client-Name"] = self._client_name
0 commit comments