Skip to content

Commit 79b020b

Browse files
committed
fix(tarko-cli): correct thinking options assignment
1 parent afbbde9 commit 79b020b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • multimodal/tarko/agent/src/agent

multimodal/tarko/agent/src/agent/agent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export class Agent<T extends AgentOptions = AgentOptions>
147147
`Invalid thinking option, expected an object, but got ${JSON.stringify(options.thinking)}`,
148148
);
149149
}
150-
this.reasoningOptions = { type: 'disabled' };
150+
this.reasoningOptions = options.thinking;
151151
} else {
152152
this.reasoningOptions = { type: 'disabled' };
153153
}

0 commit comments

Comments
 (0)