-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathactions.ts
More file actions
1016 lines (886 loc) · 32.4 KB
/
actions.ts
File metadata and controls
1016 lines (886 loc) · 32.4 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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'use server';
import { sew } from "@/actions";
import { getAuditService } from "@/ee/features/audit/factory";
import { ErrorCode } from "@/lib/errorCodes";
import { notFound, ServiceError } from "@/lib/serviceError";
import { createAmazonBedrock } from '@ai-sdk/amazon-bedrock';
import { AnthropicProviderOptions, createAnthropic } from '@ai-sdk/anthropic';
import { createAzure } from '@ai-sdk/azure';
import { createDeepSeek } from '@ai-sdk/deepseek';
import { createGoogleGenerativeAI } from '@ai-sdk/google';
import { createVertex } from '@ai-sdk/google-vertex';
import { createVertexAnthropic } from '@ai-sdk/google-vertex/anthropic';
import { createMistral } from '@ai-sdk/mistral';
import { createOpenAI, OpenAIResponsesProviderOptions } from "@ai-sdk/openai";
import { createOpenAICompatible } from "@ai-sdk/openai-compatible";
import { LanguageModelV2 as AISDKLanguageModelV2 } from "@ai-sdk/provider";
import { createXai } from '@ai-sdk/xai';
import { fromNodeProviderChain } from '@aws-sdk/credential-providers';
import { createOpenRouter } from '@openrouter/ai-sdk-provider';
import { getTokenFromConfig, createLogger, env } from "@sourcebot/shared";
import { ChatVisibility, Prisma } from "@sourcebot/db";
import { LanguageModel } from "@sourcebot/schemas/v3/languageModel.type";
import { Token } from "@sourcebot/schemas/v3/shared.type";
import { generateText, JSONValue, extractReasoningMiddleware, wrapLanguageModel } from "ai";
import { loadConfig } from "@sourcebot/shared";
import fs from 'fs';
import { StatusCodes } from "http-status-codes";
import path from 'path';
import { LanguageModelInfo, SBChatMessage } from "./types";
import { withAuthV2, withOptionalAuthV2 } from "@/withAuthV2";
import { getAnonymousId, getOrCreateAnonymousId } from "@/lib/anonymousId";
import { Chat, PrismaClient, User } from "@sourcebot/db";
import { captureEvent } from "@/lib/posthog";
import { withTracing } from "@posthog/ai";
import { createPostHogClient, tryGetPostHogDistinctId } from "@/lib/posthog";
const logger = createLogger('chat-actions');
const auditService = getAuditService();
/**
* Checks if the current user (authenticated or anonymous) is the owner of a chat.
*/
export const _isOwnerOfChat = async (chat: Chat, user: User | undefined): Promise<boolean> => {
// Authenticated user owns the chat
if (user && chat.createdById === user.id) {
return true;
}
// Only check the anonymous cookie for unclaimed chats (createdById === null).
// Once a chat has been claimed by an authenticated user, the anonymous path
// must not grant access — even if the same browser still holds the original cookie.
if (!chat.createdById && chat.anonymousCreatorId) {
const anonymousId = await getAnonymousId();
if (anonymousId && chat.anonymousCreatorId === anonymousId) {
return true;
}
}
return false;
};
/**
* Checks if a user has been explicitly shared access to a chat.
*/
export const _hasSharedAccess = async ({ prisma, chatId, userId }: { prisma: PrismaClient, chatId: string, userId: string | undefined }): Promise<boolean> => {
if (!userId) {
return false;
}
const share = await prisma.chatAccess.findUnique({
where: {
chatId_userId: {
chatId,
userId,
},
},
});
return share !== null;
};
export const _updateChatMessages = async ({ chatId, messages, prisma }: { chatId: string, messages: SBChatMessage[], prisma: PrismaClient }) => {
await prisma.chat.update({
where: {
id: chatId,
},
data: {
messages: messages as unknown as Prisma.InputJsonValue,
},
});
if (env.DEBUG_WRITE_CHAT_MESSAGES_TO_FILE) {
const chatDir = path.join(env.DATA_CACHE_DIR, 'chats');
if (!fs.existsSync(chatDir)) {
fs.mkdirSync(chatDir, { recursive: true });
}
const chatFile = path.join(chatDir, `${chatId}.json`);
fs.writeFileSync(chatFile, JSON.stringify(messages, null, 2));
}
};
export const _generateChatNameFromMessage = async ({ message, languageModelConfig }: { message: string, languageModelConfig: LanguageModel }) => {
const { model } = await _getAISDKLanguageModelAndOptions(languageModelConfig);
const prompt = `Convert this question into a short topic title (max 50 characters).
Rules:
- Do NOT include question words (what, where, how, why, when, which)
- Do NOT end with a question mark
- Capitalize the first letter of the title
- Focus on the subject/topic being discussed
- Make it sound like a file name or category
Examples:
"Where is the authentication code?" → "Authentication Code"
"How to setup the database?" → "Database Setup"
"What are the API endpoints?" → "API Endpoints"
User question: ${message}`;
const result = await generateText({
model,
prompt,
});
return result.text;
}
export const createChat = async () => sew(() =>
withOptionalAuthV2(async ({ org, user, prisma }) => {
const isGuestUser = user === undefined;
// For anonymous users, get or create an anonymous ID to track ownership
const anonymousCreatorId = isGuestUser ? await getOrCreateAnonymousId() : undefined;
const chat = await prisma.chat.create({
data: {
orgId: org.id,
messages: [] as unknown as Prisma.InputJsonValue,
createdById: user?.id,
anonymousCreatorId,
visibility: isGuestUser ? ChatVisibility.PUBLIC : ChatVisibility.PRIVATE,
},
});
// Only create audit log for authenticated users
if (!isGuestUser) {
await auditService.createAudit({
action: "user.created_ask_chat",
actor: {
id: user.id,
type: "user",
},
target: {
id: org.id.toString(),
type: "org",
},
orgId: org.id,
});
}
await captureEvent('wa_chat_thread_created', {
chatId: chat.id,
isAnonymous: isGuestUser,
});
return {
id: chat.id,
isAnonymous: isGuestUser,
}
})
);
export const getChatInfo = async ({ chatId }: { chatId: string }) => sew(() =>
withOptionalAuthV2(async ({ org, user, prisma }) => {
const chat = await prisma.chat.findUnique({
where: {
id: chatId,
orgId: org.id,
},
});
if (!chat) {
return notFound();
}
const isOwner = await _isOwnerOfChat(chat, user);
const isSharedWithUser = await _hasSharedAccess({ prisma, chatId, userId: user?.id });
// Private chats can only be viewed by the owner or users it's been shared with
if (chat.visibility === ChatVisibility.PRIVATE && !isOwner && !isSharedWithUser) {
return notFound();
}
return {
messages: chat.messages as unknown as SBChatMessage[],
visibility: chat.visibility,
name: chat.name,
isOwner,
isSharedWithUser,
};
})
);
export const updateChatMessages = async ({ chatId, messages }: { chatId: string, messages: SBChatMessage[] }) => sew(() =>
withOptionalAuthV2(async ({ org, user, prisma }) => {
const chat = await prisma.chat.findUnique({
where: {
id: chatId,
orgId: org.id,
},
});
if (!chat) {
return notFound();
}
const isOwner = await _isOwnerOfChat(chat, user);
// Only the owner can modify chat messages
if (!isOwner) {
return notFound();
}
await _updateChatMessages({ chatId, messages, prisma });
return {
success: true,
}
})
);
export const getUserChatHistory = async () => sew(() =>
withAuthV2(async ({ org, user, prisma }) => {
const chats = await prisma.chat.findMany({
where: {
orgId: org.id,
createdById: user.id,
},
orderBy: {
updatedAt: 'desc',
},
});
return chats.map((chat) => ({
id: chat.id,
createdAt: chat.createdAt,
name: chat.name,
visibility: chat.visibility,
}))
})
);
export const updateChatName = async ({ chatId, name }: { chatId: string, name: string }) => sew(() =>
withOptionalAuthV2(async ({ org, user, prisma }) => {
const chat = await prisma.chat.findUnique({
where: {
id: chatId,
orgId: org.id,
},
});
if (!chat) {
return notFound();
}
const isOwner = await _isOwnerOfChat(chat, user);
// Only the owner can rename chats
if (!isOwner) {
return notFound();
}
await prisma.chat.update({
where: {
id: chatId,
orgId: org.id,
},
data: {
name,
},
});
return {
success: true,
}
})
);
export const updateChatVisibility = async ({ chatId, visibility }: { chatId: string, visibility: ChatVisibility }) => sew(() =>
withAuthV2(async ({ org, user, prisma }) => {
const chat = await prisma.chat.findUnique({
where: {
id: chatId,
orgId: org.id,
},
});
if (!chat) {
return notFound();
}
// Only the creator can change visibility
if (chat.createdById !== user.id) {
return notFound();
}
await prisma.chat.update({
where: {
id: chatId,
orgId: org.id,
},
data: {
visibility,
},
});
await auditService.createAudit({
action: "chat.visibility_updated",
actor: { id: user.id, type: "user" },
target: { id: chatId, type: "chat" },
orgId: org.id,
metadata: { message: `Visibility changed to ${visibility}` },
});
return {
success: true,
}
})
);
export const generateAndUpdateChatNameFromMessage = async ({ chatId, languageModelId, message }: { chatId: string, languageModelId: string, message: string }) => sew(() =>
withOptionalAuthV2(async ({ prisma, user, org }) => {
const chat = await prisma.chat.findUnique({
where: {
id: chatId,
orgId: org.id,
},
});
if (!chat) {
return notFound();
}
const isOwner = await _isOwnerOfChat(chat, user);
if (!isOwner) {
return notFound();
}
const languageModelConfig =
(await _getConfiguredLanguageModelsFull())
.find((model) => model.model === languageModelId);
if (!languageModelConfig) {
return {
statusCode: StatusCodes.BAD_REQUEST,
errorCode: ErrorCode.INVALID_REQUEST_BODY,
message: `Language model ${languageModelId} is not configured.`,
} satisfies ServiceError;
}
const name = await _generateChatNameFromMessage({ message, languageModelConfig });
await prisma.chat.update({
where: {
id: chatId,
orgId: org.id,
},
data: {
name: name,
},
})
return {
success: true,
}
})
)
export const deleteChat = async ({ chatId }: { chatId: string }) => sew(() =>
withAuthV2(async ({ org, user, prisma }) => {
const chat = await prisma.chat.findUnique({
where: {
id: chatId,
orgId: org.id,
},
});
if (!chat) {
return notFound();
}
// Only the creator of a chat can delete it.
if (chat.createdById !== user.id) {
return notFound();
}
await prisma.chat.delete({
where: {
id: chatId,
orgId: org.id,
},
});
await auditService.createAudit({
action: "chat.deleted",
actor: { id: user.id, type: "user" },
target: { id: chatId, type: "chat" },
orgId: org.id,
});
return {
success: true,
}
})
);
/**
* Claims any anonymous chats created by the current user (matched via anonymousCreatorId cookie).
* This should be called after a user signs in to transfer ownership of their anonymous chats.
* Visibility is preserved so shared links continue to work.
*/
export const claimAnonymousChats = async () => sew(() =>
withAuthV2(async ({ org, user, prisma }) => {
const anonymousId = await getAnonymousId();
if (!anonymousId) {
return { claimed: 0 };
}
const result = await prisma.chat.updateMany({
where: {
orgId: org.id,
anonymousCreatorId: anonymousId,
createdById: null,
},
data: {
createdById: user.id,
anonymousCreatorId: null,
},
});
if (result.count > 0) {
captureEvent('wa_anonymous_chats_claimed', {
claimedCount: result.count,
});
}
return { claimed: result.count };
})
);
/**
* Duplicates a chat with all its messages.
* The new chat will be owned by the current user (authenticated or anonymous).
*/
export const duplicateChat = async ({ chatId, newName }: { chatId: string, newName: string }) => sew(() =>
withOptionalAuthV2(async ({ org, user, prisma }) => {
const originalChat = await prisma.chat.findUnique({
where: {
id: chatId,
orgId: org.id,
},
});
if (!originalChat) {
return notFound();
}
// Check if user can access the chat (owner, shared, or public)
const isOwner = await _isOwnerOfChat(originalChat, user);
const isSharedWithUser = await _hasSharedAccess({ prisma, chatId, userId: user?.id });
if (originalChat.visibility === ChatVisibility.PRIVATE && !isOwner && !isSharedWithUser) {
return notFound();
}
const isGuestUser = user === undefined;
const anonymousCreatorId = isGuestUser ? await getOrCreateAnonymousId() : undefined;
const newChat = await prisma.chat.create({
data: {
orgId: org.id,
name: newName,
messages: originalChat.messages as unknown as Prisma.InputJsonValue,
createdById: user?.id,
anonymousCreatorId,
visibility: isGuestUser ? ChatVisibility.PUBLIC : ChatVisibility.PRIVATE,
},
});
return {
id: newChat.id,
};
})
);
/**
* Returns the users that have been explicitly shared access to a chat.
*/
export const getSharedWithUsersForChat = async ({ chatId }: { chatId: string }) => sew(() =>
withAuthV2(async ({ org, user, prisma }) => {
const chat = await prisma.chat.findUnique({
where: {
id: chatId,
orgId: org.id,
},
});
if (!chat) {
return notFound();
}
// Only the creator can view shares
if (chat.createdById !== user.id) {
return notFound();
}
const sharedWithUsers = await prisma.chatAccess.findMany({
where: {
chatId,
},
select: {
user: true,
},
});
return sharedWithUsers.map(({ user }) => ({
id: user.id,
email: user.email,
name: user.name,
image: user.image,
}));
})
);
/**
* Shares the chat with a list of users.
*/
export const shareChatWithUsers = async ({ chatId, userIds }: { chatId: string, userIds: string[] }) => sew(() =>
withAuthV2(async ({ org, user, prisma }) => {
const chat = await prisma.chat.findUnique({
where: {
id: chatId,
orgId: org.id,
},
});
if (!chat) {
return notFound();
}
// Only the creator can share
if (chat.createdById !== user.id) {
return notFound();
}
const memberships = await prisma.userToOrg.findMany({
where: {
orgId: org.id,
userId: {
in: userIds,
},
},
});
if (memberships.length !== userIds.length) {
return notFound();
}
await prisma.chatAccess.createMany({
data: userIds.map((userId) => ({
chatId,
userId,
})),
skipDuplicates: true,
});
await auditService.createAudit({
action: "chat.shared_with_users",
actor: { id: user.id, type: "user" },
target: { id: chatId, type: "chat" },
orgId: org.id,
metadata: { message: userIds.join(", ") },
});
return { success: true };
})
);
/**
* Revokes access to a chat for a particular user.
*/
export const unshareChatWithUser = async ({ chatId, userId }: { chatId: string, userId: string }) => sew(() =>
withAuthV2(async ({ org, user, prisma }) => {
const chat = await prisma.chat.findUnique({
where: {
id: chatId,
orgId: org.id,
},
});
if (!chat) {
return notFound();
}
// Only the creator can remove shares
if (chat.createdById !== user.id) {
return notFound();
}
await prisma.chatAccess.deleteMany({
where: {
chatId,
userId,
},
});
await auditService.createAudit({
action: "chat.unshared_with_user",
actor: { id: user.id, type: "user" },
target: { id: chatId, type: "chat" },
orgId: org.id,
metadata: { message: userId },
});
return { success: true };
})
);
export const submitFeedback = async ({
chatId,
messageId,
feedbackType
}: {
chatId: string,
messageId: string,
feedbackType: 'like' | 'dislike'
}) => sew(() =>
withOptionalAuthV2(async ({ org, user, prisma }) => {
const chat = await prisma.chat.findUnique({
where: {
id: chatId,
orgId: org.id,
},
});
if (!chat) {
return notFound();
}
// When a chat is private, only the creator or shared users can submit feedback.
const isSharedWithUser = await _hasSharedAccess({ prisma, chatId, userId: user?.id });
if (chat.visibility === ChatVisibility.PRIVATE && chat.createdById !== user?.id && !isSharedWithUser) {
return notFound();
}
const messages = chat.messages as unknown as SBChatMessage[];
const updatedMessages = messages.map(message => {
if (message.id === messageId && message.role === 'assistant') {
return {
...message,
metadata: {
...message.metadata,
feedback: [
...(message.metadata?.feedback ?? []),
{
type: feedbackType,
timestamp: new Date().toISOString(),
userId: user?.id,
}
]
}
} satisfies SBChatMessage;
}
return message;
});
await prisma.chat.update({
where: { id: chatId },
data: {
messages: updatedMessages as unknown as Prisma.InputJsonValue,
},
});
return { success: true };
})
)
/**
* Returns the subset of information about the configured language models
* that we can safely send to the client.
*/
export const getConfiguredLanguageModelsInfo = async (): Promise<LanguageModelInfo[]> => {
const models = await _getConfiguredLanguageModelsFull();
return models.map((model): LanguageModelInfo => ({
provider: model.provider,
model: model.model,
displayName: model.displayName,
}));
}
/**
* Returns the full configuration of the language models.
*
* @warning Do NOT call this function from the client,
* or pass the result of calling this function to the client.
*/
export const _getConfiguredLanguageModelsFull = async (): Promise<LanguageModel[]> => {
try {
const config = await loadConfig(env.CONFIG_PATH);
return config.models ?? [];
} catch (error) {
logger.error('Failed to load language model configuration', error);
return [];
}
}
export const _getAISDKLanguageModelAndOptions = async (config: LanguageModel): Promise<{
model: AISDKLanguageModelV2,
providerOptions?: Record<string, Record<string, JSONValue>>,
}> => {
const { provider, model: modelId } = config;
const { model: _model, providerOptions } = await (async (): Promise<{
model: AISDKLanguageModelV2,
providerOptions?: Record<string, Record<string, JSONValue>>,
}> => {
switch (provider) {
case 'amazon-bedrock': {
const aws = createAmazonBedrock({
baseURL: config.baseUrl,
region: config.region ?? env.AWS_REGION,
accessKeyId: config.accessKeyId
? await getTokenFromConfig(config.accessKeyId)
: env.AWS_ACCESS_KEY_ID,
secretAccessKey: config.accessKeySecret
? await getTokenFromConfig(config.accessKeySecret)
: env.AWS_SECRET_ACCESS_KEY,
sessionToken: config.sessionToken
? await getTokenFromConfig(config.sessionToken)
: env.AWS_SESSION_TOKEN,
headers: config.headers
? await extractLanguageModelKeyValuePairs(config.headers)
: undefined,
// Fallback to the default Node.js credential provider chain if no credentials are provided.
// See: https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-credential-providers/#fromnodeproviderchain
credentialProvider: !config.accessKeyId && !config.accessKeySecret && !config.sessionToken
? fromNodeProviderChain()
: undefined,
});
return {
model: aws(modelId),
};
}
case 'anthropic': {
const anthropic = createAnthropic({
baseURL: config.baseUrl,
apiKey: config.token
? await getTokenFromConfig(config.token)
: env.ANTHROPIC_API_KEY,
headers: config.headers
? await extractLanguageModelKeyValuePairs(config.headers)
: undefined,
});
return {
model: anthropic(modelId),
providerOptions: {
anthropic: {
thinking: {
type: "enabled",
budgetTokens: env.ANTHROPIC_THINKING_BUDGET_TOKENS,
}
} satisfies AnthropicProviderOptions,
},
};
}
case 'azure': {
const azure = createAzure({
baseURL: config.baseUrl,
apiKey: config.token ? (await getTokenFromConfig(config.token)) : env.AZURE_API_KEY,
apiVersion: config.apiVersion,
resourceName: config.resourceName ?? env.AZURE_RESOURCE_NAME,
headers: config.headers
? await extractLanguageModelKeyValuePairs(config.headers)
: undefined,
});
return {
model: azure(modelId),
};
}
case 'deepseek': {
const deepseek = createDeepSeek({
baseURL: config.baseUrl,
apiKey: config.token ? (await getTokenFromConfig(config.token)) : env.DEEPSEEK_API_KEY,
headers: config.headers
? await extractLanguageModelKeyValuePairs(config.headers)
: undefined,
});
return {
model: deepseek(modelId),
};
}
case 'google-generative-ai': {
const google = createGoogleGenerativeAI({
baseURL: config.baseUrl,
apiKey: config.token
? await getTokenFromConfig(config.token)
: env.GOOGLE_GENERATIVE_AI_API_KEY,
headers: config.headers
? await extractLanguageModelKeyValuePairs(config.headers)
: undefined,
});
return {
model: google(modelId),
};
}
case 'google-vertex': {
const vertex = createVertex({
project: config.project ?? env.GOOGLE_VERTEX_PROJECT,
location: config.region ?? env.GOOGLE_VERTEX_REGION,
...(config.credentials ? {
googleAuthOptions: {
keyFilename: await getTokenFromConfig(config.credentials),
}
} : {}),
headers: config.headers
? await extractLanguageModelKeyValuePairs(config.headers)
: undefined,
});
return {
model: vertex(modelId),
providerOptions: {
google: {
thinkingConfig: {
thinkingBudget: env.GOOGLE_VERTEX_THINKING_BUDGET_TOKENS,
includeThoughts: env.GOOGLE_VERTEX_INCLUDE_THOUGHTS === 'true',
}
}
},
};
}
case 'google-vertex-anthropic': {
const vertexAnthropic = createVertexAnthropic({
project: config.project ?? env.GOOGLE_VERTEX_PROJECT,
location: config.region ?? env.GOOGLE_VERTEX_REGION,
...(config.credentials ? {
googleAuthOptions: {
keyFilename: await getTokenFromConfig(config.credentials),
}
} : {}),
headers: config.headers
? await extractLanguageModelKeyValuePairs(config.headers)
: undefined,
});
return {
model: vertexAnthropic(modelId),
};
}
case 'mistral': {
const mistral = createMistral({
baseURL: config.baseUrl,
apiKey: config.token
? await getTokenFromConfig(config.token)
: env.MISTRAL_API_KEY,
headers: config.headers
? await extractLanguageModelKeyValuePairs(config.headers)
: undefined,
});
return {
model: mistral(modelId),
};
}
case 'openai': {
const openai = createOpenAI({
baseURL: config.baseUrl,
apiKey: config.token
? await getTokenFromConfig(config.token)
: env.OPENAI_API_KEY,
headers: config.headers
? await extractLanguageModelKeyValuePairs(config.headers)
: undefined,
});
return {
model: openai(modelId),
providerOptions: {
openai: {
reasoningEffort: config.reasoningEffort ?? 'medium',
} satisfies OpenAIResponsesProviderOptions,
},
};
}
case 'openai-compatible': {
const openai = createOpenAICompatible({
baseURL: config.baseUrl,
name: config.displayName ?? modelId,
apiKey: config.token
? await getTokenFromConfig(config.token)
: undefined,
headers: config.headers
? await extractLanguageModelKeyValuePairs(config.headers)
: undefined,
queryParams: config.queryParams
? await extractLanguageModelKeyValuePairs(config.queryParams)
: undefined,
});
const model = wrapLanguageModel({
model: openai.chatModel(modelId),
middleware: [
extractReasoningMiddleware({
tagName: config.reasoningTag ?? 'think',
}),
]
});
return {
model,
}
}
case 'openrouter': {
const openrouter = createOpenRouter({
baseURL: config.baseUrl,
apiKey: config.token
? await getTokenFromConfig(config.token)
: env.OPENROUTER_API_KEY,
headers: config.headers
? await extractLanguageModelKeyValuePairs(config.headers)
: undefined,
});
return {
model: openrouter(modelId),
};
}
case 'xai': {
const xai = createXai({
baseURL: config.baseUrl,
apiKey: config.token
? await getTokenFromConfig(config.token)
: env.XAI_API_KEY,
headers: config.headers
? await extractLanguageModelKeyValuePairs(config.headers)
: undefined,
});
return {
model: xai(modelId),
};
}
}
})();
const posthog = await createPostHogClient();
const distinctId = await tryGetPostHogDistinctId();
// Only enable posthog LLM analytics for the ask GH experiment.
const model = env.EXPERIMENT_ASK_GH_ENABLED === 'true' ?
withTracing(_model, posthog, {
posthogDistinctId: distinctId,
}) :
_model;
return {
model,
providerOptions,
};
}
export const getAskGhLoginWallData = async () => sew(async () => {
const isEnabled = env.EXPERIMENT_ASK_GH_ENABLED === 'true';
if (!isEnabled) {
return { isEnabled: false as const, providers: [] };
}
const { getIdentityProviderMetadata } = await import('@/lib/identityProviders');
return { isEnabled: true as const, providers: getIdentityProviderMetadata() };
});
const extractLanguageModelKeyValuePairs = async (
pairs: {
[k: string]: string | Token;
}
): Promise<Record<string, string>> => {
const resolvedPairs: Record<string, string> = {};