mirror of
https://github.com/Hopiu/llm.git
synced 2026-05-02 19:04:52 +00:00
New tagline, link to shortly-to-be-published blog entry, refs #88
This commit is contained in:
parent
adcf691678
commit
3afe82f7a6
3 changed files with 13 additions and 4 deletions
|
|
@ -7,11 +7,13 @@
|
|||
[](https://github.com/simonw/llm/blob/main/LICENSE)
|
||||
[](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
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,11 @@
|
|||
[](https://github.com/simonw/llm/blob/main/LICENSE)
|
||||
[](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
|
||||
|
||||
|
|
|
|||
5
setup.py
5
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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue