#!/bin/sh
[ -n "${IPKG_INSTROOT}" ] || {
	echo ""
	echo "SecuBox LocalAI installed"
	echo ""
	echo "Quick start:"
	echo "  localaictl install"
	echo "  localaictl model-install tinyllama"
	echo "  /etc/init.d/localai enable"
	echo "  /etc/init.d/localai start"
	echo ""
	echo "API: http://<router-ip>:8081/v1"
}
exit 0
