MCPcopy Create free account
hub / github.com/ScrapeGraphAI/scrapecraft / ChatMessage

Interface ChatMessage

frontend/src/types/index.ts:2–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1// Chat Types
2export interface ChatMessage {
3 id: string;
4 role: 'user' | 'assistant' | 'system';
5 content: string;
6 timestamp: string;
7 metadata?: {
8 toolsUsed?: string[];
9 executionTime?: number;
10 };
11}
12
13// Pipeline Types
14export interface Pipeline {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected