Add source to types

This commit is contained in:
Lucas Oliveira 2025-10-21 18:30:32 -03:00 committed by Mike Fortman
parent 7f7ed5b29a
commit e76f7300ba

View file

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