mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-07-20 05:43:59 -04:00
ada3d2cbd1
Possibility to pass on_artifacts to a conversation. It can be then
achieved by adding this way:
```python
result = agent.run(
input=message.text,
metadata={
"on_artifact": CALLBACK_FUNCTION
},
)
```