Skip to content

Commit 9509eb7

Browse files
committed
feat: add addtributes
1 parent 3e22975 commit 9509eb7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/otomi-stack.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2515,6 +2515,9 @@ export default class OtomiStack {
25152515
spec: {
25162516
foundationModel: data.spec?.foundationModel ?? existingAgent.spec.foundationModel,
25172517
foundationModelEndpoint: data.spec?.foundationModelEndpoint ?? existingAgent.spec.foundationModelEndpoint,
2518+
temperature: data.spec?.temperature ?? existingAgent.spec.temperature,
2519+
topP: data.spec?.topP ?? existingAgent.spec.topP,
2520+
maxTokens: data.spec?.maxTokens ?? existingAgent.spec.maxTokens,
25182521
agentInstructions: data.spec?.agentInstructions ?? existingAgent.spec.agentInstructions,
25192522
routes: (data.spec?.routes ?? existingAgent.spec.routes) as typeof existingAgent.spec.routes,
25202523
tools: (data.spec?.tools ?? existingAgent.spec.tools) as typeof existingAgent.spec.tools,

0 commit comments

Comments
 (0)