diff --git a/src/backend/langflow/api/chat_manager.py b/src/backend/langflow/api/chat_manager.py index 8e05127fe..cafa6bb5f 100644 --- a/src/backend/langflow/api/chat_manager.py +++ b/src/backend/langflow/api/chat_manager.py @@ -23,7 +23,8 @@ class ChatHistory(Subject): """Add a message to the chat history.""" self.history[client_id].append(message) - self.notify() + if not isinstance(message, FileResponse): + self.notify() def get_history(self, client_id: str, filter=True) -> List[ChatMessage]: """Get the chat history for a client."""