From 2b15aaee969ff7cc5daa0d1835d2161ecc78270f Mon Sep 17 00:00:00 2001 From: paperspace <29749331+aarnphm@users.noreply.github.com> Date: Sun, 2 Jun 2024 22:29:12 +0000 Subject: [PATCH] fix: remove breakpoint Signed-off-by: paperspace <29749331+aarnphm@users.noreply.github.com> --- openllm-client/src/openllm_client/_shim.py | 1 - 1 file changed, 1 deletion(-) diff --git a/openllm-client/src/openllm_client/_shim.py b/openllm-client/src/openllm_client/_shim.py index 737a4899..58b59392 100644 --- a/openllm-client/src/openllm_client/_shim.py +++ b/openllm-client/src/openllm_client/_shim.py @@ -135,7 +135,6 @@ class APIResponse(pydantic.BaseModel, t.Generic[Response]): # Since users specific different content_type, then we return the raw binary text without and deserialisation return self.raw_response.text - breakpoint() data = self.raw_response.json() try: return self.response_cls(**data)