Skip to content

Releases: letta-ai/letta

0.3.6

11 Mar 23:49
237a96b
Compare
Choose a tag to compare

🐜 bugfix release

What's Changed

  • fix: patch API key GET error + allow empty body on create user POST by @cpacker in #1113
  • fix: silence pydantic warning about protected namespace by @cpacker in #1116
  • feat: add metadata to GET tools route by @cpacker in #1117
  • feat: add archival memory GET, POST, DEL to REST API by @cpacker in #1119
  • feat: Add data sources to REST API by @sarahwooders in #1118
  • feat: pass message UUIDs during message streaming (POST SSE send_message) by @cpacker in #1120
  • fix: small typing fixes by @cpacker in #1123
  • fix: fix bugs for retrieving archival memory via REST API + tests by @sarahwooders in #1122
  • feat: add a last_run field to the agent state model by @cpacker in #1124
  • fix: patch bug where the contents of the persona/human files were not gett… by @cpacker in #1126
  • feat: add memory data and tool data to list_agents function / GET /api/agents response by @cpacker in #1125
  • feat: add list of sources (in dict format) to response object by @cpacker in #1128
  • fix: patch messages route + unify all the api/agents API routes to use {agent_id} via path parameter by @cpacker in #1129
  • fix: use bookworm version of python image to resolve sqllite/chroma i… by @goetzrobin in #1130
  • feat: enable adding presets via the CLI by @sarahwooders in #1131
  • fix: modify metadata presets functions by @sarahwooders in #1132
  • feat: added persona/human_name fields to Preset by @cpacker in #1134
  • chore: bump version to 0.3.6 by @cpacker in #1114

Full Changelog: 0.3.5...0.3.6

0.3.5

06 Mar 06:12
e6ffbc2
Compare
Choose a tag to compare

🦗 Bugfix release

What's Changed

New Contributors

Full Changelog: 0.3.4...0.3.5

0.3.4

01 Mar 04:57
acb73dc
Compare
Choose a tag to compare

🐝 Bugfix release

What's Changed

New Contributors

Full Changelog: 0.3.3...0.3.4

0.3.3

19 Feb 00:56
508679e
Compare
Choose a tag to compare

Minor bugfix release

What's Changed

Full Changelog: 0.3.2...0.3.3

0.3.2

13 Feb 01:18
05bd1e4
Compare
Choose a tag to compare

🐞 Bugfix release

What's Changed

  • fix: Automatically create User from MemGPTConfig.anon_clientid from client if does not exist by @sarahwooders in #981
  • fix: various patches for Azure support + strip Box by @cpacker in #982
  • fix: patch bug in verify first message + add ChatCompletionRequest models to the models dir by @cpacker in #985
  • docs: Fix client README example by @sarahwooders in #984
  • fix: only attempt to mount static files dir (for chatUI) if already generated by @cpacker in #991
  • fix: allow multiple tools to be called by LLM and rewrite request by @cpacker in #992
  • fix: patch bug in airo wrapper by @cpacker in #993
  • fix: Chunk inserts into DB on CLI load by @sarahwooders in #994
  • chore: bump to version 0.3.2 by @sarahwooders in #995
  • fix: Modify chroma to use collection.upsert instead of collection.add for inserts by @sarahwooders in #996

Full Changelog: 0.3.1...0.3.2

0.3.1

09 Feb 04:49
68a92ce
Compare
Choose a tag to compare

🐛 Bugfix release

🚧 What's Changed

👋 New Contributors

✍️ Full Changelog: 0.3...0.3.1

0.3

30 Jan 04:17
330b199
Compare
Choose a tag to compare
0.3

This release is a major refactor of MemGPT which moves all agent, user, and system information into database storage. We implemented this refactor to enable people to run MemGPT has a hosted service that can support multiple users. You can still keep using MemGPT's CLI, but your data will be stored in local sqlite and chroma files (unless configured otherwise).

🚌 Migrating to 0.3

MemGPT will no longer be able to access existing agents and data sources unless they are migrated. You can migrate old agent state and and data sources contained in the ~/.memgpt/config folder using the memgpt migrate command.

> memgpt migrate 

🌐 MemGPT Server

You can now run MemGPT as a service that can support multiple users. User authentication is coming soon which will make the server usable for production applications.

You can run the server with:

> memgpt server

INFO:     Started server process [53568]
INFO:     Waiting for application startup.
Writing out openapi.json file
INFO:     Application startup complete.
INFO:     Uvicorn running on http://localhost:8283 (Press CTRL+C to quit)

👋 New Contributors

Full Changelog: 0.2.11...0.3

0.2.11

03 Jan 23:13
bf36491
Compare
Choose a tag to compare

MemGPT Python Client

MemGPT version 0.2.11 includes a new Python client for developers to easily build on MemGPT (special thanks to @BabellDev!)

To use the MemGPT Python client, simply do:

from memgpt import MemGPT

# creates a client object, which you can then use to create new MemGPT agents, message agents, etc
client = MemGPT()

For more information, check our documentation page.

✍️ What's Changed

Full Changelog: 0.2.10...0.2.11

👋 New Contributors

0.2.10

25 Dec 19:46
40487c5
Compare
Choose a tag to compare

Merry Christmas! 🎄🎁🎅

MemGPT version 0.2.10 includes:

  • Improvements to local/open LLM performance
    • Includes two new model wrappers that increase MemGPT "proactiveness" (when using local/open LLMs)
      • chatml-hints and chatml-noforce-hints
    • Use them by specifying them in memgpt configure or adding them to memgpt run
      • eg memgpt run --model-wrapper chatml-noforce-hints
  • Better visuals in the MemGPT CLI UI
  • Various patches (quickstart command, AutoGen, ...)

✍️ What's Changed

  • docs: Added a new docs page describing how to run custom LLM parameters by @cpacker in #688
  • feat: improve CLI appearance by @cpacker in #687
  • fix: moved configs for hosted to https, patched bug in embedding creation by @cpacker in #685
  • fix: allow edge case of quickstart before run on first install by @cpacker in #684
  • fix: Remove match/case to support python <3.10 by @cpacker in #691
  • fix: typo in Dockerfile comment by @tombedor in #690
  • fix: memgpt agent ignores user messages by @javiersastre in #679
  • fix: Better errors on over length persona/human files by @cpacker in #695
  • feat: set a default temperature in the common local llm settings by @cpacker in #696
  • feat: added basic heartbeat override heuristics by @cpacker in #621
  • docs: updated readme for quickstart by @cpacker in #698
  • fix: misc fixes by @cpacker in #700
  • feat: added new 'hint' wrappers that inject hints into the pre-prefix by @cpacker in #707

Full Changelog: 0.2.9...0.2.10

👋 New Contributors

0.2.9

22 Dec 19:39
e1e8ed1
Compare
Choose a tag to compare

🐛 Bugfix release to patch issues with memgpt quickstart command

See https://github.com/cpacker/MemGPT/releases/tag/0.2.8 for release details.

Full Changelog: 0.2.8...0.2.9