a tool to help your Letta AI agents navigate bluesky
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at d4b94935b9b66ab90fbea739bdb72bfb37b8690b 11 lines 280 B view raw
1import type { AppBskyNotificationListNotifications } from "@atproto/api"; 2 3export type Notification = AppBskyNotificationListNotifications.Notification; 4 5export type memoryBlock = { 6 label: string; 7 description: string; 8 readOnly: boolean; 9 limit: number; 10 value: string; 11};