renamed hf-embed -> help

This commit is contained in:
Paul Gauthier 2024-07-16 10:58:49 +01:00
parent bd8143a880
commit b18dbf4772
8 changed files with 23 additions and 22 deletions

View file

@ -15,14 +15,14 @@ warnings.simplefilter("ignore", category=FutureWarning)
def install_help_extra(io):
pip_install_cmd = [
"aider-chat[hf-embed]",
"aider-chat[help]",
"--extra-index-url",
"https://download.pytorch.org/whl/cpu",
]
res = utils.check_pip_install_extra(
io,
"llama_index.embeddings.huggingface",
"To use interactive /help you need to install HuggingFace embeddings",
"To use interactive /help you need to install the help extras",
pip_install_cmd,
)
return res