Files
OpenLLM/tools/typings
HeTaoPKU 09b0787306 feat(models): Baichuan (#115)
Co-authored-by: the <tao.he@hulu.com>
Co-authored-by: Aaron <29749331+aarnphm@users.noreply.github.com>
2023-07-15 22:01:37 -04:00

10 lines
209 B
Bash
Executable File

#!/usr/bin/env bash
# Check if pyright is installed, otherwise exit 1
[[ -x "$(command -v pyright)" ]] || (
echo "pyright not found"
exit 1
)
pyright src/openllm --level error 2> /dev/null || exit 0