Coder Social home page Coder Social logo

Comments (3)

dosubot avatar dosubot commented on June 8, 2024 2

To avoid the memory reset when dynamically creating agents, the key is to adjust how you use the reset method on the ReActAgent. The memory is cleared because the reset method, by default, clears the agent's memory. If you want to keep the memory intact, you should modify the reset method in your agent's implementation to include a parameter that controls whether to clear the memory.

Here's a quick guide on how to do it:

  1. Modify the reset method in the ReActAgent class to accept a clear_memory boolean parameter. By default, set this to True. When clear_memory is False, the method should skip the memory clearing step.

  2. Update your initialize_agent function to call reset with clear_memory=False when you want to preserve the memory after agent creation.

Example modification for the reset method:

def reset(self, clear_memory: bool = True):
    if clear_memory:
        self._memory.reset()

And then in your initialize_agent function:

agent.reset(clear_memory=False)

This approach allows you to dynamically create agents with preserved memory, avoiding the issue of memory being cleared upon agent creation.

Details

Sources


About Dosu
This response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research.

Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant.

To continue the conversation, mention @dosu.

from llama_index.

logan-markewich avatar logan-markewich commented on June 8, 2024

@risos8200 agent.reset() resets the memory -- any reason to run this when the agent was just created? I would just remove this line

from llama_index.

risos8200 avatar risos8200 commented on June 8, 2024

@logan-markewich It gives this error if I don't

'dict' object has no attribute 'content'

from llama_index.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.