@output.ai/llm 0.0.12 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -5
- package/src/ai_model.js +29 -0
- package/src/ai_sdk.js +40 -68
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@output.ai/llm",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"description": "Framework abstraction to interact with LLM models",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"./src"
|
|
10
10
|
],
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@ai-sdk/anthropic": "2.0.
|
|
13
|
-
"@ai-sdk/azure": "2.0.
|
|
14
|
-
"@ai-sdk/openai": "2.0.
|
|
15
|
-
"@output.ai/
|
|
12
|
+
"@ai-sdk/anthropic": "2.0.28",
|
|
13
|
+
"@ai-sdk/azure": "2.0.53",
|
|
14
|
+
"@ai-sdk/openai": "2.0.52",
|
|
15
|
+
"@output.ai/core": ">=0.0.1",
|
|
16
16
|
"ai": "5.0.48"
|
|
17
17
|
},
|
|
18
18
|
"license": "UNLICENSED"
|
package/src/ai_model.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { anthropic } from '@ai-sdk/anthropic';
|
|
2
|
+
import { azure } from '@ai-sdk/azure';
|
|
3
|
+
import { openai } from '@ai-sdk/openai';
|
|
4
|
+
import { ValidationError, z } from '@output.ai/core';
|
|
5
|
+
|
|
6
|
+
const providers = { azure, anthropic, openai };
|
|
7
|
+
|
|
8
|
+
const promptSchema = z.object( {
|
|
9
|
+
config: z.object( {
|
|
10
|
+
provider: z.enum( [ 'anthropic', 'azure', 'openai' ] ),
|
|
11
|
+
model: z.string(),
|
|
12
|
+
temperature: z.number().optional(),
|
|
13
|
+
max_tokens: z.number().optional()
|
|
14
|
+
} ),
|
|
15
|
+
messages: z.array(
|
|
16
|
+
z.object( {
|
|
17
|
+
role: z.string(),
|
|
18
|
+
content: z.string()
|
|
19
|
+
} )
|
|
20
|
+
)
|
|
21
|
+
} );
|
|
22
|
+
|
|
23
|
+
export const loadModel = prompt => {
|
|
24
|
+
const result = promptSchema.safeParse( prompt );
|
|
25
|
+
if ( !result.success ) {
|
|
26
|
+
throw new ValidationError( `Invalid prompt object: ${result.error.message}` );
|
|
27
|
+
}
|
|
28
|
+
return providers[prompt.config.provider]( prompt.config.model );
|
|
29
|
+
};
|
package/src/ai_sdk.js
CHANGED
|
@@ -1,73 +1,45 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
openai
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
export async function generateText( options ) {
|
|
17
|
-
const { prompt, ...aiSdkOptions } = options;
|
|
18
|
-
|
|
19
|
-
const provider = providers[prompt.config.provider];
|
|
20
|
-
const model = provider( prompt.config.model );
|
|
21
|
-
|
|
22
|
-
const aiOptions = {
|
|
23
|
-
model,
|
|
24
|
-
messages: prompt.messages,
|
|
25
|
-
temperature: prompt.config.temperature,
|
|
26
|
-
...aiSdkOptions // Spread remaining AI SDK options (thinking, etc.)
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
if ( prompt.config.max_tokens ) {
|
|
30
|
-
aiOptions.maxOutputTokens = prompt.config.max_tokens;
|
|
1
|
+
import { Tracing } from '@output.ai/core/tracing';
|
|
2
|
+
import { loadModel } from './ai_model.js';
|
|
3
|
+
import * as AI from 'ai';
|
|
4
|
+
|
|
5
|
+
const generationWrapper = async ( traceId, fn ) => {
|
|
6
|
+
try {
|
|
7
|
+
const result = await fn();
|
|
8
|
+
Tracing.addEventEnd( { id: traceId, details: result } );
|
|
9
|
+
return result;
|
|
10
|
+
} catch ( error ) {
|
|
11
|
+
Tracing.addEventError( { id: traceId, details: error } );
|
|
12
|
+
throw error;
|
|
31
13
|
}
|
|
14
|
+
};
|
|
32
15
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
return
|
|
16
|
+
export async function generateText( { prompt, ...nativeAiSdkArgs } ) {
|
|
17
|
+
const traceId = `generateText-${Date.now()}`;
|
|
18
|
+
Tracing.addEventStart( { kind: 'llm', name: 'generateText', id: traceId, details: { prompt, nativeAiSdkArgs } } );
|
|
19
|
+
|
|
20
|
+
return generationWrapper( traceId, async () => {
|
|
21
|
+
return ( await AI.generateText( {
|
|
22
|
+
model: loadModel( prompt ),
|
|
23
|
+
messages: prompt.messages,
|
|
24
|
+
temperature: prompt.config.temperature,
|
|
25
|
+
maxOutputTokens: prompt.config.max_tokens ?? 64000,
|
|
26
|
+
...nativeAiSdkArgs
|
|
27
|
+
} ) ).text;
|
|
28
|
+
} );
|
|
38
29
|
}
|
|
39
30
|
|
|
40
|
-
export async function generateObject(
|
|
41
|
-
const {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
model,
|
|
55
|
-
schema,
|
|
56
|
-
schemaName,
|
|
57
|
-
schemaDescription,
|
|
58
|
-
output,
|
|
59
|
-
messages: prompt.messages,
|
|
60
|
-
temperature: prompt.config.temperature,
|
|
61
|
-
...aiSdkOptions // Spread remaining AI SDK options
|
|
62
|
-
};
|
|
63
|
-
|
|
64
|
-
if ( prompt.config.max_tokens ) {
|
|
65
|
-
aiOptions.maxOutputTokens = prompt.config.max_tokens;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
const result = await aiGenerateObject( aiOptions );
|
|
69
|
-
|
|
70
|
-
trace( { lib: 'llm', event: 'generateObject', input: options, output: result } );
|
|
71
|
-
|
|
72
|
-
return result.object;
|
|
31
|
+
export async function generateObject( { prompt, ...nativeAiSdkArgs } ) {
|
|
32
|
+
const traceId = `generateObject-${Date.now()}`;
|
|
33
|
+
Tracing.addEventStart( { kind: 'llm', name: 'generateObject', id: traceId, details: { prompt, nativeAiSdkArgs } } );
|
|
34
|
+
|
|
35
|
+
return generationWrapper( traceId, async () => {
|
|
36
|
+
return ( await AI.generateObject( {
|
|
37
|
+
model: loadModel( prompt ),
|
|
38
|
+
output: nativeAiSdkArgs.object ?? 'object',
|
|
39
|
+
messages: prompt.messages,
|
|
40
|
+
temperature: prompt.config.temperature,
|
|
41
|
+
...( prompt.config.max_tokens && { maxOutputTokens: prompt.config.max_tokens } ),
|
|
42
|
+
...nativeAiSdkArgs
|
|
43
|
+
} ) ).object;
|
|
44
|
+
} );
|
|
73
45
|
}
|