@tangle-network/create-agent-app 0.44.49 → 0.44.50
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
CHANGED
|
@@ -79,6 +79,10 @@ CREATE TABLE IF NOT EXISTS message (
|
|
|
79
79
|
parts TEXT DEFAULT '[]',
|
|
80
80
|
tool_name TEXT,
|
|
81
81
|
model TEXT,
|
|
82
|
+
requested_model TEXT,
|
|
83
|
+
served_model TEXT,
|
|
84
|
+
served_provider TEXT,
|
|
85
|
+
served_model_source TEXT,
|
|
82
86
|
input_tokens INTEGER,
|
|
83
87
|
output_tokens INTEGER,
|
|
84
88
|
reasoning_tokens INTEGER,
|
|
@@ -234,6 +234,10 @@ describe('e2e: fake sandbox producer → streamed turn → persisted transcript'
|
|
|
234
234
|
const assistant = messages[1]!
|
|
235
235
|
expect(assistant.content).toBe('Filed the summary.')
|
|
236
236
|
expect(assistant.model).toBe(MODEL)
|
|
237
|
+
expect(assistant.requestedModel).toBe(MODEL)
|
|
238
|
+
expect(assistant.servedModel).toBeNull()
|
|
239
|
+
expect(assistant.servedProvider).toBeNull()
|
|
240
|
+
expect(assistant.servedSource).toBeNull()
|
|
237
241
|
expect(assistant.inputTokens).toBe(40)
|
|
238
242
|
expect(assistant.outputTokens).toBe(20)
|
|
239
243
|
expect(assistant.reasoningTokens).toBe(5)
|