llm/README.md

63 lines
1.6 KiB
Markdown
Raw Normal View History

# LLM
2023-04-01 21:28:24 +00:00
2023-04-01 22:00:16 +00:00
[![PyPI](https://img.shields.io/pypi/v/llm.svg)](https://pypi.org/project/llm/)
2023-06-17 09:13:56 +00:00
[![Documentation](https://readthedocs.org/projects/llm/badge/?version=latest)](https://llm.datasette.io/)
2023-06-17 17:03:05 +00:00
[![Changelog](https://img.shields.io/github/v/release/simonw/llm?include_prereleases&label=changelog)](https://llm.datasette.io/en/stable/changelog.html)
2023-04-01 22:00:16 +00:00
[![Tests](https://github.com/simonw/llm/workflows/Test/badge.svg)](https://github.com/simonw/llm/actions?query=workflow%3ATest)
2023-07-03 20:10:30 +00:00
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/simonw/llm/blob/main/LICENSE)
2023-04-01 21:28:24 +00:00
Access large language models from the command-line
2023-06-17 09:13:56 +00:00
Full documentation: **[llm.datasette.io](https://llm.datasette.io/)**
2023-05-18 22:41:59 +00:00
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.
2023-04-01 21:28:24 +00:00
## Installation
Install this tool using `pip`:
2023-04-01 22:00:16 +00:00
pip install llm
2023-04-01 21:28:24 +00:00
Or using [Homebrew](https://brew.sh/):
brew install simonw/llm/llm
2023-06-17 09:13:56 +00:00
[Detailed installation instructions](https://llm.datasette.io/en/stable/setup.html).
## Getting started
First, create an OpenAI API key and save it to the tool like this:
```
llm keys set openai
```
This will prompt you for your key like so:
```
$ llm keys set openai
Enter key:
```
Now that you've saved a key you can run a prompt like this:
```
llm "Five cute names for a pet penguin"
```
```
1. Waddles
2. Pebbles
3. Bubbles
4. Flappy
5. Chilly
```
Read the [usage instructions](https://llm.datasette.io/en/stable/usage.html) for more.
2023-04-02 01:52:46 +00:00
2023-04-01 21:28:24 +00:00
## Help
For help, run:
llm --help
You can also use:
python -m llm --help