Skip to content

Commit 02852fe

Browse files
committed
Release 0.19a0
Refs #610, #641
1 parent cfb10f4 commit 02852fe

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

docs/changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
(v0_19a0)=
4+
## 0.19a0 (2024-11-19)
5+
6+
- Tokens used by a response are now logged to new `input_tokens` and `output_tokens` integer columns and a `token_details` JSON string column, for the default OpenAI models and models from other plugins that {ref}`implement this feature <advanced-model-plugins-usage>`. [#610](https://github.com/simonw/llm/issues/610)
7+
- `llm prompt` now takes a `-u/--usage` flag to display token usage at the end of the response.
8+
- `llm logs -u/--usage` shows token usage information for logged responses.
9+
- `llm prompt ... --async` responses are now logged to the database. [#641](https://github.com/simonw/llm/issues/641)
10+
311
(v0_18)=
412
## 0.18 (2024-11-17)
513

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22
import os
33

4-
VERSION = "0.18"
4+
VERSION = "0.19a0"
55

66

77
def get_long_description():

0 commit comments

Comments
 (0)