From 4484765efee6dbcb7b968ceef62fffbd108e09b2 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 24 Jul 2023 08:41:05 -0700 Subject: [PATCH] Release 0.6.1 Refs #124 --- docs/changelog.md | 6 ++++++ docs/python-api.md | 2 ++ setup.py | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index a4f1462..f0543a7 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -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) diff --git a/docs/python-api.md b/docs/python-api.md index 6c7e60b..e584527 100644 --- a/docs/python-api.md +++ b/docs/python-api.md @@ -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="..."`: diff --git a/setup.py b/setup.py index a91df21..3e09972 100644 --- a/setup.py +++ b/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():