imaprogrammer
imaprogrammer
I identified the reason that the author has not pushed compiled locale (.mo files for i18n) in the latest package version, only the human-readable .po files are there. The `Translations.load`...
Update: Just realized the last release on PyPI is on Jun 8, 2022, so it's outdated. Best to just use the github version directly
Sure: `demo_bug.py` ```python from langchain.chains.base import Chain from langchain.callbacks.manager import CallbackManagerForChainRun from typing import Dict, Optional, Any, List class CustomChain(Chain): input_key: str = "input" output_key: str = "output" def _call(...
I think the input_key issue is because the property is actually called [`input_keys`](https://github.com/hwchase17/langchain/blob/2e39ede848481c4ba8a36021032411adfc0763f9/langchain/chains/base.py#L91)
I tried to use an Agent. Initially I got an error due to `input_key` missing. But I then modified the api file with input_keys. It worked, but I don't know...
> > I tried to use an Agent. Initially I got an error due to `input_key` missing. But I then modified the api file with input_keys. It worked, but I...
Just as an FYI, it is possible to add chat history memory in the chain that will store in a DB itself, without passing the burden to client https://python.langchain.com/docs/modules/memory/agent_with_memory_in_db You...
Strange thought but is it possible to somehow parse the various tracks' jsons (`0.json`, `1.json` etc.) and manually convert them to .gp? Just an idea but it will be very...
I got different error that might be related to this change, in `langgraph-supervisor` package: ``` File "/usr/local/lib/python3.12/site-packages/langgraph_supervisor/supervisor.py", line 406, in create_supervisor tool_node = _prepare_tool_node( ^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/site-packages/langgraph_supervisor/supervisor.py", line 196, in...