Skip to content

Commit

Permalink
fix langchain callback tools
Browse files Browse the repository at this point in the history
  • Loading branch information
willydouhard committed Nov 7, 2023
1 parent e37ed25 commit 31efb53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/chainlit/langchain/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down

0 comments on commit 31efb53

Please sign in to comment.