-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/sh | ||
# | ||
clear | ||
echo " | ||
_____ _ _ _ _ | ||
| |___ ___ ___| |_ ___ _| | | |_ _ _ |_| | ||
| --| _| -_| .'| _| -_| . | | . | | | _ | ||
|_____|_| |___|__,|_| |___|___| |___|_ | |_| | ||
|___| | ||
_____ _ _ _ _ _____ __ _____ | ||
| | |_ ___|_|___| |_ ___ ___| |_ ___ ___ | |__| | | __|___ ___ _ _ | ||
| --| | _| |_ -| _| . | . | | -_| _| | | | | | | | | | _| .'| | | | ||
|_____|_|_|_| |_|___|_| |___| _|_|_|___|_| |_|_|_|_____| |_____|_| |__,|_ | | ||
|_| |___| | ||
\r\n \r\n | ||
Version: 0.0.1 \r\n | ||
Last Updated: 12/5/2024 | ||
" | ||
echo "Downloading required dependencies...\r\n\r\n" | ||
#-------------------------------------------------------------------------------------------- | ||
curl -fsSL https://ollama.com/install.sh | sh | ||
ollama list | ||
|
||
#-- good for Text | ||
ollama pull llama3.2 | ||
#ollama pull gemma2:2b | ||
#ollama pull phi3.5 | ||
|
||
#-- good for Images | ||
#ollama pull llama3.2-vision:11b | ||
ollama pull llava:7b | ||
#ollama pull llava-llama3 | ||
|
||
#--- EMBEDDINGS (RAG) ------- | ||
ollama pull nomic-embed-text | ||
#ollama pull mxbai-embed-large | ||
|
||
ollama list |