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),