mirror of
https://github.com/Hopiu/llm.git
synced 2026-03-28 02:10:27 +00:00
parent
0699bb5e27
commit
3533e7027d
2 changed files with 7 additions and 1 deletions
|
|
@ -1,5 +1,11 @@
|
|||
# Changelog
|
||||
|
||||
(v0_10_a0)=
|
||||
## 0.10a0 (2023-09-04)
|
||||
|
||||
- New {ref}`llm chat <usage-chat>` command for starting an interactive terminal chat with a model. [#231](https://github.com/simonw/llm/issues/231)
|
||||
- `llm embed-multi --files` now has an `--encoding` option and defaults to falling back to `latin-1` if a file cannot be processed as `utf-8`. [#225](https://github.com/simonw/llm/issues/225)
|
||||
|
||||
(v0_9)=
|
||||
## 0.9 (2023-09-03)
|
||||
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -1,7 +1,7 @@
|
|||
from setuptools import setup, find_packages
|
||||
import os
|
||||
|
||||
VERSION = "0.9"
|
||||
VERSION = "0.10a0"
|
||||
|
||||
|
||||
def get_long_description():
|
||||
|
|
|
|||
Loading…
Reference in a new issue