import {Annotation, MessagesAnnotation} from '@langchain/langgraph'; import {Message} from '../models'; export const ChatGraphAnnotation = Annotation.Root({ ...MessagesAnnotation.spec, id: Annotation, files: Annotation, prompt: Annotation, userMessage: Annotation, aiMessage: Annotation, }); export type ChatState = typeof ChatGraphAnnotation.State;