From 41da732a5544446638d563a7a7a8d1f470a1f33e Mon Sep 17 00:00:00 2001 From: Ivan Charapanau Date: Wed, 25 Sep 2024 15:49:59 +0200 Subject: [PATCH] fix: rcn module not streaming final response correctly --- boost/src/modules/rcn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boost/src/modules/rcn.py b/boost/src/modules/rcn.py index 5771453..ff0b1f2 100644 --- a/boost/src/modules/rcn.py +++ b/boost/src/modules/rcn.py @@ -72,4 +72,4 @@ async def apply(chat: 'ch.Chat', llm: 'llm.LLM'): "Now prepare your final answer. Write it as a response to this message. Do not write anything else." ) - await llm.stream_final_completion(output) + await llm.stream_final_completion(chat=output)