Compare commits
No commits in common. "31918868a8b3c22cedf307a89783f0c60b8ac89f" and "1fbfa077cdd8cf5e6cb06f816440e41198eab0b3" have entirely different histories.
31918868a8
...
1fbfa077cd
4 changed files with 0 additions and 60 deletions
|
@ -1,21 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
chmod +x root.sh
|
|
||||||
pkexec ./root.sh
|
|
||||||
npm install
|
|
||||||
npm run build
|
|
||||||
|
|
||||||
cd py
|
|
||||||
python -m venv venv
|
|
||||||
source venv/bin/activate
|
|
||||||
python3 -m pip install -r requirements.txt
|
|
||||||
|
|
||||||
ollama pull qwen2-math:1.5b
|
|
||||||
ollama pull starcoder2
|
|
||||||
ollama pull llama3.2
|
|
||||||
|
|
||||||
ollama pull wizard-math
|
|
||||||
ollama pull starcoder2:7b
|
|
||||||
ollama pull llama3.1
|
|
||||||
|
|
||||||
chmod +x run.sh
|
|
|
@ -1,21 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
chmod +x root.sh
|
|
||||||
pkexec ./root.sh
|
|
||||||
npm install
|
|
||||||
npm run build
|
|
||||||
|
|
||||||
cd py
|
|
||||||
python -m venv venv
|
|
||||||
source venv/bin/activate
|
|
||||||
python3 -m pip install -r requirements.txt
|
|
||||||
|
|
||||||
ollama pull qwen2-math:1.5b
|
|
||||||
ollama pull qwen2.5-coder:1.5b
|
|
||||||
ollama pull phi3.5
|
|
||||||
|
|
||||||
ollama pull mathstral
|
|
||||||
ollama pull qwen2.5-coder
|
|
||||||
ollama pull qwen2.5
|
|
||||||
|
|
||||||
chmod +x run.sh
|
|
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
apt install npm nodejs python3-pip
|
|
||||||
curl -fsSL https://ollama.com/install.sh | sh
|
|
||||||
systemctl enable ollama --now
|
|
|
@ -1,13 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
cd py
|
|
||||||
python api.py &
|
|
||||||
pid_py=$!
|
|
||||||
|
|
||||||
npm start &
|
|
||||||
pid_node=$!
|
|
||||||
|
|
||||||
npx electron .
|
|
||||||
|
|
||||||
kill $pid_py
|
|
||||||
kill $pid_node
|
|
Loading…
Add table
Reference in a new issue