Release 0.6.1

Refs #124
This commit is contained in:
Simon Willison 2023-07-24 08:41:05 -07:00
parent ef35acdd5e
commit 4484765efe
3 changed files with 9 additions and 1 deletions

View file

@ -1,5 +1,11 @@
# Changelog
(v0_6_1)=
## 0.6.1 (2023-07-24)
- LLM can now be installed directly from Homebrew core: `brew install llm`. [#124](https://github.com/simonw/llm/issues/124)
- Python API documentation now covers {ref}`python-api-system-prompts`.
(v0_6)=
## 0.6 (2023-07-18)

View file

@ -26,6 +26,8 @@ llm models list
```
If you have set a `OPENAI_API_KEY` environment variable you can omit the `model.key = ` line.
(python-api-system-prompts)=
### System prompts
For models that accept a system prompt, pass it as `system="..."`:

View file

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