-
Notifications
You must be signed in to change notification settings - Fork 313
Expand file tree
/
Copy pathllm.server.ts
More file actions
438 lines (399 loc) · 17.1 KB
/
Copy pathllm.server.ts
File metadata and controls
438 lines (399 loc) · 17.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 'server-only';
import { createPostHogClient, tryGetPostHogDistinctId } from "@/lib/posthog";
import { logger } from "./logger";
import Anthropic from "@anthropic-ai/sdk";
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, GoogleLanguageModelOptions } 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 { LanguageModelV3 as AISDKLanguageModelV3 } 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 { withTracing } from "@posthog/ai";
import { LanguageModel } from '@sourcebot/schemas/v3/languageModel.type';
import { Token } from "@sourcebot/schemas/v3/shared.type";
import { env, getTokenFromConfig } from '@sourcebot/shared';
import { extractReasoningMiddleware, JSONValue, wrapLanguageModel } from "ai";
import * as Sentry from "@sentry/nextjs";
// @note: This module resolves a configured language model into an AI SDK
// provider object. It is intentionally FSL (open source) provider plumbing —
// it contains no Ask-specific logic and is shared by multiple features (the
// Ask chat agent, the MCP `ask_codebase` tool, AI search-assist, and the
// review agent). The re-licensed Ask logic (prompts, tools, threads, chat
// name generation) lives in `@/ee/features/chat`.
export const getAISDKLanguageModelAndOptions = async (config: LanguageModel): Promise<{
model: AISDKLanguageModelV3,
providerOptions?: Record<string, Record<string, JSONValue>>,
temperature?: number,
}> => {
const { provider, model: modelId } = config;
const { model: _model, providerOptions } = await (async (): Promise<{
model: AISDKLanguageModelV3,
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 apiKey = config.token
? await getTokenFromConfig(config.token)
: env.ANTHROPIC_API_KEY;
const authToken = config.authToken
? await getTokenFromConfig(config.authToken)
: env.ANTHROPIC_AUTH_TOKEN;
const headers = config.headers
? await extractLanguageModelKeyValuePairs(config.headers)
: undefined;
const anthropic = createAnthropic({
baseURL: config.baseUrl,
apiKey,
authToken,
headers,
});
const thinking = await tryResolveAnthropicThinkingConfig({
modelId,
baseUrl: config.baseUrl,
apiKey,
authToken,
headers,
});
return {
model: anthropic(modelId),
providerOptions: {
anthropic: {
...(thinking ? { thinking } : {}),
} 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,
});
const reasoningSummary = config.reasoningSummary ?? 'auto';
return {
model: azure(modelId),
providerOptions: {
openai: {
reasoningEffort: config.reasoningEffort ?? 'medium',
...(reasoningSummary !== 'none' && { reasoningSummary }),
} satisfies OpenAIResponsesProviderOptions,
}
};
}
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),
providerOptions: {
google: {
thinkingConfig: {
includeThoughts: true,
thinkingBudget: config.thinkingBudget,
thinkingLevel: config.thinkingLevel
}
} satisfies GoogleLanguageModelOptions
}
};
}
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: {
vertex: {
thinkingConfig: {
includeThoughts: true,
thinkingBudget:
config.thinkingBudget ??
env.GOOGLE_VERTEX_THINKING_BUDGET_TOKENS,
thinkingLevel: config.thinkingLevel,
}
} satisfies GoogleLanguageModelOptions
},
};
}
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,
});
const reasoningSummary = config.reasoningSummary ?? 'auto';
return {
model: openai(modelId),
providerOptions: {
openai: {
reasoningEffort: config.reasoningEffort ?? 'medium',
...(reasoningSummary !== 'none' && { reasoningSummary }),
} 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,
temperature: config.temperature,
};
}
const extractLanguageModelKeyValuePairs = async (
pairs: {
[k: string]: string | Token;
}
): Promise<Record<string, string>> => {
const resolvedPairs: Record<string, string> = {};
if (!pairs) {
return resolvedPairs;
}
for (const [key, val] of Object.entries(pairs)) {
if (typeof val === "string") {
resolvedPairs[key] = val;
continue;
}
const value = await getTokenFromConfig(val);
resolvedPairs[key] = value;
}
return resolvedPairs;
};
type AnthropicThinkingConfig = NonNullable<AnthropicProviderOptions['thinking']>;
const anthropicThinkingConfigCache = new Map<string, AnthropicThinkingConfig>();
/**
* Resolves the `thinking` provider option we pass to the
* ai sdk for anthropic models. Queries the Models API to
* determine the model's capabilities. Returns undefined
* if we are unable to resolve. Results are cached in a
* in-memory cache.
*
* @see https://docs.anthropic.com/en/api/models
*/
const tryResolveAnthropicThinkingConfig = async ({
modelId,
baseUrl,
apiKey,
authToken,
headers,
}: {
modelId: string,
baseUrl?: string,
apiKey?: string,
authToken?: string,
headers?: Record<string, string>,
}): Promise<AnthropicThinkingConfig | undefined> => {
const cacheKey = `${baseUrl ?? 'default'}::${modelId}`;
if (anthropicThinkingConfigCache.has(cacheKey)) {
return anthropicThinkingConfigCache.get(cacheKey);
}
const thinkingConfig = await (async () => {
try {
// `@ai-sdk/anthropic` expects `baseURL` to include the `/v1` path segment,
// whereas the SDK client appends `/v1` itself — so strip a trailing `/v1`
// from the same configured value before handing it to the client.
const baseURL = baseUrl
? (baseUrl.replace(/\/+$/, '').replace(/\/v1$/, '') || undefined)
: undefined;
const client = new Anthropic({
apiKey,
authToken,
baseURL,
defaultHeaders: headers,
maxRetries: 1,
});
const { capabilities } = await client.models.retrieve(modelId, undefined, {
timeout: 10_000,
});
if (!capabilities) {
throw new Error('the models API did not return a capabilities object.');
}
const thinking = capabilities.thinking;
if (thinking.supported === false) {
return undefined;
}
if (thinking.types.adaptive.supported) {
return {
type: "adaptive",
display: "summarized",
} satisfies AnthropicThinkingConfig;
}
if (thinking.types.enabled.supported) {
return {
type: "enabled",
budgetTokens: env.ANTHROPIC_THINKING_BUDGET_TOKENS,
} satisfies AnthropicThinkingConfig;
}
} catch (error) {
Sentry.captureException(error);
logger.warn(`Failed to fetch Anthropic model capabilities for '${modelId}'. Omitting the thinking option. ${error}`);
}
})();
if (thinkingConfig) {
anthropicThinkingConfigCache.set(cacheKey, thinkingConfig);
}
return thinkingConfig;
};