mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-11-20 20:18:15 +00:00
10 lines
151 B
TypeScript
10 lines
151 B
TypeScript
type Message = {
|
|
role: 'user' | 'assistant' | 'system';
|
|
content: string;
|
|
};
|
|
|
|
type Chunk = {
|
|
content: string;
|
|
metadata: Record<string, any>;
|
|
};
|