Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.0.1] 2026-01-12
- Add structured outputs functionality.

[Unreleased]: https://github.com/cleanlab/tlm/compare/v0.0.1...HEAD
## [0.0.2] 2026-02-22
- Improve structured outputs functionality + tutorial

[Unreleased]: https://github.com/cleanlab/tlm/compare/v0.0.2...HEAD
[0.0.2]: https://github.com/cleanlab/tlm/commits/v0.0.2
[0.0.1]: https://github.com/cleanlab/tlm/commits/v0.0.1
[0.0.0]: https://github.com/cleanlab/tlm/commits/v0.0.0
10 changes: 3 additions & 7 deletions docs/tutorials/tlm_structured_outputs/index.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"id": "9c07e776-adf9-4246-8a98-7d19d2fcb422",
"metadata": {},
"source": [
"This tutorial requires an API key for an LLM provider. Some possibilities include: `OPENAI_API_KEY`, GEMINI_API_KEY, DEEPSEEK_API_KEY, AWS_ACCESS_KEY_ID/AWS_SECRET_ACCESS_KEY, etc.\n",
"This tutorial requires an API key for an LLM provider. Some possibilities include: `OPENAI_API_KEY`, `GEMINI_API_KEY`, `DEEPSEEK_API_KEY`, `AWS_ACCESS_KEY_ID`/`AWS_SECRET_ACCESS_KEY`, etc.\n",
"\n",
"The TLM Python client can be installed using pip:"
]
Expand Down Expand Up @@ -59,19 +59,15 @@
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": null,
"id": "b9bc6a28-1873-4b02-8624-16faffca9108",
"metadata": {},
"outputs": [],
"source": [
"from pydantic import create_model\n",
"from typing import Optional\n",
"\n",
"from tlm import TLM\n",
"\n",
"import warnings\n",
"\n",
"warnings.filterwarnings(\"ignore\")"
"from tlm import TLM"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tlm/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.1"
__version__ = "0.0.2"