-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AttributeError: module 'memgpt.presets' has no attribute 'DEFAULT_PRESET' #12
Comments
import os config_list = [ llm_config = {"config_list": config_list, "seed": 42} USE_MEMGPT = True openai.api_base="http://localhost:1234/v1" user_proxy = autogen.UserProxyAgent( interface = autogen_interface.AutoGenInterface() if not USE_MEMGPT: else: user_proxy.initiate_chat( |
I had a similar issue, I believe fixed by importing the right package (it's been changed): |
Traceback (most recent call last):
File "/Users/jyx/Documents/AIProj/MemGenGPT/app.py", line 55, in
memgpt_agent=presets.use_preset(presets.DEFAULT_PRESET, model='gpt-4', persona=persona, human=human, interface=interface, persistence_manager=persistence_manager, agent_config=llm_config)
^^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'memgpt.presets' has no attribute 'DEFAULT_PRESET'
The text was updated successfully, but these errors were encountered: