| 1 | // Chat Types |
| 2 | export 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 |
| 14 | export interface Pipeline { |
nothing calls this directly
no outgoing calls
no test coverage detected