Anis Benna

Results 47 comments of Anis Benna

@JoAmps I'm not too sure without seeing any code, but I really recommend you switch over to [LCEL](https://python.langchain.com/docs/expression_language/), there's so much you can customize and implement that way, especially as...

@mmoore7 - there might have been a change to the stop condition, that or the tool/train of thought end event is getting called. I cannot say for sure since I...

```python from langchain_community.chat_message_histories.in_memory import ChatMessageHistory ``` as of ``` langchain = "^0.1.14" langchain-community = "^0.0.31" langchain-core = "^0.1.38" langchain-openai = "^0.1.1" langsmith = "^0.1.38" langgraph = "^0.0.30" ```

Having the same issue even using another shell (tried with git bash)

I also have the same problem [using ECK](https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-beat-configuration-examples.html)

Or better yet, chain a shell script to do anything with the response. (e.g. save and open the file)

Streaming is also not working if I update the [agent_supervisor notebook](https://github.com/langchain-ai/langgraph/blob/main/examples/multi_agent/agent_supervisor.ipynb) as specified in the documention (set `streaming` to True and make the tool calls `async`). ~~The `operator.add` in the...

> Streaming is also not working if I update the [agent_supervisor notebook](https://github.com/langchain-ai/langgraph/blob/main/examples/multi_agent/agent_supervisor.ipynb) as specified in the documention (set `streaming` to True and make the tool calls `async`). > > ~The...

I have the same problem with this setup ```python # List of members participating in the conversation members = ["MongoDBAgent"] # Setup the nodes supervisor_node = supervisor_factory.setup_node(members) mongo_node = mongo_factory.setup_node(config)...