From 3afe82f7a6eed45b0f5484861952535426e7c6ec Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Wed, 12 Jul 2023 07:09:16 -0700 Subject: [PATCH] New tagline, link to shortly-to-be-published blog entry, refs #88 --- README.md | 6 ++++-- docs/index.md | 6 +++++- setup.py | 5 ++++- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 74faaee9..6da84d8a 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,13 @@ [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/simonw/llm/blob/main/LICENSE) [![Discord](https://img.shields.io/discord/823971286308356157?label=discord)](https://datasette.io/discord-llm) -Access large language models from the command-line +A CLI utility and Python library for interacting with Large Language Models, including OpenAI, PaLM and local models installed on your own machine. Full documentation: **[llm.datasette.io](https://llm.datasette.io/)** -See [llm, ttok and strip-tags—CLI tools for working with ChatGPT and other LLMs](https://simonwillison.net/2023/May/18/cli-tools-for-llms/) for more on this project. +Background on this project: +- [llm, ttok and strip-tags—CLI tools for working with ChatGPT and other LLMs](https://simonwillison.net/2023/May/18/cli-tools-for-llms/) +- [The LLM CLI tool now supports self-hosted language models via plugins](https://simonwillison.net/2023/Jul/12/llm/) ## Installation diff --git a/docs/index.md b/docs/index.md index 978e9c3b..275f3490 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,7 +6,11 @@ [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/simonw/llm/blob/main/LICENSE) [![Discord](https://img.shields.io/discord/823971286308356157?label=discord)](https://datasette.io/discord-llm) -A command-line utility for interacting with Large Language Models, including OpenAI, PaLM and local models installed on your own machine. +A CLI utility and Python library for interacting with Large Language Models, including OpenAI, PaLM and local models installed on your own machine. + +Background on this project: +- [llm, ttok and strip-tags—CLI tools for working with ChatGPT and other LLMs](https://simonwillison.net/2023/May/18/cli-tools-for-llms/) +- [The LLM CLI tool now supports self-hosted language models via plugins](https://simonwillison.net/2023/Jul/12/llm/) ## Quick start diff --git a/setup.py b/setup.py index 536937df..4435f0fa 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,10 @@ def get_long_description(): setup( name="llm", - description="Access large language models from the command-line", + description=( + "A CLI utility and Python library for interacting with Large Language Models, " + "including OpenAI, PaLM and local models installed on your own machine.", + ), long_description=get_long_description(), long_description_content_type="text/markdown", author="Simon Willison",