Add source to types

This commit is contained in:
Lucas Oliveira 2025-10-21 18:30:32 -03:00
parent d8671b71a7
commit fdb8669e60

View file

@ -4,6 +4,7 @@ export interface Message {
timestamp: Date;
functionCalls?: FunctionCall[];
isStreaming?: boolean;
source?: "langflow" | "chat";
}
export interface FunctionCall {