Giter Club home page Giter Club logo

agent_with_memory's Introduction

AI Companion (Replika / Paradot clone)

replika

How it works

TL;DR

  • We're combining a custom LangChain Chain as our AI Companion agent, and OpenAI Functions Agent as Entity Extractor for entity memory

Details

  • User sends a message to the AI Companion
  • Agent 1 receives the message and respond back with a LangChain LLMChain
  • Agent 2 grabs the message and figures out whether or not it warrants a user profile update
  • User receives a respond from Agent 1. Agent 2 updates the user's data at the same time.

How memory works

  • Messages are kept in a messages_history array in memory.py
  • Old messages are passed into the Agent's prompt but only the last K messages
  • Messages older than K are summarized and stored in summaries, also in memory.py and passed into the prompt
  • User's data (entities memory) is kept in entities dictionary, in memory.py, to provide persistent information about the user. This is what the Agent 2 will update.

Create a new Python virtual environment

python -m venv agent-with-memory (Mac)

py -m venv agent-with-memory (Windows 11)

Activate virtual environment

.\agent-with-memory\Scripts\activate (Windows)

source agent-with-memory/bin/activate (Mac)

Install dependencies

poetry install --sync or poetry install

Setup .env file

OPENAI_API_KEY=XXXXXX

Usage

py main.py (Windows 11)

python main.py (Mac)

agent_with_memory's People

Contributors

trancethehuman avatar

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.