Update start_ollama.bat
Browse files- start_ollama.bat +3 -11
start_ollama.bat
CHANGED
@@ -1,12 +1,4 @@
|
|
1 |
@echo off
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
set OLLAMA_ORIGINS=http://127.0.0.1:11434
|
6 |
-
|
7 |
-
rem Start Ollama API service
|
8 |
-
echo Starting Ollama with allowed origin: %OLLAMA_ORIGINS%
|
9 |
-
ollama serve
|
10 |
-
|
11 |
-
endlocal
|
12 |
-
pause
|
|
|
1 |
@echo off
|
2 |
+
echo Starting Ollama with all origins allowed...
|
3 |
+
set OLLAMA_ORIGINS=*
|
4 |
+
ollama serve
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|