diff --git a/src/hume/core/client_wrapper.py b/src/hume/core/client_wrapper.py index 90494a17..800a24f7 100644 --- a/src/hume/core/client_wrapper.py +++ b/src/hume/core/client_wrapper.py @@ -1,9 +1,9 @@ -# This file was auto-generated by Fern from our API Definition. - import typing import httpx +from importlib.metadata import version + from .http_client import AsyncHttpClient, HttpClient @@ -17,7 +17,9 @@ def get_headers(self, include_auth: bool = True) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { "X-Fern-Language": "Python", "X-Fern-SDK-Name": "hume", - "X-Fern-SDK-Version": "1.0.0", + "X-Fern-SDK-Version": version("hume"), + "X-Hume-Client-Name": "python_sdk", + "X-Hume-Client-Version": version("hume"), } if self.api_key is not None and include_auth: headers["X-Hume-Api-Key"] = self.api_key