Spaces:
Runtime error
Runtime error
Update start_services.sh
Browse files- start_services.sh +11 -5
start_services.sh
CHANGED
@@ -1,9 +1,15 @@
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
-
# Start the Ollama server
|
4 |
-
ollama serve
|
5 |
-
sleep
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
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
|