Release 0.19a1

Refs #644
This commit is contained in:
Simon Willison 2024-11-19 21:28:01 -08:00
parent 8a7b0c4f5d
commit 845322e970
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,10 @@
# Changelog
(v0_19a1)=
## 0.19a1 (2024-11-19)
- `response.usage()` and async response `await response.usage()` methods, returning a `Usage(input=2, output=1, details=None)` dataclass. [#644](https://github.com/simonw/llm/issues/644)
(v0_19a0)=
## 0.19a0 (2024-11-19)

View file

@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import os
VERSION = "0.19a0"
VERSION = "0.19a1"
def get_long_description():