Skip to content

v0.6.2

Compare
Choose a tag to compare
@sarahwooders sarahwooders released this 10 Dec 03:03
· 85 commits to main since this release
af5ef6d
  • Fix to data sources, e.g. letta load ... and /attach command in the CLI (#2184)
  • Support for an async messages route to allow for long running agent execution (#2206)
  • Support for system messages for OSS models and Anthropic
  • Updated Dockerfile to allow for the Letta service to be run with a single command (#2177):
# replace `~/.letta/.persist/pgdata` with wherever you want to store your data
docker run \
  -v ~/.letta/.persist/pgdata:/var/lib/postgresql/data \
  -p 8283:8283 \
  -e OPENAI_API_KEY="your_api_key" \
  letta/letta

# using a .env file instead of passing environment variables
docker run \
  -v ~/.letta/.persist/pgdata:/var/lib/postgresql/data \
  -p 8283:8283 \
  --env-file .env \
  letta/letta

What's Changed

Full Changelog: 0.6.1...0.6.2