Files
firecrawl/examples/example_web_apps/local-website-chatbot/schema/ChatWindowMessage.ts
T

6 lines
117 B
TypeScript
Raw Normal View History

2024-06-21 15:40:46 -04:00
export type ChatWindowMessage = {
content: string;
role: "human" | "ai";
runId?: string;
traceUrl?: string;
}