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 0668acb commit 4b2d83bCopy full SHA for 4b2d83b
src/huggingface_inference_toolkit/utils.py
@@ -291,4 +291,4 @@ def convert_params_to_int_or_bool(params):
291
params[k] = False
292
if v == 'true':
293
params[k] = True
294
- return params
+ return params
src/huggingface_inference_toolkit/webservice_starlette.py
@@ -76,7 +76,7 @@ async def predict(request):
76
if request.query_params and "parameters" not in deserialized_body:
77
deserialized_body["parameters"] = convert_params_to_int_or_bool(dict(request.query_params))
78
print(deserialized_body)
79
-
+
80
# tracks request time
81
start_time = perf_counter()
82
# run async not blocking call
0 commit comments