A React Native app for the ultimate thinking partner.
at sdk-v1-upgrade 16 lines 343 B view raw
1export * from './letta'; 2 3export interface AppState { 4 currentAgent: string | null; 5 agents: LettaAgent[]; 6 messages: Record<string, LettaMessage[]>; 7 isLoading: boolean; 8 error: string | null; 9 apiToken: string | null; 10} 11 12export interface NavigationState { 13 isDrawerOpen: boolean; 14} 15 16import { LettaAgent, LettaMessage } from './letta';