-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
44 lines (37 loc) · 786 Bytes
/
Copy pathtypes.ts
File metadata and controls
44 lines (37 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
export enum GeminiModel {
FLASH = 'gemini-3-flash-preview',
PRO = 'gemini-3-pro-preview',
CHATGPT = 'chatgpt-alias',
PERPLEXITY = 'perplexity-alias',
LMARENA = 'lmarena-alias'
}
export type AppMode = 'explain' | 'generate';
export interface DiagramNode {
id: string;
label: string;
}
export interface DiagramLink {
source: string;
target: string;
label?: string;
}
export interface GroundingSource {
title: string;
uri: string;
}
export interface ExplanationResponse {
code?: string;
explanation: string;
analogies: string[];
workflow: string[];
diagram: {
nodes: DiagramNode[];
links: DiagramLink[];
};
followUp: string;
sources?: GroundingSource[];
}
export interface ChatMessage {
role: 'user' | 'model';
content: string;
}