We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 320cf7f commit cd24dc9Copy full SHA for cd24dc9
2 files changed
pyproject.toml
@@ -3,7 +3,7 @@ name = "agentmail"
3
4
[tool.poetry]
5
name = "agentmail"
6
-version = "0.0.46"
+version = "0.0.48"
7
description = ""
8
readme = "README.md"
9
authors = []
src/agentmail/core/client_wrapper.py
@@ -23,10 +23,10 @@ def __init__(
23
24
def get_headers(self) -> typing.Dict[str, str]:
25
headers: typing.Dict[str, str] = {
26
- "User-Agent": "agentmail/0.0.46",
+ "User-Agent": "agentmail/0.0.48",
27
"X-Fern-Language": "Python",
28
"X-Fern-SDK-Name": "agentmail",
29
- "X-Fern-SDK-Version": "0.0.46",
+ "X-Fern-SDK-Version": "0.0.48",
30
**(self.get_custom_headers() or {}),
31
}
32
headers["Authorization"] = f"Bearer {self._get_api_key()}"
0 commit comments