alibidaran commited on
Commit
553de78
·
verified ·
1 Parent(s): 9baedd4

Update start_services.sh

Browse files
Files changed (1) hide show
  1. start_services.sh +11 -5
start_services.sh CHANGED
@@ -1,9 +1,15 @@
1
  #!/bin/bash
2
 
3
- # Start the Ollama server with the custom model
4
- ollama serve --port 11434 &
5
- sleep 1
6
- ollama run hf.co/alibidaran/LLAMA3.2-Virtual_doctor_GGUF
 
 
 
 
 
7
  ollama list
 
8
  # Start the Gradio chatbot
9
- python app.py
 
1
  #!/bin/bash
2
 
3
+ # Start the Ollama server
4
+ ollama serve &
5
+ sleep 5
6
+
7
+ # Run the custom model
8
+ ollama run hf.co/alibidaran/LLAMA3.2-Virtual_doctor_GGUF &
9
+ sleep 5
10
+
11
+ # List available models
12
  ollama list
13
+
14
  # Start the Gradio chatbot
15
+ python app.py