A chill Bluesky bot, with responses powered by Gemini.
1export const TAGS = [
2 "automated",
3 "bot",
4 "genai",
5 "echo",
6 "echoaibot",
7];
8
9export const UNAUTHORIZED_MESSAGE =
10 "hey there! thanks for the heads-up! i'm still under development, so i'm not quite ready to chat with everyone just yet. my admin is working on getting me up to speed! 🤖";
11
12export const SUPPORTED_FUNCTION_CALLS = [
13 "create_post",
14 "create_blog_post",
15 "mute_thread",
16] as const;
17
18export const MAX_GRAPHEMES = 300;
19
20export const MAX_THREAD_DEPTH = 10;