New tagline, link to shortly-to-be-published blog entry, refs #88

This commit is contained in:
Simon Willison 2023-07-12 07:09:16 -07:00
parent adcf691678
commit 3afe82f7a6
3 changed files with 13 additions and 4 deletions

View file

@ -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

View file

@ -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

View file

@ -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",