Skip to content

Instantly share code, notes, and snippets.

@mberman84
Created October 26, 2023 19:03
Show Gist options
  • Save mberman84/c95d69263d9c2ceb7d56cf336f13ae02 to your computer and use it in GitHub Desktop.
Save mberman84/c95d69263d9c2ceb7d56cf336f13ae02 to your computer and use it in GitHub Desktop.
AutoGen + MemGPT Code
import os
import autogen
import memgpt.autogen.memgpt_agent as memgpt_autogen
import memgpt.autogen.interface as autogen_interface
import memgpt.agent as agent
import memgpt.system as system
import memgpt.utils as utils
import memgpt.presets as presets
import memgpt.constants as constants
import memgpt.personas.personas as personas
import memgpt.humans.humans as humans
from memgpt.persistence_manager import InMemoryStateManager, InMemoryStateManagerWithPreloadedArchivalMemory, InMemoryStateManagerWithFaiss
import openai
openai.api_key = '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'
config_list = [
{
'model': 'gpt-4'
},
]
llm_config = {"config_list": config_list, "seed": 42}
user_proxy = autogen.UserProxyAgent(
name="User_proxy",
system_message="A human admin.",
code_execution_config={"last_n_messages": 2, "work_dir": "groupchat"},
)
interface = autogen_interface.AutoGenInterface() # how MemGPT talks to AutoGen
persistence_manager = InMemoryStateManager()
persona = "I\'m a 10x engineer at a FAANG tech company."
human = "I\'m a team manager at a FAANG tech company."
memgpt_agent = presets.use_preset(presets.DEFAULT, 'gpt-4', persona, human, interface, persistence_manager)
# MemGPT coder
coder = memgpt_autogen.MemGPTAgent(
name="MemGPT_coder",
agent=memgpt_agent,
)
# non-MemGPT PM
pm = autogen.AssistantAgent(
name="Product_manager",
system_message="Creative in software product ideas.",
llm_config=llm_config,
)
groupchat = autogen.GroupChat(agents=[user_proxy, coder, pm], messages=[], max_round=12)
manager = autogen.GroupChatManager(groupchat=groupchat, llm_config=llm_config)
user_proxy.initiate_chat(manager, message="First send the message 'Let's go Mario!'")
@rlam3
Copy link

rlam3 commented Dec 4, 2023

@mberman84
hey mberman84 do you have a new gist that you could share or a repo with a fix?

@marfal
Copy link

marfal commented Dec 6, 2023

Also problems with:
import memgpt.personas.personas as personas
import memgpt.humans.humans as humans

@imfurkaann
Copy link

ModuleNotFoundError: No module named 'memgpt.personas.personas'

how do i solve it

@jakeparkernet
Copy link

jakeparkernet commented Dec 10, 2023

Also problems with: import memgpt.personas.personas as personas import memgpt.humans.humans as humans

Also had this, fixed it. If you slow down the video to 0.25x speed, you can see he installs MemGPT 0.1.3 and AutoGen 0.1.13 at the 2:24 timestamp.
I'm running in a virtual environment on Windows. My commands:

pip uninstall pyautogen
pip uninstall pymemgpt
pip install pyautogen==0.1.13
pip install pymemgpt==0.1.3

Successfully ran original gist.

These things are changing and evolving so quickly, it might be a good idea to mention or post versions in future tutorials. Grateful for all the videos just the same.

EDIT: When I back to play the video, it was still 0.25x speed, highly recommend.

@twerpyfie
Copy link

Also problems with: import memgpt.personas.personas as personas import memgpt.humans.humans as humans

Also had this, fixed it. If you slow down the video to 0.25x speed, you can see he installs MemGPT 0.1.3 and AutoGen 0.1.13 at the 2:24 timestamp. I'm running in a virtual environment on Windows. My commands:

pip uninstall pyautogen pip uninstall pymemgpt pip install pyautogen==0.1.13 pip install pymemgpt==0.1.3

Successfully ran original gist.

These things are changing and evolving so quickly, it might be a good idea to mention or post versions in future tutorials. Grateful for all the videos just the same.

EDIT: When I back to play the video, it was still 0.25x speed, highly recommend.

Omg this works, thank you !!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment