@outputai/core 0.4.0 → 0.4.1-dev.92bc2fb.0
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 +4 -1
- package/src/activity_integration/tracing.d.ts +1 -0
- package/src/activity_integration/tracing.js +2 -1
- package/src/tracing/tools/aggregate_trace_attributes.js +118 -0
- package/src/tracing/tools/aggregate_trace_attributes.spec.js +231 -0
- package/src/tracing/tools/index.js +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outputai/core",
|
|
3
|
-
"version": "0.4.0",
|
|
3
|
+
"version": "0.4.1-dev.92bc2fb.0",
|
|
4
4
|
"description": "The core module of the output framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -19,6 +19,9 @@
|
|
|
19
19
|
"./sdk_utils": {
|
|
20
20
|
"types": "./src/utils/index.d.ts",
|
|
21
21
|
"import": "./src/utils/index.js"
|
|
22
|
+
},
|
|
23
|
+
"./sdk_tracing_tools": {
|
|
24
|
+
"import": "./src/tracing/tools/index.js"
|
|
22
25
|
}
|
|
23
26
|
},
|
|
24
27
|
"files": [
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Aggregate `attributes.cost` and `attributes.token_usage` across an entire trace tree.
|
|
3
|
+
*
|
|
4
|
+
* Walks every node in the tree, sums `attributes.cost.total` grouped by the emitting
|
|
5
|
+
* event name (inferred from node `kind` — see `eventNameForKind`), and sums
|
|
6
|
+
* `attributes.token_usage` across LLM nodes. Falls back to `output.usage` on
|
|
7
|
+
* legacy llm trace nodes that predate the `attributes.token_usage` write
|
|
8
|
+
* (see overview §1.2).
|
|
9
|
+
*
|
|
10
|
+
* @typedef {object} TraceAttributes
|
|
11
|
+
* @property {{ total: number, components: Array<{ name: string, value: number }> }} cost
|
|
12
|
+
* @property {{ inputTokens: number, outputTokens: number, cachedInputTokens: number, totalTokens: number }} tokenUsage
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
const COST_EVENT_LLM = 'cost:llm:request';
|
|
16
|
+
const COST_EVENT_HTTP = 'cost:http:request';
|
|
17
|
+
const COST_EVENT_OTHER = 'other';
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Map a trace node `kind` to the canonical cost event name that would emit it.
|
|
21
|
+
* Unknown kinds bucket into `other` so future event sources still roll up cleanly.
|
|
22
|
+
*
|
|
23
|
+
* @param {string} kind
|
|
24
|
+
* @returns {string}
|
|
25
|
+
*/
|
|
26
|
+
const eventNameForKind = kind => {
|
|
27
|
+
if ( kind === 'llm' ) {
|
|
28
|
+
return COST_EVENT_LLM;
|
|
29
|
+
}
|
|
30
|
+
if ( kind === 'http' ) {
|
|
31
|
+
return COST_EVENT_HTTP;
|
|
32
|
+
}
|
|
33
|
+
return COST_EVENT_OTHER;
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
const isNumber = value => typeof value === 'number' && Number.isFinite( value );
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Pull token usage off an llm node, preferring the new attribute over the legacy
|
|
40
|
+
* `output.usage` fallback. Returns `null` when neither shape is present.
|
|
41
|
+
*/
|
|
42
|
+
const readTokenUsage = node => {
|
|
43
|
+
const attrUsage = node.attributes?.token_usage;
|
|
44
|
+
if ( attrUsage && typeof attrUsage === 'object' ) {
|
|
45
|
+
return attrUsage;
|
|
46
|
+
}
|
|
47
|
+
const legacyUsage = node.output?.usage;
|
|
48
|
+
if ( legacyUsage && typeof legacyUsage === 'object' ) {
|
|
49
|
+
return legacyUsage;
|
|
50
|
+
}
|
|
51
|
+
return null;
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Recursively walk a trace tree depth-first, applying `visit` to each node.
|
|
56
|
+
*/
|
|
57
|
+
const walk = ( node, visit ) => {
|
|
58
|
+
if ( !node ) {
|
|
59
|
+
return;
|
|
60
|
+
}
|
|
61
|
+
visit( node );
|
|
62
|
+
for ( const child of node.children ?? [] ) {
|
|
63
|
+
walk( child, visit );
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Build the aggregated `attributes` payload returned by `/trace-attributes`.
|
|
69
|
+
* Component buckets always appear in a stable order so callers can index them
|
|
70
|
+
* positionally if they want to.
|
|
71
|
+
*
|
|
72
|
+
* @param {object|null} root - The root NodeEntry returned by `buildTraceTree`.
|
|
73
|
+
* @returns {TraceAttributes}
|
|
74
|
+
*/
|
|
75
|
+
export default function aggregateTraceAttributes( root ) {
|
|
76
|
+
const costByEvent = new Map( [
|
|
77
|
+
[ COST_EVENT_LLM, 0 ],
|
|
78
|
+
[ COST_EVENT_HTTP, 0 ],
|
|
79
|
+
[ COST_EVENT_OTHER, 0 ]
|
|
80
|
+
] );
|
|
81
|
+
const tokenUsage = { inputTokens: 0, outputTokens: 0, cachedInputTokens: 0, totalTokens: 0 };
|
|
82
|
+
|
|
83
|
+
walk( root, node => {
|
|
84
|
+
const cost = node.attributes?.cost;
|
|
85
|
+
if ( cost && isNumber( cost.total ) ) {
|
|
86
|
+
const eventName = eventNameForKind( node.kind );
|
|
87
|
+
costByEvent.set( eventName, ( costByEvent.get( eventName ) ?? 0 ) + cost.total );
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
if ( node.kind === 'llm' ) {
|
|
91
|
+
const usage = readTokenUsage( node );
|
|
92
|
+
if ( usage ) {
|
|
93
|
+
if ( isNumber( usage.inputTokens ) ) {
|
|
94
|
+
tokenUsage.inputTokens += usage.inputTokens;
|
|
95
|
+
}
|
|
96
|
+
if ( isNumber( usage.outputTokens ) ) {
|
|
97
|
+
tokenUsage.outputTokens += usage.outputTokens;
|
|
98
|
+
}
|
|
99
|
+
if ( isNumber( usage.cachedInputTokens ) ) {
|
|
100
|
+
tokenUsage.cachedInputTokens += usage.cachedInputTokens;
|
|
101
|
+
}
|
|
102
|
+
if ( isNumber( usage.totalTokens ) ) {
|
|
103
|
+
tokenUsage.totalTokens += usage.totalTokens;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
} );
|
|
108
|
+
|
|
109
|
+
const components = Array.from( costByEvent, ( [ name, value ] ) => ( { name, value } ) );
|
|
110
|
+
const total = components.reduce( ( sum, { value } ) => sum + value, 0 );
|
|
111
|
+
|
|
112
|
+
return {
|
|
113
|
+
cost: { total, components },
|
|
114
|
+
tokenUsage
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export { COST_EVENT_LLM, COST_EVENT_HTTP, COST_EVENT_OTHER };
|
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
import { describe, it, expect } from 'vitest';
|
|
2
|
+
import aggregateTraceAttributes, {
|
|
3
|
+
COST_EVENT_LLM,
|
|
4
|
+
COST_EVENT_HTTP,
|
|
5
|
+
COST_EVENT_OTHER
|
|
6
|
+
} from './aggregate_trace_attributes.js';
|
|
7
|
+
|
|
8
|
+
const node = ( { id, kind = 'step', attributes = {}, output, children = [] } ) => ( {
|
|
9
|
+
id,
|
|
10
|
+
kind,
|
|
11
|
+
name: id,
|
|
12
|
+
startedAt: 0,
|
|
13
|
+
endedAt: 0,
|
|
14
|
+
input: undefined,
|
|
15
|
+
output,
|
|
16
|
+
attributes,
|
|
17
|
+
children
|
|
18
|
+
} );
|
|
19
|
+
|
|
20
|
+
describe( 'aggregate_trace_attributes', () => {
|
|
21
|
+
it( 'returns zeros for a null root', () => {
|
|
22
|
+
const result = aggregateTraceAttributes( null );
|
|
23
|
+
expect( result.cost.total ).toBe( 0 );
|
|
24
|
+
expect( result.cost.components ).toEqual( [
|
|
25
|
+
{ name: COST_EVENT_LLM, value: 0 },
|
|
26
|
+
{ name: COST_EVENT_HTTP, value: 0 },
|
|
27
|
+
{ name: COST_EVENT_OTHER, value: 0 }
|
|
28
|
+
] );
|
|
29
|
+
expect( result.tokenUsage ).toEqual( {
|
|
30
|
+
inputTokens: 0, outputTokens: 0, cachedInputTokens: 0, totalTokens: 0
|
|
31
|
+
} );
|
|
32
|
+
} );
|
|
33
|
+
|
|
34
|
+
it( 'returns zeros for a tree with no cost or usage attributes', () => {
|
|
35
|
+
const root = node( {
|
|
36
|
+
id: 'wf',
|
|
37
|
+
kind: 'workflow',
|
|
38
|
+
children: [ node( { id: 's1' } ), node( { id: 's2' } ) ]
|
|
39
|
+
} );
|
|
40
|
+
const result = aggregateTraceAttributes( root );
|
|
41
|
+
expect( result.cost.total ).toBe( 0 );
|
|
42
|
+
expect( result.tokenUsage.totalTokens ).toBe( 0 );
|
|
43
|
+
} );
|
|
44
|
+
|
|
45
|
+
it( 'buckets cost by node kind into llm / http / other components', () => {
|
|
46
|
+
const root = node( {
|
|
47
|
+
id: 'wf',
|
|
48
|
+
kind: 'workflow',
|
|
49
|
+
children: [
|
|
50
|
+
node( { id: 'llm-1', kind: 'llm', attributes: { cost: { total: 0.20 } } } ),
|
|
51
|
+
node( { id: 'llm-2', kind: 'llm', attributes: { cost: { total: 0.10 } } } ),
|
|
52
|
+
node( { id: 'http-1', kind: 'http', attributes: { cost: { total: 0.50 } } } ),
|
|
53
|
+
// Unknown kind falls into the catch-all bucket
|
|
54
|
+
node( { id: 'step-1', kind: 'step', attributes: { cost: { total: 0.07 } } } )
|
|
55
|
+
]
|
|
56
|
+
} );
|
|
57
|
+
const result = aggregateTraceAttributes( root );
|
|
58
|
+
|
|
59
|
+
const byName = Object.fromEntries( result.cost.components.map( c => [ c.name, c.value ] ) );
|
|
60
|
+
expect( byName[COST_EVENT_LLM] ).toBeCloseTo( 0.30, 10 );
|
|
61
|
+
expect( byName[COST_EVENT_HTTP] ).toBeCloseTo( 0.50, 10 );
|
|
62
|
+
expect( byName[COST_EVENT_OTHER] ).toBeCloseTo( 0.07, 10 );
|
|
63
|
+
expect( result.cost.total ).toBeCloseTo( 0.87, 10 );
|
|
64
|
+
} );
|
|
65
|
+
|
|
66
|
+
it( 'total equals the sum of all components', () => {
|
|
67
|
+
const root = node( {
|
|
68
|
+
id: 'wf',
|
|
69
|
+
kind: 'workflow',
|
|
70
|
+
children: [
|
|
71
|
+
node( { id: 'llm-1', kind: 'llm', attributes: { cost: { total: 0.1234 } } } ),
|
|
72
|
+
node( { id: 'http-1', kind: 'http', attributes: { cost: { total: 0.0011 } } } )
|
|
73
|
+
]
|
|
74
|
+
} );
|
|
75
|
+
const { cost } = aggregateTraceAttributes( root );
|
|
76
|
+
const sum = cost.components.reduce( ( s, c ) => s + c.value, 0 );
|
|
77
|
+
expect( cost.total ).toBeCloseTo( sum, 10 );
|
|
78
|
+
} );
|
|
79
|
+
|
|
80
|
+
it( 'sums token_usage across llm nodes from the attribute path', () => {
|
|
81
|
+
const root = node( {
|
|
82
|
+
id: 'wf',
|
|
83
|
+
kind: 'workflow',
|
|
84
|
+
children: [
|
|
85
|
+
node( {
|
|
86
|
+
id: 'llm-1', kind: 'llm', attributes: {
|
|
87
|
+
token_usage: { inputTokens: 100, outputTokens: 20, cachedInputTokens: 5, totalTokens: 125 }
|
|
88
|
+
}
|
|
89
|
+
} ),
|
|
90
|
+
node( {
|
|
91
|
+
id: 'llm-2', kind: 'llm', attributes: {
|
|
92
|
+
token_usage: { inputTokens: 50, outputTokens: 10, cachedInputTokens: 1, totalTokens: 61 }
|
|
93
|
+
}
|
|
94
|
+
} )
|
|
95
|
+
]
|
|
96
|
+
} );
|
|
97
|
+
const { tokenUsage } = aggregateTraceAttributes( root );
|
|
98
|
+
expect( tokenUsage ).toEqual( {
|
|
99
|
+
inputTokens: 150,
|
|
100
|
+
outputTokens: 30,
|
|
101
|
+
cachedInputTokens: 6,
|
|
102
|
+
totalTokens: 186
|
|
103
|
+
} );
|
|
104
|
+
} );
|
|
105
|
+
|
|
106
|
+
it( 'falls back to output.usage on legacy llm nodes that lack attributes.token_usage', () => {
|
|
107
|
+
const root = node( {
|
|
108
|
+
id: 'wf',
|
|
109
|
+
kind: 'workflow',
|
|
110
|
+
children: [
|
|
111
|
+
// Legacy shape — usage lives on output.usage, no attributes.token_usage
|
|
112
|
+
node( {
|
|
113
|
+
id: 'llm-legacy',
|
|
114
|
+
kind: 'llm',
|
|
115
|
+
output: { result: '...', usage: { inputTokens: 200, outputTokens: 40, totalTokens: 240 } }
|
|
116
|
+
} )
|
|
117
|
+
]
|
|
118
|
+
} );
|
|
119
|
+
const { tokenUsage } = aggregateTraceAttributes( root );
|
|
120
|
+
expect( tokenUsage.inputTokens ).toBe( 200 );
|
|
121
|
+
expect( tokenUsage.outputTokens ).toBe( 40 );
|
|
122
|
+
expect( tokenUsage.totalTokens ).toBe( 240 );
|
|
123
|
+
expect( tokenUsage.cachedInputTokens ).toBe( 0 );
|
|
124
|
+
} );
|
|
125
|
+
|
|
126
|
+
it( 'prefers attributes.token_usage over output.usage when both are present', () => {
|
|
127
|
+
const root = node( {
|
|
128
|
+
id: 'wf',
|
|
129
|
+
kind: 'workflow',
|
|
130
|
+
children: [
|
|
131
|
+
node( {
|
|
132
|
+
id: 'llm-1',
|
|
133
|
+
kind: 'llm',
|
|
134
|
+
attributes: { token_usage: { inputTokens: 10, outputTokens: 2, totalTokens: 12 } },
|
|
135
|
+
output: { usage: { inputTokens: 999, outputTokens: 999, totalTokens: 999 } }
|
|
136
|
+
} )
|
|
137
|
+
]
|
|
138
|
+
} );
|
|
139
|
+
const { tokenUsage } = aggregateTraceAttributes( root );
|
|
140
|
+
expect( tokenUsage.inputTokens ).toBe( 10 );
|
|
141
|
+
expect( tokenUsage.totalTokens ).toBe( 12 );
|
|
142
|
+
} );
|
|
143
|
+
|
|
144
|
+
it( 'ignores token_usage shapes on non-llm nodes', () => {
|
|
145
|
+
const root = node( {
|
|
146
|
+
id: 'wf',
|
|
147
|
+
kind: 'workflow',
|
|
148
|
+
// attributes.token_usage on a non-llm node is intentionally ignored —
|
|
149
|
+
// only llm nodes contribute to the token-usage rollup today.
|
|
150
|
+
children: [
|
|
151
|
+
node( {
|
|
152
|
+
id: 'step-1', kind: 'step', attributes: {
|
|
153
|
+
token_usage: { inputTokens: 999, outputTokens: 999, totalTokens: 999 }
|
|
154
|
+
}
|
|
155
|
+
} )
|
|
156
|
+
]
|
|
157
|
+
} );
|
|
158
|
+
const { tokenUsage } = aggregateTraceAttributes( root );
|
|
159
|
+
expect( tokenUsage.totalTokens ).toBe( 0 );
|
|
160
|
+
} );
|
|
161
|
+
|
|
162
|
+
it( 'aggregates a mixed tree with cost on http nodes and usage on llm nodes', () => {
|
|
163
|
+
const root = node( {
|
|
164
|
+
id: 'wf',
|
|
165
|
+
kind: 'workflow',
|
|
166
|
+
children: [
|
|
167
|
+
node( {
|
|
168
|
+
id: 'llm-1',
|
|
169
|
+
kind: 'llm',
|
|
170
|
+
attributes: {
|
|
171
|
+
cost: { total: 0.0038 },
|
|
172
|
+
token_usage: { inputTokens: 2264, outputTokens: 411, cachedInputTokens: 100, totalTokens: 2775 }
|
|
173
|
+
}
|
|
174
|
+
} ),
|
|
175
|
+
node( {
|
|
176
|
+
id: 'http-1',
|
|
177
|
+
kind: 'http',
|
|
178
|
+
attributes: { cost: { total: 0.50 } }
|
|
179
|
+
} )
|
|
180
|
+
]
|
|
181
|
+
} );
|
|
182
|
+
const result = aggregateTraceAttributes( root );
|
|
183
|
+
|
|
184
|
+
const byName = Object.fromEntries( result.cost.components.map( c => [ c.name, c.value ] ) );
|
|
185
|
+
expect( byName[COST_EVENT_LLM] ).toBeCloseTo( 0.0038, 10 );
|
|
186
|
+
expect( byName[COST_EVENT_HTTP] ).toBeCloseTo( 0.50, 10 );
|
|
187
|
+
expect( byName[COST_EVENT_OTHER] ).toBe( 0 );
|
|
188
|
+
expect( result.cost.total ).toBeCloseTo( 0.5038, 10 );
|
|
189
|
+
|
|
190
|
+
expect( result.tokenUsage ).toEqual( {
|
|
191
|
+
inputTokens: 2264,
|
|
192
|
+
outputTokens: 411,
|
|
193
|
+
cachedInputTokens: 100,
|
|
194
|
+
totalTokens: 2775
|
|
195
|
+
} );
|
|
196
|
+
} );
|
|
197
|
+
|
|
198
|
+
it( 'recurses through nested children', () => {
|
|
199
|
+
const root = node( {
|
|
200
|
+
id: 'wf',
|
|
201
|
+
kind: 'workflow',
|
|
202
|
+
children: [
|
|
203
|
+
node( {
|
|
204
|
+
id: 's1',
|
|
205
|
+
kind: 'step',
|
|
206
|
+
children: [
|
|
207
|
+
node( {
|
|
208
|
+
id: 'llm-1', kind: 'llm', attributes: {
|
|
209
|
+
cost: { total: 0.01 },
|
|
210
|
+
token_usage: { inputTokens: 10, outputTokens: 5, totalTokens: 15 }
|
|
211
|
+
}
|
|
212
|
+
} )
|
|
213
|
+
]
|
|
214
|
+
} )
|
|
215
|
+
]
|
|
216
|
+
} );
|
|
217
|
+
const result = aggregateTraceAttributes( root );
|
|
218
|
+
expect( result.cost.total ).toBeCloseTo( 0.01, 10 );
|
|
219
|
+
expect( result.tokenUsage.totalTokens ).toBe( 15 );
|
|
220
|
+
} );
|
|
221
|
+
|
|
222
|
+
it( 'keeps the canonical component ordering: llm, http, other', () => {
|
|
223
|
+
const root = node( { id: 'wf', kind: 'workflow' } );
|
|
224
|
+
const { cost } = aggregateTraceAttributes( root );
|
|
225
|
+
expect( cost.components.map( c => c.name ) ).toEqual( [
|
|
226
|
+
COST_EVENT_LLM,
|
|
227
|
+
COST_EVENT_HTTP,
|
|
228
|
+
COST_EVENT_OTHER
|
|
229
|
+
] );
|
|
230
|
+
} );
|
|
231
|
+
} );
|