mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
20 lines
383 B
Bash
Executable file
20 lines
383 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
test -n "$VERBOSE" && set -x
|
|
|
|
D="$(cd "$(dirname "$0")"/.. && pwd)"
|
|
VERSION="$(basename "$D")"
|
|
MODEL_DIR="${XDG_DATA_HOME:-$HOME/.local/share}/models"
|
|
|
|
export PATH="$D/tbin:$PATH"
|
|
|
|
gpt4all-fetch-model "$MODEL_DIR" "$VERSION"
|
|
|
|
if test "$1" != '--fetch'; then
|
|
exec "$D"/tbin/gpt4all \
|
|
--color \
|
|
--model "$MODEL_DIR"/gpt4all-lora-quantized.bin \
|
|
"$@"
|
|
fi
|