From ef21f4b91998ace973a89f977950160b382f95c0 Mon Sep 17 00:00:00 2001 From: Christopher Krapu Date: Thu, 17 Oct 2024 10:06:29 -0700 Subject: [PATCH] Remove unnecessary styling --- community/routing-multisource-rag/app.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/community/routing-multisource-rag/app.py b/community/routing-multisource-rag/app.py index 2f8fd724..b375947a 100644 --- a/community/routing-multisource-rag/app.py +++ b/community/routing-multisource-rag/app.py @@ -97,11 +97,7 @@ async def main(user_message: cl.Message, count_tokens: bool = True): token_count += 1 chars = chunk.delta await assistant_message.stream_token(chars) - - assistant_message.content += ( - "\n " - ) - + msg_time = time.time() - msg_start_time logging.info(f"Message generated in {msg_time:.1f} seconds.")