Sébastien De Greef commited on
Commit
d473058
·
1 Parent(s): 95888be

Update start_server.sh script to pull additional models and create new models

Browse files
Files changed (1) hide show
  1. start_server.sh +5 -6
start_server.sh CHANGED
@@ -2,12 +2,11 @@
2
  ollama serve &
3
 
4
  ollama pull mistral:7b > /dev/null 2>&1
5
- ollama create mistral4k:7b --file .\mistral7b.Modelfile > /dev/null 2>&1
6
-
7
- ollama pull llama3:8b > /dev/null 2>&1
8
- ollama create llama38k:8b --file .\llama38b.Modelfile > /dev/null 2>&1
9
 
10
- ollama pull gemma:2b > /dev/null 2>&1
11
- ollama pull gemma:7b > /dev/null 2>&1
12
 
13
  python main.py
 
2
  ollama serve &
3
 
4
  ollama pull mistral:7b > /dev/null 2>&1
5
+ ollama pull llama3:8b > /dev/null 2>&1
6
+ ollama pull gemma:2b > /dev/null 2>&1
7
+ ollama pull gemma:7b > /dev/null 2>&1
 
8
 
9
+ ollama create mistral4k:7b --file .\mistral7b.Modelfile > /dev/null 2>&1
10
+ ollama create llama38k:8b --file .\llama38b.Modelfile > /dev/null 2>&1
11
 
12
  python main.py