Skip to content

Commit 07ed37f

Browse files
committed
SDK regeneration
1 parent 2feb9e1 commit 07ed37f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The Cohere Python Library provides convenient access to the Cohere API from appl
1010
# Installation
1111

1212
```sh
13-
pip install --upgrade cohere-ai
13+
pip install --upgrade cohere
1414
```
1515
<!-- End Installation -->
1616

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.poetry]
2-
name = "cohere-ai"
2+
name = "cohere"
33
version = "5.0.0a0"
44
description = ""
55
readme = "README.md"

src/cohere/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def __init__(
2020
def get_headers(self) -> typing.Dict[str, str]:
2121
headers: typing.Dict[str, str] = {
2222
"X-Fern-Language": "Python",
23-
"X-Fern-SDK-Name": "cohere-ai",
23+
"X-Fern-SDK-Name": "cohere",
2424
"X-Fern-SDK-Version": "5.0.0a0",
2525
}
2626
if self._client_name is not None:

0 commit comments

Comments
 (0)