This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apt udate && apt install tmux zstd lshw && curl -fsSL https://ollama.com/install.sh | sh | |
| OLLAMA_MODELS=/workspace/models ollama serve & | |
| for model in "hf.co/mradermacher/Huihui-Qwen3-Coder-30B-A3B-Instruct-abliterated-i1-GGUF:Q4_K_M" "embeddinggemma:300m" "nomic-embed-text:latest" "qwen3-coder:30b " | |
| do | |
| ollama pull "$model" | |
| done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| from neo4j import GraphDatabase | |
| #from googletrans import Translator | |
| from pygoogletranslation import Translator | |
| NEODB_URL="bolt://localhost:7687" | |
| NEODB_USER="neo4j" | |
| NEODN_PWD="neo4j" | |
| TRANSLATE_FROM='translate.google.co.jp' |