diff --git a/CHANGELOG.md b/CHANGELOG.md index 11d2db1..b98d853 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/tutorials/tlm_structured_outputs/index.ipynb b/docs/tutorials/tlm_structured_outputs/index.ipynb index fda38cd..379fc96 100644 --- a/docs/tutorials/tlm_structured_outputs/index.ipynb +++ b/docs/tutorials/tlm_structured_outputs/index.ipynb @@ -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:" ] @@ -59,7 +59,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "id": "b9bc6a28-1873-4b02-8624-16faffca9108", "metadata": {}, "outputs": [], @@ -67,11 +67,7 @@ "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" ] }, { diff --git a/tlm/__about__.py b/tlm/__about__.py index f102a9c..3b93d0b 100644 --- a/tlm/__about__.py +++ b/tlm/__about__.py @@ -1 +1 @@ -__version__ = "0.0.1" +__version__ = "0.0.2"