Skip to content

Commit 1819e16

Browse files
authored
Bump version (0.0.2) (#46)
1 parent 5e5bcac commit 1819e16

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
## [0.0.1] 2026-01-12
1414
- Add structured outputs functionality.
1515

16-
[Unreleased]: https://github.com/cleanlab/tlm/compare/v0.0.1...HEAD
16+
## [0.0.2] 2026-02-22
17+
- Improve structured outputs functionality + tutorial
18+
19+
[Unreleased]: https://github.com/cleanlab/tlm/compare/v0.0.2...HEAD
20+
[0.0.2]: https://github.com/cleanlab/tlm/commits/v0.0.2
1721
[0.0.1]: https://github.com/cleanlab/tlm/commits/v0.0.1
1822
[0.0.0]: https://github.com/cleanlab/tlm/commits/v0.0.0

docs/tutorials/tlm_structured_outputs/index.ipynb

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"id": "9c07e776-adf9-4246-8a98-7d19d2fcb422",
3030
"metadata": {},
3131
"source": [
32-
"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",
32+
"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",
3333
"\n",
3434
"The TLM Python client can be installed using pip:"
3535
]
@@ -59,19 +59,15 @@
5959
},
6060
{
6161
"cell_type": "code",
62-
"execution_count": 3,
62+
"execution_count": null,
6363
"id": "b9bc6a28-1873-4b02-8624-16faffca9108",
6464
"metadata": {},
6565
"outputs": [],
6666
"source": [
6767
"from pydantic import create_model\n",
6868
"from typing import Optional\n",
6969
"\n",
70-
"from tlm import TLM\n",
71-
"\n",
72-
"import warnings\n",
73-
"\n",
74-
"warnings.filterwarnings(\"ignore\")"
70+
"from tlm import TLM"
7571
]
7672
},
7773
{

tlm/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.1"
1+
__version__ = "0.0.2"

0 commit comments

Comments
 (0)