-
Notifications
You must be signed in to change notification settings - Fork 254
Expand file tree
/
Copy pathai.types.ts
More file actions
438 lines (402 loc) · 11.1 KB
/
Copy pathai.types.ts
File metadata and controls
438 lines (402 loc) · 11.1 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
import { type OpenTarget } from './browser.types'
import { PageChatMessageSentEventError, PageChatMessageSentEventTrigger } from './events.types'
export enum Provider {
OpenAI = 'open-ai',
Anthropic = 'anthropic',
Google = 'google',
Custom = 'custom'
}
export enum BuiltInModelIDs {
GPT5 = 'gpt-5',
GPT5_Mini = 'gpt-5-mini',
GPT4_1 = 'gpt-4.1',
GPT4_1_Mini = 'gpt-4.1-mini',
GPT4o = 'gpt-4o',
GPT4oMini = 'gpt-4o-mini',
O4Mini = 'o4-mini',
O3Mini = 'o3-mini',
ClaudeSonnet = 'claude-3-5-sonnet-latest',
ClaudeSonnet45 = 'claude-4-5-sonnet-latest',
ClaudeSonnet4 = 'claude-4-sonnet-latest',
ClaudeSonnet37 = 'claude-3-7-sonnet-latest',
ClaudeHaiku = 'claude-3-5-haiku-latest',
Gemini2Flash = 'gemini-2.0-flash'
}
export enum ModelTiers {
Premium = 'premium',
PremiumVision = 'premium_vision',
Standard = 'standard'
}
export enum ChatMode {
TextOnly = 1,
TextWithScreenshot = 2,
AppCreation = 3
}
export type AIChatData = {
id: string
title: string
messages: AIChatMessage[]
createdAt: string
updatedAt: string
}
export type AIDocsSimilarity = {
index: number
similarity: number
}
export type AIChatMessageRole = 'user' | 'system' | 'assistant'
export type AIChatStatusMessageType = 'status' | 'error' | 'sources'
export type AIChatStatusMessage = {
type: AIChatStatusMessageType
value: string | AIChatMessageSource[]
}
export type AIChatMessage = {
id: string // generated in the frontend
ai_session_id: string
role: AIChatMessageRole
status: 'success' | 'pending' | 'error'
query: string
content: string
sources?: AIChatMessageSource[]
}
export type AIChatMessageParsed = {
id: string
role: AIChatMessageRole
query: string
content: string
contentItems?: ChatMessageContentItem[]
sources?: AIChatMessageSource[]
usedPageScreenshot?: boolean
usedInlineScreenshot?: boolean
status?: 'success' | 'pending' | 'error' | 'cancelled'
}
export type AIChatMessageSource = {
id: string
all_chunk_ids: string[]
render_id: string
resource_id: string
content: string
uid?: string
metadata?: {
timestamp?: number
url?: string
page?: number
}
}
export type CitationInfo = {
id: string
source?: AIChatMessageSource
renderID: string
text?: string
skipHighlight?: boolean
hideText?: boolean
}
export type CitationClickData = {
citationID: string
uniqueID: string
preview?: boolean | OpenTarget
source?: AIChatMessageSource
skipHighlight?: boolean
}
export type ChatMessageContentItem = {
type: 'text' | 'citation'
content: string
}
export type YoutubeTranscriptPiece = {
text: string
start: number
duration: number
}
export type YoutubeTranscript = {
transcript: string
metadata: {
source: string
transcript_pieces: YoutubeTranscriptPiece[]
}
}
export type AITool = {
id: string
name: string
icon: string
active: boolean
disabled?: boolean
}
export type ChatPrompt = {
label: string
prompt: string
}
export type ChatError = {
message: string
type: PageChatMessageSentEventError
}
export type ChatMessageOptions = {
generationID?: string
useContext?: boolean
role?: AIChatMessageRole
query?: string
skipScreenshot?: boolean
limit?: number
ragOnly?: boolean
trigger?: PageChatMessageSentEventTrigger
onboarding?: boolean
noteResourceId?: string
}
export type ChatCompletionResponse = {
output: string | null
error: ChatError | null
}
export namespace ChatMode {
export function isValid(value: number): value is ChatMode {
return Object.values(ChatMode).includes(value)
}
}
export const BuiltInModelLabels = {
[BuiltInModelIDs.GPT4_1_Mini]: 'GPT-4.1 Mini',
[BuiltInModelIDs.GPT4o]: 'GPT-4o',
[BuiltInModelIDs.GPT4oMini]: 'GPT-4o Mini',
[BuiltInModelIDs.O3Mini]: 'o3 Mini',
[BuiltInModelIDs.ClaudeSonnet37]: 'Claude 3.7 Sonnet',
[BuiltInModelIDs.ClaudeSonnet]: 'Claude 3.5 Sonnet',
[BuiltInModelIDs.GPT4_1]: 'GPT-4.1',
[BuiltInModelIDs.ClaudeHaiku]: 'Claude 3.5 Haiku',
[BuiltInModelIDs.GPT5]: 'GPT-5',
[BuiltInModelIDs.GPT5_Mini]: 'GPT-5 Mini',
[BuiltInModelIDs.ClaudeSonnet45]: 'Claude 4.5 Sonnet',
[BuiltInModelIDs.ClaudeSonnet4]: 'Claude 4 Sonnet',
[BuiltInModelIDs.Gemini2Flash]: 'Gemini 2.0 Flash'
}
export const ProviderLabels = {
[Provider.OpenAI]: 'Open AI',
[Provider.Anthropic]: 'Anthropic',
[Provider.Google]: 'Google',
[Provider.Custom]: 'Custom'
}
export const ProviderIcons = {
[Provider.OpenAI]: 'open-ai',
[Provider.Anthropic]: 'claude',
[Provider.Google]: 'gemini',
[Provider.Custom]: 'sparkles'
}
export type Model = {
id: string
label: string
provider: Provider
tier: ModelTiers
icon: string
vision: boolean
supports_json_format?: boolean
max_tokens?: number
custom_key?: string
provider_url?: string
skip_append_open_ai_suffix?: boolean
custom_model_name?: string
}
export const OPEN_AI_PATH_SUFFIX = '/v1/chat/completions'
export const BUILT_IN_MODELS = [
{
id: BuiltInModelIDs.GPT5,
label: BuiltInModelLabels[BuiltInModelIDs.GPT5],
provider: Provider.OpenAI,
tier: ModelTiers.Premium,
icon: ProviderIcons[Provider.OpenAI],
supports_json_format: true,
vision: true
},
{
id: BuiltInModelIDs.GPT5_Mini,
label: BuiltInModelLabels[BuiltInModelIDs.GPT5_Mini],
provider: Provider.OpenAI,
tier: ModelTiers.Standard,
icon: ProviderIcons[Provider.OpenAI],
supports_json_format: true,
vision: true
},
{
id: BuiltInModelIDs.GPT4_1,
label: BuiltInModelLabels[BuiltInModelIDs.GPT4_1],
provider: Provider.OpenAI,
tier: ModelTiers.Premium,
icon: ProviderIcons[Provider.OpenAI],
vision: true,
supports_json_format: true
},
{
id: BuiltInModelIDs.GPT4_1_Mini,
label: BuiltInModelLabels[BuiltInModelIDs.GPT4_1_Mini],
provider: Provider.OpenAI,
tier: ModelTiers.Standard,
icon: ProviderIcons[Provider.OpenAI],
vision: true,
supports_json_format: true
},
{
id: BuiltInModelIDs.GPT4o,
label: BuiltInModelLabels[BuiltInModelIDs.GPT4o],
provider: Provider.OpenAI,
tier: ModelTiers.Premium,
icon: ProviderIcons[Provider.OpenAI],
vision: true,
supports_json_format: true
},
{
id: BuiltInModelIDs.GPT4oMini,
label: BuiltInModelLabels[BuiltInModelIDs.GPT4oMini],
provider: Provider.OpenAI,
tier: ModelTiers.Standard,
icon: ProviderIcons[Provider.OpenAI],
vision: true,
supports_json_format: true
},
{
id: BuiltInModelIDs.O3Mini,
label: BuiltInModelLabels[BuiltInModelIDs.O3Mini],
provider: Provider.OpenAI,
tier: ModelTiers.Premium,
icon: ProviderIcons[Provider.OpenAI],
vision: false,
supports_json_format: true
},
{
id: BuiltInModelIDs.ClaudeSonnet45,
label: BuiltInModelLabels[BuiltInModelIDs.ClaudeSonnet45],
provider: Provider.Anthropic,
tier: ModelTiers.Premium,
icon: ProviderIcons[Provider.Anthropic],
supports_json_format: true,
vision: true
},
{
id: BuiltInModelIDs.ClaudeSonnet4,
label: BuiltInModelLabels[BuiltInModelIDs.ClaudeSonnet4],
provider: Provider.Anthropic,
tier: ModelTiers.Premium,
icon: ProviderIcons[Provider.Anthropic],
supports_json_format: true,
vision: true
},
{
id: BuiltInModelIDs.ClaudeSonnet37,
label: BuiltInModelLabels[BuiltInModelIDs.ClaudeSonnet37],
provider: Provider.Anthropic,
tier: ModelTiers.Premium,
icon: ProviderIcons[Provider.Anthropic],
vision: true,
supports_json_format: true,
max_tokens: 128_000
},
{
id: BuiltInModelIDs.ClaudeSonnet,
label: BuiltInModelLabels[BuiltInModelIDs.ClaudeSonnet],
provider: Provider.Anthropic,
tier: ModelTiers.Premium,
icon: ProviderIcons[Provider.Anthropic],
vision: true,
supports_json_format: true,
max_tokens: 128_000
},
{
id: BuiltInModelIDs.ClaudeHaiku,
label: BuiltInModelLabels[BuiltInModelIDs.ClaudeHaiku],
provider: Provider.Anthropic,
tier: ModelTiers.Standard,
icon: ProviderIcons[Provider.Anthropic],
supports_json_format: true,
vision: false
},
{
id: BuiltInModelIDs.Gemini2Flash,
label: BuiltInModelLabels[BuiltInModelIDs.Gemini2Flash],
provider: Provider.Google,
tier: ModelTiers.Standard,
icon: ProviderIcons[Provider.Google],
supports_json_format: true,
vision: true
}
] as Model[]
export const DEFAULT_AI_MODEL = BuiltInModelIDs.GPT4_1
export const RECOMMENDED_AI_MODELS = [
{
id: BuiltInModelIDs.GPT5,
description: 'Most capable model for general use cases'
},
{
id: BuiltInModelIDs.ClaudeSonnet45,
description: 'Excellent analysis and creative skills'
},
{
id: BuiltInModelIDs.Gemini2Flash,
description: 'Quick responses with solid reliability'
}
]
export enum CUSTOM_MODELS {
Ollama = 'Ollama',
OpenRouter = 'OpenRouter',
HuggingFaceTogether = 'Hugging Face Together AI',
HuggingFace = 'Hugging Face Inference Endpoint',
LiteLLM = 'LiteLLM'
}
export type CustomModelType = keyof typeof CUSTOM_MODELS
export type CustomModelDefinition = {
id: CUSTOM_MODELS
label: string
icon: string
provider_url?: string
model_name?: string
model_page?: string
api_key_page?: string
}
export const CUSTOM_MODEL_DEFINITIONS: Record<CUSTOM_MODELS, CustomModelDefinition> = {
[CUSTOM_MODELS.Ollama]: {
id: CUSTOM_MODELS.Ollama,
label: 'Ollama',
icon: 'ollama',
provider_url: 'http://localhost:11434/v1/chat/completions',
model_page: 'https://ollama.com/search'
},
[CUSTOM_MODELS.OpenRouter]: {
id: CUSTOM_MODELS.OpenRouter,
label: 'OpenRouter',
icon: 'openrouter',
provider_url: 'https://openrouter.ai/api/v1/chat/completions',
model_page: 'https://openrouter.com/models',
api_key_page: 'https://openrouter.ai/settings/keys'
},
[CUSTOM_MODELS.HuggingFaceTogether]: {
id: CUSTOM_MODELS.HuggingFaceTogether,
label: 'Hugging Face Together AI',
icon: 'huggingface',
provider_url: 'https://router.huggingface.co/together/v1/chat/completions',
model_page: 'https://huggingface.co/models?inference_provider=together&sort=trending',
api_key_page: 'https://huggingface.co/settings/tokens'
},
[CUSTOM_MODELS.HuggingFace]: {
id: CUSTOM_MODELS.HuggingFace,
label: 'Hugging Face Custom',
icon: 'huggingface',
provider_url: 'https://api-inference.huggingface.co/models/',
model_page: 'https://huggingface.co/models?inference_provider=together&sort=trending',
api_key_page: 'https://huggingface.co/settings/tokens'
},
[CUSTOM_MODELS.LiteLLM]: {
id: CUSTOM_MODELS.LiteLLM,
label: 'LiteLLM',
icon: 'litellm',
provider_url: 'http://localhost:4000/v1/chat/completions',
model_page: 'https://docs.litellm.ai/docs/providers',
api_key_page: 'https://docs.litellm.ai/docs/simple_proxy#quick-start'
}
}
export type ProviderDefinition = {
api_key_page?: string
}
export const BUILT_IN_PROVIDER_DEFINITIONS: Record<Provider, ProviderDefinition> = {
[Provider.OpenAI]: {
api_key_page: 'https://platform.openai.com/api-keys'
},
[Provider.Anthropic]: {
api_key_page: 'https://console.anthropic.com/settings/keys'
},
[Provider.Google]: {
api_key_page: 'https://aistudio.google.com/app/api-keys'
},
[Provider.Custom]: {}
}