Files
Perplexica/src/lib/types.ts
2025-11-18 14:39:43 +05:30

10 lines
151 B
TypeScript

type Message = {
role: 'user' | 'assistant' | 'system';
content: string;
};
type Chunk = {
content: string;
metadata: Record<string, any>;
};