Add fuzzy and text-classification light model #1

Merged
Tjiho merged 18 commits from fuzzy into master 2025-02-01 01:35:11 +01:00
Showing only changes of commit 7b2cff5ff2 - Show all commits

12
await.sh Executable file
View file

@ -0,0 +1,12 @@
while [[ 1 == 1 ]]; do
/bin/sleep 10
code=$(curl -o /dev/null -s -w "%{http_code}\n" 10.10.10.8)
echo "10.10.10.8 return code $code"
if [ $code = '200' ]; then
exit 0;
else
echo "retrying in 10s";
fi
done