Mercurial
diff mrjunejune/assistant/BUILD @ 265:056790c4fb0d
add role-aware Epi assistant prompts
Add verified June knowledge, guest/member/admin Copilot profiles, profile-isolated session recovery, animated Epi greetings, and a single authoritative runtime config workflow for inference.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Fri, 07 Aug 2026 10:50:30 -0700 |
| parents | |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mrjunejune/assistant/BUILD Fri Aug 07 10:50:30 2026 -0700 @@ -0,0 +1,34 @@ +filegroup( + name = "prompts", + srcs = [ + "common.md", + "invited_friend.md", + "june_admin.md", + "public_visitor.md", + ], + visibility = [ + "//mrjunejune/inference:__pkg__", + "//mrjunejune:__pkg__", + ], +) + +filegroup( + name = "knowledge", + srcs = ["knowledge/public_facts.json"], + visibility = [ + "//mrjunejune/inference:__pkg__", + "//mrjunejune:__pkg__", + ], +) + +filegroup( + name = "all_files", + srcs = [ + ":knowledge", + ":prompts", + ], + visibility = [ + "//mrjunejune/inference:__pkg__", + "//mrjunejune:__pkg__", + ], +)