Created
January 31, 2024 12:02
-
-
Save mrseanryan/2f168d1f268759e10601b09aa4b2db4a to your computer and use it in GitHub Desktop.
Download an LLM for use with text-generation-webui on Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Download an LLM for use with text-generation-webui on Ubuntu | |
pushd text-generation-webui | |
echo "=== === Downloading an LLM ..." | |
# python3 download-model.py TheBloke/CodeLlama-13B-GGUF | |
python3 download-model.py mistralai/Mistral-7B-v0.1 | |
echo "=== === [done]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment