We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
MemGPT cloned and installed locally on OSX.
There is a bug when trying to use persistent Chroma storage.
TypeError: ChromaStorageConnector.get_all() takes 1 positional argument but 2 were given
The issue is with this line in MemGPT/memgpt/memory.py
MemGPT/memgpt/memory.py
for passage in list(self.storage.get_all(limit)): ^^^^^^^^^^^^^^^^^^^^^^^^^^^
... meanwhile, the get_all method inside ChromaStorageConnector found in MemGPT/memgpt/connectors/chroma.py has no limit param:
MemGPT/memgpt/connectors/chroma.py
def get_all(self) -> List[Passage]:
The text was updated successfully, but these errors were encountered:
getting this always with using quick start / local chroma persistent -- anyone fix this?
Sorry, something went wrong.
@quantumalchemy what version are you on, or did you install from source?
211 pip install -U pymemgpt .. but I see there was a new rel 2 hours ago .. will try tomorrow
This issue has been automatically closed due to 60 days of inactivity.
chore: Add openai package (#747)
22f745e
No branches or pull requests
MemGPT cloned and installed locally on OSX.
There is a bug when trying to use persistent Chroma storage.
The issue is with this line in
MemGPT/memgpt/memory.py
... meanwhile, the get_all method inside ChromaStorageConnector found in
MemGPT/memgpt/connectors/chroma.py
has no limit param:The text was updated successfully, but these errors were encountered: