From 818242c7a9ee7582a034302f8b6101cc8f090063 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 11 Apr 2024 16:22:48 +0800 Subject: [PATCH] bugfix --- ahserver/llm_client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ahserver/llm_client.py b/ahserver/llm_client.py index b709221..d72a43e 100644 --- a/ahserver/llm_client.py +++ b/ahserver/llm_client.py @@ -142,6 +142,7 @@ class LlmProxy: _data = self.datalize(mydata, params) response_type = RESPONSE_STREAM hc = HttpClient() + print(f'{url=},{method=},{_params=},{_data=},{_headers=}') resp_data = await hc.request(url, method, response_type=response_type, params=_params, data=None if _data == {} else json.dumps(_data),