You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that postgres is integrated, MemGPT can support large archival memory stores. However, loading data into the agent via /attach requires copying data from one table into another (the agent's archival memory table).
Possible solutions:
Parallelizing the copy across multiple processes
Avoiding having to copy data by allowing agents to have read-only access to attached data source tables (this would require supporting the ability for archival memory to search across multiple tables)
The text was updated successfully, but these errors were encountered:
Now that postgres is integrated, MemGPT can support large archival memory stores. However, loading data into the agent via
/attach
requires copying data from one table into another (the agent's archival memory table).Possible solutions:
The text was updated successfully, but these errors were encountered: