소스 검색

Added an explicit update so that the log element displays after first llm call

Cam 1 년 전
부모
커밋
3003fac7b4
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      examples/chat_with_ai/log_callback_handler.py

+ 1 - 0
examples/chat_with_ai/log_callback_handler.py

@@ -13,6 +13,7 @@ class NiceGuiLogElementCallbackHandler(BaseCallbackHandler):
 
     def print_text(self, message: str) -> None:
         self.element.push(message)
+        self.element.update()
 
     def on_chain_start(
         self, serialized: Dict[str, Any], inputs: Dict[str, Any], **kwargs: Any