diff --git a/docs/changelog.md b/docs/changelog.md index 32a78412..d652c4eb 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,10 @@ # Changelog +(v0_19a2)= +## 0.19a2 (2024-11-20) + +- `llm.get_models()` and `llm.get_async_models()` functions, {ref}`documented here `. [#640](https://github.com/simonw/llm/issues/640) + (v0_19a1)= ## 0.19a1 (2024-11-19) diff --git a/docs/python-api.md b/docs/python-api.md index 9710698f..a7ad2ab3 100644 --- a/docs/python-api.md +++ b/docs/python-api.md @@ -99,6 +99,8 @@ print(response.text()) ``` Some models do not use API keys at all. +(python-api-listing-models)= + ### Listing models The `llm.get_models()` list returns a list of all available models, including those from plugins. diff --git a/setup.py b/setup.py index d09d2d84..7dca8b22 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import os -VERSION = "0.19a1" +VERSION = "0.19a2" def get_long_description():