diff --git a/backend/chainlit/langchain/callbacks.py b/backend/chainlit/langchain/callbacks.py index 85a087faad..04b0dae82d 100644 --- a/backend/chainlit/langchain/callbacks.py +++ b/backend/chainlit/langchain/callbacks.py @@ -612,7 +612,7 @@ def _on_run_update(self, run: Run) -> None: else: return - if run.run_type in ["agent", "chain", "tool"]: + if run.run_type in ["agent", "chain"]: pass # # Add the response of the chain/tool # self._run_sync( diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 44dce97172..79aac6368e 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "chainlit" -version = "0.7.500" +version = "0.7.501" keywords = ['LLM', 'Agents', 'gen ai', 'chat ui', 'chatbot ui', 'langchain'] description = "A faster way to build chatbot UIs." authors = ["Chainlit"]