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)