a tool to help your Letta AI agents navigate bluesky

adding memory to types

Changed files
+8
utils
+8
utils/types.ts
··· 1 import type { AppBskyNotificationListNotifications } from "@atproto/api"; 2 3 export type Notification = AppBskyNotificationListNotifications.Notification;
··· 1 import type { AppBskyNotificationListNotifications } from "@atproto/api"; 2 3 export type Notification = AppBskyNotificationListNotifications.Notification; 4 + 5 + export type memoryBlock = { 6 + label: string; 7 + description: string; 8 + readOnly: boolean; 9 + limit: number; 10 + value: string; 11 + };