mirror of
https://github.com/Hopiu/llm.git
synced 2026-04-27 00:14:46 +00:00
parent
8a7b0c4f5d
commit
845322e970
2 changed files with 6 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -1,7 +1,7 @@
|
|||
from setuptools import setup, find_packages
|
||||
import os
|
||||
|
||||
VERSION = "0.19a0"
|
||||
VERSION = "0.19a1"
|
||||
|
||||
|
||||
def get_long_description():
|
||||
|
|
|
|||
Loading…
Reference in a new issue