Skip to content

Commit

Permalink
Update docs to no longer mention PaLM
Browse files Browse the repository at this point in the history
!stable-docs
  • Loading branch information
simonw committed Feb 17, 2025
1 parent 64f9f2e commit e46cb7e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 13 deletions.
1 change: 0 additions & 1 deletion docs/plugins/directory.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ These plugins can be used to interact with remotely hosted models via their API:
- **[llm-anyscale-endpoints](https://github.com/simonw/llm-anyscale-endpoints)** supports models hosted on the [Anyscale Endpoints](https://app.endpoints.anyscale.com/) platform, including Llama 2 70B.
- **[llm-replicate](https://github.com/simonw/llm-replicate)** adds support for remote models hosted on [Replicate](https://replicate.com/), including Llama 2 from Meta AI.
- **[llm-fireworks](https://github.com/simonw/llm-fireworks)** supports models hosted by [Fireworks AI](https://fireworks.ai/).
- **[llm-palm](https://github.com/simonw/llm-palm)** adds support for Google's [PaLM 2 model](https://developers.generativeai.google/).
- **[llm-openrouter](https://github.com/simonw/llm-openrouter)** provides access to models hosted on [OpenRouter](https://openrouter.ai/).
- **[llm-cohere](https://github.com/Accudio/llm-cohere)** by Alistair Shepherd provides `cohere-generate` and `cohere-summarize` API models, powered by [Cohere](https://cohere.com/).
- **[llm-bedrock](https://github.com/simonw/llm-bedrock)** adds support for Nova by Amazon via Amazon Bedrock.
Expand Down
28 changes: 18 additions & 10 deletions docs/plugins/installing-plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,34 +38,42 @@ llm plugins
```json
[
{
"name": "llm-mpt30b",
"name": "llm-anthropic",
"hooks": [
"register_commands",
"register_models"
],
"version": "0.1"
"version": "0.11"
},
{
"name": "llm-palm",
"name": "llm-gguf",
"hooks": [
"register_commands",
"register_models"
],
"version": "0.1"
"version": "0.1a0"
},
{
"name": "llm.default_plugins.openai_models",
"name": "llm-clip",
"hooks": [
"register_commands",
"register_models"
]
"register_embedding_models"
],
"version": "0.1"
},
{
"name": "llm-gpt4all",
"name": "llm-cmd",
"hooks": [
"register_commands"
],
"version": "0.2a0"
},
{
"name": "llm-gemini",
"hooks": [
"register_embedding_models",
"register_models"
],
"version": "0.1"
"version": "0.3"
}
]
```
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ def get_long_description():
setup(
name="llm",
description=(
"A CLI utility and Python library for interacting with Large Language Models, "
"including OpenAI, PaLM and local models installed on your own machine."
"CLI utility and Python library for interacting with Large Language Models from "
"organizations like OpenAI, Anthropic and Gemini plus local models installed on your own machine."
),
long_description=get_long_description(),
long_description_content_type="text/markdown",
Expand Down

0 comments on commit e46cb7e

Please sign in to comment.