forked from React-Group/interstellar_ai
Compare commits
7 commits
5640d09dab
...
a3f40c2d25
Author | SHA1 | Date | |
---|---|---|---|
a3f40c2d25 | |||
|
a2d391cd60 | ||
|
e522c0af2f | ||
|
b50b7afbe3 | ||
|
43a5c1589c | ||
|
1c840462d1 | ||
72f2d23019 |
13 changed files with 45 additions and 33 deletions
|
@ -1,5 +1,7 @@
|
||||||
You will need to make three folders:
|
You will need to make three folders:
|
||||||
|
|
||||||
node - contains nodejs portable
|
node-bin - contains nodejs portable
|
||||||
py - contains python3 portable
|
python-bin - contains python3 portable - don't forget to add the .pth file and adjust it accordingly, because import site is normally missing.
|
||||||
ollama - contains ollama portable
|
ollama.bin - contains ollama portable
|
||||||
|
|
||||||
|
you also need vc redist 2019
|
|
@ -1,3 +1,3 @@
|
||||||
start /b scripts\prepare_py.bat
|
start /b scripts\prepare_py.bat
|
||||||
start /b scripts\prepare_npm.bat
|
start /b scripts\prepare_npm.bat
|
||||||
start /b scripts\prepare_ollama.bat
|
start /b scripts\prepare_ollama_free.bat
|
3
deployment_scripts/windows/prepare_nonfree.bat
Normal file
3
deployment_scripts/windows/prepare_nonfree.bat
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
start /b scripts\prepare_py.bat
|
||||||
|
start /b scripts\prepare_npm.bat
|
||||||
|
start /b scripts\prepare_ollama_nonfree.bat
|
5
deployment_scripts/windows/python313._pth
Normal file
5
deployment_scripts/windows/python313._pth
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
python313.zip
|
||||||
|
.
|
||||||
|
|
||||||
|
# Uncomment to run site.main() automatically
|
||||||
|
import site
|
|
@ -1,5 +1,5 @@
|
||||||
cd node-bin
|
cd node-bin
|
||||||
set PATH=%PATH%;%CD%
|
set PATH=%PATH%;"%CD%";
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
npm install
|
npm install
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
cd ollama-bin
|
|
||||||
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 llava
|
|
||||||
ollama.exe pull qwen2.5
|
|
||||||
ollama.exe pull mathstral
|
|
||||||
ollama.exe pull qwen2.5-coder
|
|
10
deployment_scripts/windows/scripts/prepare_ollama_free.bat
Normal file
10
deployment_scripts/windows/scripts/prepare_ollama_free.bat
Normal file
|
@ -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
|
|
@ -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
|
|
@ -1,11 +1,13 @@
|
||||||
cd python-bin
|
cd python-bin
|
||||||
set PATH=%PATH%;%CD%
|
set PATH=%PATH%;"%CD%";
|
||||||
curl -O https://bootstrap.pypa.io/get-pip.py
|
curl -O https://bootstrap.pypa.io/get-pip.py
|
||||||
python get-pip.py
|
ren python.exe py.exe
|
||||||
|
py get-pip.py
|
||||||
cd Scripts
|
cd Scripts
|
||||||
set PATH=%PATH%;%CD%
|
set PATH=%PATH%;"%CD%";
|
||||||
cd ..
|
cd ..
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
cd py
|
cd py
|
||||||
python -m pip install -r requirements.txt
|
py -m pip install setuptools
|
||||||
|
py -m pip install -r requirements.txt
|
|
@ -1,5 +1,5 @@
|
||||||
cd node-bin
|
cd node-bin
|
||||||
set PATH=%PATH%;%CD%
|
set PATH=%PATH%;"%CD%";
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
start /b npm start
|
start /b npm start
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
cd ollama-bin
|
cd ollama-bin
|
||||||
"ollama app.exe"
|
start /b ollama.exe serve
|
|
@ -1,7 +1,7 @@
|
||||||
cd python-bin
|
cd python-bin
|
||||||
set PATH=%PATH%;%CD%
|
set PATH=%PATH%;"%CD%";
|
||||||
cd Scripts
|
cd Scripts
|
||||||
set PATH=%PATH%;%CD%
|
set PATH=%PATH%;"%CD%";
|
||||||
cd ..
|
cd ..
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
|
|
|
@ -5,14 +5,10 @@ mistralai
|
||||||
openai
|
openai
|
||||||
anthropic
|
anthropic
|
||||||
pyOpenSSL
|
pyOpenSSL
|
||||||
SpeechRecognition
|
|
||||||
PocketSphinx
|
|
||||||
google-cloud-speech
|
|
||||||
google-generativeai
|
google-generativeai
|
||||||
python-weather
|
python-weather
|
||||||
pycouchdb
|
pycouchdb
|
||||||
pyttsx3
|
pyttsx3
|
||||||
pip-licenses
|
|
||||||
faster-whisper
|
faster-whisper
|
||||||
pydub
|
pydub
|
||||||
ffmpeg
|
ffmpeg
|
Loading…
Reference in a new issue