Access large language models from the command-line
Find a file
2023-07-15 15:55:13 -07:00
.github/workflows Show cog on usage.md to help debug #82 2023-07-10 14:00:21 -07:00
docs llm logs list -m model_id/alias option, closes #108 2023-07-15 15:55:13 -07:00
llm llm logs list -m model_id/alias option, closes #108 2023-07-15 15:55:13 -07:00
tests llm logs list -m model_id/alias option, closes #108 2023-07-15 15:55:13 -07:00
.gitignore Initial prototype, refs #1 2023-04-01 14:28:24 -07:00
Justfile Useful extra output for just lint 2023-07-15 10:00:04 -07:00
LICENSE Initial prototype, refs #1 2023-04-01 14:28:24 -07:00
MANIFEST.in Don't include tests/ in the package 2023-07-01 11:45:00 -07:00
mypy.ini Added mypy, plus some fixes to make it happy - refs #77 2023-07-02 12:36:22 -07:00
README.md Warn that Homebrew is much slower 2023-07-12 09:01:38 -07:00
ruff.toml Lint using Ruff, refs #78 2023-07-02 12:41:40 -07:00
setup.py Don't use openai.api_key global, refs #107 2023-07-14 14:07:42 -07:00

LLM

PyPI Documentation Changelog Tests License Discord

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

Background on this project:

Installation

Install this tool using pip:

pip install llm

Or using Homebrew (much slower):

brew install simonw/llm/llm

Detailed installation instructions.

Getting started

If you have an OpenAI API key you can get started using the OpenAI models right away.

As an alternative to OpenAI, you can install plugins to access models by other providers, including models that can be installed and run on your own device.

Save your OpenAI API key like this:

llm keys set openai

This will prompt you for your key like so:

llm keys set openai
Enter key: <paste here>

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 for more.

Using a system prompt

You can use the -s/--system option to set a system prompt, providing instructions for processing other input to the tool.

To describe how the code a file works, try this:

cat mycode.py | llm -s "Explain this code"

Help

For help, run:

llm --help

You can also use:

python -m llm --help