diff --git a/examples/api_client.py b/examples/api_client.py index ca8253e3eb249..49a085febdc57 100644 --- a/examples/api_client.py +++ b/examples/api_client.py @@ -31,7 +31,10 @@ def post_http_request(prompt: str, "max_tokens": 16, "stream": stream, } - response = requests.post(api_url, headers=headers, json=pload, stream=stream) + response = requests.post(api_url, + headers=headers, + json=pload, + stream=stream) return response