A simple Bluesky bot to make sense of the noise, with responses powered by Gemini, similar to Grok.
1# Comma-separated list of users who can use the bot (delete var if you want everyone to be able to use it)
2AUTHORIZED_USERS=""
3
4# PDS service URL (optional)
5SERVICE="https://bsky.social"
6
7DB_PATH="sqlite.db"
8GEMINI_MODEL="gemini-2.5-flash"
9
10DID=""
11HANDLE=""
12
13# https://bsky.app/settings/app-passwords
14APP_PASSWORD=""
15
16# https://aistudio.google.com/apikey
17GEMINI_API_KEY=""
18
19DAILY_QUERY_LIMIT=15
20USE_JETSTREAM=false