Skip to content

Releases: letta-ai/letta

v0.6.13

22 Jan 18:54
7676468
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.6.12...0.6.13

0.6.12

20 Jan 22:22
4034771
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.6.11...0.6.12

0.6.11

20 Jan 21:20
b088d55
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.6.10...0.6.11

0.6.10

20 Jan 19:35
1d1566e
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.6.9...0.6.10

0.6.9

11 Jan 03:29
19907c4
Compare
Choose a tag to compare

🪲 Bugfix release, including fixes to work with gemini-pro models

What's Changed

Full Changelog: 0.6.8...0.6.9

v0.6.8

09 Jan 01:11
98ed71e
Compare
Choose a tag to compare

🐛 Bugfix release

What's Changed

New Contributors

Full Changelog: 0.6.7...0.6.8

v0.6.7

31 Dec 08:26
7af4140
Compare
Choose a tag to compare

🐞 Bugfix release

What's Changed

Full Changelog: 0.6.6...0.6.7

v0.6.6

20 Dec 19:03
108a460
Compare
Choose a tag to compare

🐜 Bugfix release (fix issue with disappearing messages in ADE)

What's Changed

New Contributors

Full Changelog: 0.6.5...0.6.6

v0.6.5

18 Dec 05:55
6203560
Compare
Choose a tag to compare

This release includes bug fixes for Ollama embeddings, improved error handling for streaming, improvements in debugging tool callings and agent creation.

⚙️ Providing tool call logs (stdout and stderr)

We now pass back the logs from tool execution in the FunctionResponse object. You can view these logs in the ADE in addition to the tool response:
image

👾 Simplification of agent creation API

We now allow for simply specifying the LLM and embedding configuration of an agent by specifying the model in the format <provider>/<model>:

curl --request POST \
  --url http://localhost:8283/v1/agents/ \
  --header 'Content-Type: application/json' \
  --data '{
     "memory_blocks": [
    {
      "value": "Name: Sarah",
      "label": "human"
    }, 
    {
      "value": "I am a helpful assistant",
      "label": "persona"
    }
  ],
  "llm": "anthropic/claude-3-5-sonnet-20241022",
  "embedding": "openai/text-embedding-ada-002"
}'

You can also provide the context window, and specify the character limit of memory blocks (e.g. human/persona):

curl --request POST \
  --url http://localhost:8283/v1/agents/ \
  --header 'Content-Type: application/json' \
  --data '{
     "memory_blocks": [
    {
      "value": "Name: Sarah",
      "limit": 5000,
      "label": "human"
    }, 
    {
      "value": "I am a helpful assistant",
      "label": "persona"
    }
  ],
  "llm": "anthropic/claude-3-5-sonnet-20241022",
  "embedding": "openai/text-embedding-ada-002",
  "context_window_limit": 15000
}'

What's Changed

New Contributors

Full Changelog: 0.6.4...0.6.5

v0.6.4

13 Dec 19:34
e24756d
Compare
Choose a tag to compare

🐛 Bugfix release - This release fixes the issue in the ADE that cause uploaded files to not be properly inserted in agents' archival memory

What's Changed

New Contributors

Full Changelog: 0.6.3...0.6.4