We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb51370 commit a434835Copy full SHA for a434835
2 files changed
pyproject.toml
@@ -3,7 +3,7 @@ name = "vectara"
3
4
[tool.poetry]
5
name = "vectara"
6
-version = "0.4.0"
+version = "0.4.1"
7
description = ""
8
readme = "README.md"
9
authors = []
src/vectara/core/client_wrapper.py
@@ -25,10 +25,10 @@ def __init__(
25
26
def get_headers(self) -> typing.Dict[str, str]:
27
headers: typing.Dict[str, str] = {
28
- "User-Agent": "vectara/0.4.0",
+ "User-Agent": "vectara/0.4.1",
29
"X-Fern-Language": "Python",
30
"X-Fern-SDK-Name": "vectara",
31
- "X-Fern-SDK-Version": "0.4.0",
+ "X-Fern-SDK-Version": "0.4.1",
32
**(self.get_custom_headers() or {}),
33
}
34
if self._api_key is not None:
0 commit comments