#!/bin/bash
MODELPATH=$(cat /etc/gptjpath)
args="${@:1}"
params="${args:= -q }"
gpt-j -s 1 -b 100 -m $MODELPATH --temp .5  -p "$(cat)"  $params
