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 9ed9fbb commit 0e3499cCopy full SHA for 0e3499c
pyproject.toml
@@ -3,7 +3,7 @@ name = "credal"
3
4
[tool.poetry]
5
name = "credal"
6
-version = "0.1.4"
+version = "0.1.5"
7
description = ""
8
readme = "README.md"
9
authors = []
src/credal/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": "credal/0.1.4",
+ "User-Agent": "credal/0.1.5",
26
"X-Fern-Language": "Python",
27
"X-Fern-SDK-Name": "credal",
28
- "X-Fern-SDK-Version": "0.1.4",
+ "X-Fern-SDK-Version": "0.1.5",
29
**(self.get_custom_headers() or {}),
30
}
31
headers["Authorization"] = f"Bearer {self._get_api_key()}"
0 commit comments