24 lines
654 B
Bash
Executable File
24 lines
654 B
Bash
Executable File
#!/bin/bash
|
||
|
||
# Do not run this script if you don’t have at least 32 GiB of system memory,
|
||
# unless you have enabled the mmap option in the Ollama startup settings.
|
||
# Submitting PRs that lack translated strings is okay if you don’t meet the
|
||
# system requirements to run this script, or if you simply prefer not to; we are
|
||
# regularly updating the missing translation strings anyway.
|
||
#
|
||
# Base language: English (en.json)
|
||
|
||
set -e
|
||
cd "$(dirname "$0")"
|
||
|
||
bun install
|
||
|
||
export MODEL="gemma3:27b"
|
||
|
||
TEMPLATE="pl" bun main.ts
|
||
TEMPLATE="de" bun main.ts
|
||
TEMPLATE="ja" bun main.ts
|
||
TEMPLATE="es" bun main.ts
|
||
TEMPLATE="it" bun main.ts
|
||
TEMPLATE="zh_CN" bun main.ts
|