Skip to content

Commit c3800bb

Browse files
chore(main): release letta-evals 0.6.0 (#94)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 2b16cd3 commit c3800bb

File tree

4 files changed

+42
-3
lines changed

4 files changed

+42
-3
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.5.0"
2+
".": "0.6.0"
33
}

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,44 @@
11
# Changelog
22

3+
## [0.6.0](https://github.com/letta-ai/letta-evals/compare/letta-evals-v0.5.0...letta-evals-v0.6.0) (2025-10-29)
4+
5+
6+
### Features
7+
8+
* add eval website ([#104](https://github.com/letta-ai/letta-evals/issues/104)) ([2daaf0c](https://github.com/letta-ai/letta-evals/commit/2daaf0c598780b6fa2edc26de52348de127f88a5))
9+
* Fix workflow ([#105](https://github.com/letta-ai/letta-evals/issues/105)) ([62207bd](https://github.com/letta-ai/letta-evals/commit/62207bd502fd6e99008ac755e7956bc3cfa42053))
10+
* Support letta code as builtin target ([#101](https://github.com/letta-ai/letta-evals/issues/101)) ([fe1ae2f](https://github.com/letta-ai/letta-evals/commit/fe1ae2f7a1bc25ead8115459eda148c873c5ef27))
11+
12+
13+
### Bug Fixes
14+
15+
* Fix kwargs in run function ([#97](https://github.com/letta-ai/letta-evals/issues/97)) ([c0f64b0](https://github.com/letta-ai/letta-evals/commit/c0f64b0a317f7c70675e10ee02ed47b19efc09a7))
16+
* Remove duplicate gpt 4.1 results ([#95](https://github.com/letta-ai/letta-evals/issues/95)) ([2b9092c](https://github.com/letta-ai/letta-evals/commit/2b9092cd7b4180f493a5acfd0e0c33662ae574c2))
17+
* Update Sonnet 4.5 cost ([#96](https://github.com/letta-ai/letta-evals/issues/96)) ([3b7a39d](https://github.com/letta-ai/letta-evals/commit/3b7a39dd85f02412b644c0f65162d6f52a772921))
18+
19+
20+
### Refactors
21+
22+
* Add extra vars to Sample ([#100](https://github.com/letta-ai/letta-evals/issues/100)) ([9ce87cd](https://github.com/letta-ai/letta-evals/commit/9ce87cda70e167533b8d27763d53aad844e63313))
23+
* Make target spec a discriminated union ([#103](https://github.com/letta-ai/letta-evals/issues/103)) ([762b520](https://github.com/letta-ai/letta-evals/commit/762b520313e57107a756744f2990b325a4478d14))
24+
* Refactor AgentTarget to LettaAgentTarget ([#98](https://github.com/letta-ai/letta-evals/issues/98)) ([952d6f8](https://github.com/letta-ai/letta-evals/commit/952d6f80d50f6547ab557d8f1d6e445dd8364186))
25+
* Refactor Target to AbstractAgentTarget ([#99](https://github.com/letta-ai/letta-evals/issues/99)) ([bb632e0](https://github.com/letta-ai/letta-evals/commit/bb632e096607ad47f61ef83f9a64a98d966b964e))
26+
27+
28+
### Documentation
29+
30+
* Add letta code example to READMEs ([#102](https://github.com/letta-ai/letta-evals/issues/102)) ([2fe0f68](https://github.com/letta-ai/letta-evals/commit/2fe0f680106a7593543f7c283d8cc83671a0af67))
31+
* adjust ([2b16cd3](https://github.com/letta-ai/letta-evals/commit/2b16cd390378ea473d1f07690d9bd435b603ed04))
32+
* patch svg, update site ([64c3491](https://github.com/letta-ai/letta-evals/commit/64c34913e056a037af770b1d8ecc8c99ae1512ad))
33+
34+
35+
### Chores
36+
37+
* Add leaderboard results yaml and script ([#93](https://github.com/letta-ai/letta-evals/issues/93)) ([e24fb74](https://github.com/letta-ai/letta-evals/commit/e24fb74c373b19cf3fc7543d365f07de6b547ce7))
38+
* fix style ([#108](https://github.com/letta-ai/letta-evals/issues/108)) ([575be53](https://github.com/letta-ai/letta-evals/commit/575be5373d6362583f2c5c8bfeb5753835ff5a14))
39+
* relative routes bruh ([#109](https://github.com/letta-ai/letta-evals/issues/109)) ([d68ee95](https://github.com/letta-ai/letta-evals/commit/d68ee95cdde199381148c8e678eca71a8eb1e334))
40+
* whoops ([#107](https://github.com/letta-ai/letta-evals/issues/107)) ([53fc4eb](https://github.com/letta-ai/letta-evals/commit/53fc4eb4375d91e836b257c92462987b5f0fd07c))
41+
342
## [0.5.0](https://github.com/letta-ai/letta-evals/compare/letta-evals-v0.4.1...letta-evals-v0.5.0) (2025-10-23)
443

544

letta_evals/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
try:
2929
__version__: str = _pkg_version("letta-evals")
3030
except PackageNotFoundError:
31-
__version__ = "0.5.0"
31+
__version__ = "0.6.0"
3232

3333
__all__ = [
3434
"Sample",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "letta-evals"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
description = "Evaluation framework for Letta AI agents"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = "<3.14,>=3.11"

0 commit comments

Comments
 (0)