From 1d13ff9e2fc631ac945343404cec9f0c0ff292ee Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 11 Apr 2024 18:11:12 +0800 Subject: [PATCH] bugfix --- ahserver/llm_client.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ahserver/llm_client.py b/ahserver/llm_client.py index d72a43e..b73a8a9 100644 --- a/ahserver/llm_client.py +++ b/ahserver/llm_client.py @@ -39,7 +39,6 @@ class LlmProxy: async def stream_handle(self, chunk): chunk = chunk.decode('utf-8') - print(f'{chunk=}') chunk = self.remain_str + chunk lines = chunk.split('\n') self.remain_str = lines[-1] @@ -136,7 +135,6 @@ class LlmProxy: for p in d.get('params', {}): myparams[p.get('name')] = p.get('value') url = d.get('url') - print(f'show me self.data={self.data}') _params = self.datalize(myparams, params) _headers = self.datalize(headers, params) _data = self.datalize(mydata, params)