Skip to content

Commit 568aeed

Browse files
committed
Fix missing base_url
1 parent 5c9d1b4 commit 568aeed

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/hume/expression_measurement/batch/client_with_utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ def start_inference_job_from_local_file(
9898

9999
_response = self._raw_client._client_wrapper.httpx_client.request(
100100
"v0/batch/jobs",
101+
base_url=self._raw_client._client_wrapper.get_environment().base,
101102
method="POST",
102103
files=files,
103104
request_options=request_options,
@@ -203,6 +204,7 @@ async def start_inference_job_from_local_file(
203204

204205
_response = await self._raw_client._client_wrapper.httpx_client.request(
205206
"v0/batch/jobs",
207+
base_url=self._raw_client._client_wrapper.get_environment().base,
206208
method="POST",
207209
files=files,
208210
request_options=request_options,

0 commit comments

Comments
 (0)