Skip to content

Commit 31efb53

Browse files
committed
fix langchain callback tools
1 parent e37ed25 commit 31efb53

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/chainlit/langchain/callbacks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ def _on_run_update(self, run: Run) -> None:
612612
else:
613613
return
614614

615-
if run.run_type in ["agent", "chain", "tool"]:
615+
if run.run_type in ["agent", "chain"]:
616616
pass
617617
# # Add the response of the chain/tool
618618
# self._run_sync(

backend/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "chainlit"
3-
version = "0.7.500"
3+
version = "0.7.501"
44
keywords = ['LLM', 'Agents', 'gen ai', 'chat ui', 'chatbot ui', 'langchain']
55
description = "A faster way to build chatbot UIs."
66
authors = ["Chainlit"]

0 commit comments

Comments
 (0)