For my boys working while on the waitlist ...
Resolved 💬 2 comments Opened Feb 25, 2025 by ZmoleCristian Closed Feb 25, 2025
Ughhh
#!/bin/bash
while true;
do
response=$(curl -s 'https://console.anthropic.com/api/account/tengu_waitlist/YOUR FULL CURL STRING HERE \
-H 'Pragma: no-cache' \
-H 'Cache-Control: no-cache' \
-H 'TE: trailers' | jq -r '.is_allowed')
if [ "$response" == "true" ]; then
while true; do
echo -e '\a'
sleep 1
done
else
echo -n "😥"
fi
sleep 1
done
This issue has 2 comments on GitHub. Read the full discussion on GitHub ↗