Xinyu Wu

Results 2 issues of Xinyu Wu

Right now to create an agent that has memory, we do `memory = ConversationBufferMemory(memory_key=str('chat_history'))` Then pass it to the agent `agent_executor = AgentExecutor.from_agent_and_tools(agent=agent, tools=tools, verbose=True, memory=memory)` However, the memory will...

Hi, I am building a chatbot that could answer questions related to some internal data. I have defined an agent that has access to a few tools that could query...