mirror of
https://github.com/Hopiu/llm.git
synced 2026-03-17 05:00:25 +00:00
parent
ef35acdd5e
commit
4484765efe
3 changed files with 9 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
|
|
@ -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="..."`:
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -1,7 +1,7 @@
|
|||
from setuptools import setup, find_packages
|
||||
import os
|
||||
|
||||
VERSION = "0.6"
|
||||
VERSION = "0.6.1"
|
||||
|
||||
|
||||
def get_long_description():
|
||||
|
|
|
|||
Loading…
Reference in a new issue