Nuno Campos
Nuno Campos
We support `step_timeout` arg natively in langgraph, see `step_timeout` constructor arg in Pregel/CompiledGraph. I don't think we need `total_timeout` when we have step timeout.
With a few tweaks this can be made generic enough to implement agent/agentexecutor on top of it (which may not be the goal here). The tweaks would be - make...
Added some new tests too
Linter should be happy now
Btw, should we think about using a more cross platform templating system? Both f-strings and jinja are very python-centric, which means 1. rolling our own implementation in JS and 2....
Hi, these can be imported from `langchain.callbacks.base`
This is now available as the new `.stream()` and `.astream()` methods, see https://python.langchain.com/docs/expression_language/interface#stream
Print removed
Closing in favour of https://github.com/hwchase17/langchain/pull/6424 Thanks for the all the info @mariokostelac
@hinthornw you should support both. Something like ```py from langchain.load.load import loads if 'lc' in message_json: message = loads(message_json) else: message = _map_from_dict(message_json) ```