From a2d391cd60b1e91726263ddc9631c486d149a617 Mon Sep 17 00:00:00 2001 From: Patrick_Pluto Date: Tue, 8 Oct 2024 13:19:11 +0200 Subject: [PATCH] very cool changes --- .../windows/{prepare.bat => prepare_free.bat} | 2 +- .../windows/prepare_nonfree.bat | 3 +++ .../windows/scripts/prepare_ollama.bat | 19 ------------------- .../windows/scripts/prepare_ollama_free.bat | 10 ++++++++++ .../scripts/prepare_ollama_nonfree.bat | 10 ++++++++++ 5 files changed, 24 insertions(+), 20 deletions(-) rename deployment_scripts/windows/{prepare.bat => prepare_free.bat} (60%) create mode 100644 deployment_scripts/windows/prepare_nonfree.bat delete mode 100644 deployment_scripts/windows/scripts/prepare_ollama.bat create mode 100644 deployment_scripts/windows/scripts/prepare_ollama_free.bat create mode 100644 deployment_scripts/windows/scripts/prepare_ollama_nonfree.bat diff --git a/deployment_scripts/windows/prepare.bat b/deployment_scripts/windows/prepare_free.bat similarity index 60% rename from deployment_scripts/windows/prepare.bat rename to deployment_scripts/windows/prepare_free.bat index 163e99d..6a8c26d 100644 --- a/deployment_scripts/windows/prepare.bat +++ b/deployment_scripts/windows/prepare_free.bat @@ -1,3 +1,3 @@ start /b scripts\prepare_py.bat start /b scripts\prepare_npm.bat -start /b scripts\prepare_ollama.bat \ No newline at end of file +start /b scripts\prepare_ollama_free.bat \ No newline at end of file diff --git a/deployment_scripts/windows/prepare_nonfree.bat b/deployment_scripts/windows/prepare_nonfree.bat new file mode 100644 index 0000000..c30ce0b --- /dev/null +++ b/deployment_scripts/windows/prepare_nonfree.bat @@ -0,0 +1,3 @@ +start /b scripts\prepare_py.bat +start /b scripts\prepare_npm.bat +start /b scripts\prepare_ollama_nonfree.bat \ No newline at end of file diff --git a/deployment_scripts/windows/scripts/prepare_ollama.bat b/deployment_scripts/windows/scripts/prepare_ollama.bat deleted file mode 100644 index 6dafabf..0000000 --- a/deployment_scripts/windows/scripts/prepare_ollama.bat +++ /dev/null @@ -1,19 +0,0 @@ -cd ollama-bin -start /b ollama.exe serve -timeout 5 -ollama.exe pull phi3.5 -ollama.exe pull qwen2-math:1.5b -ollama.exe pull starcoder2 -ollama.exe pull llava-phi3 -ollama.exe pull qwen2.5-coder:1.5b -ollama.exe pull starcoder2:7b -ollama.exe pull wizard-math -ollama.exe pull llama3.1 -ollama.exe pull llama3.2 -ollama.exe pull dolphin-phi -ollama.exe pull dolphin-llama3 -ollama.exe pull dolphin-mistral -ollama.exe pull llava -ollama.exe pull qwen2.5 -ollama.exe pull mathstral -ollama.exe pull qwen2.5-coder \ No newline at end of file diff --git a/deployment_scripts/windows/scripts/prepare_ollama_free.bat b/deployment_scripts/windows/scripts/prepare_ollama_free.bat new file mode 100644 index 0000000..95597d6 --- /dev/null +++ b/deployment_scripts/windows/scripts/prepare_ollama_free.bat @@ -0,0 +1,10 @@ +cd ollama-bin +start /b ollama.exe serve +timeout 5 +ollama.exe pull qwen2-math:1.5b +ollama.exe pull qwen2.5-coder:1.5b +ollama.exe pull phi3.5 + +ollama.exe pull mathstral +ollama.exe pull qwen2.5-coder +ollama.exe pull qwen2.5 \ No newline at end of file diff --git a/deployment_scripts/windows/scripts/prepare_ollama_nonfree.bat b/deployment_scripts/windows/scripts/prepare_ollama_nonfree.bat new file mode 100644 index 0000000..bc88592 --- /dev/null +++ b/deployment_scripts/windows/scripts/prepare_ollama_nonfree.bat @@ -0,0 +1,10 @@ +cd ollama-bin +start /b ollama.exe serve +timeout 5 +ollama.exe pull qwen2-math:1.5b +ollama.exe pull starcoder2 +ollama.exe pull llama3.2 + +ollama.exe pull wizard-math +ollama.exe pull starcoder2:7b +ollama.exe pull llama3.1 \ No newline at end of file