From 58dc50ab8f5ef2a87a37a984281bf48c9220d7bc Mon Sep 17 00:00:00 2001 From: Barbariskaa <129290831+Barbariskaa@users.noreply.github.com> Date: Thu, 25 May 2023 00:13:08 +0300 Subject: [PATCH] Update main.py --- main.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index e09e304..a2d7443 100644 --- a/main.py +++ b/main.py @@ -258,12 +258,14 @@ class SSEHandler(web.View): else: streaming_content_chunk = message['text'][wrote:] streaming_content_chunk = streaming_content_chunk.replace('\\"', '\"') - response_text += streaming_content_chunk + if 'urls' in vars(): if urls: streaming_content_chunk = link_placeholder_replacer.process(streaming_content_chunk, urls) + response_text += streaming_content_chunk + if stream: await self.response.write(prepare_response(id, created, content=streaming_content_chunk)) @@ -342,4 +344,4 @@ if __name__ == '__main__': f"Режим precise: http://{HOST}:{PORT}/precise\n" f"Режим balanced: http://{HOST}:{PORT}/balanced\n" f"Также есть режим подсказок от Бинга. Чтобы его включить, нужно добавить /suggestion к концу URL, после режима.") - web.run_app(app, host=HOST, port=PORT, print=None) \ No newline at end of file + web.run_app(app, host=HOST, port=PORT, print=None)