Skip to content

Commit 4e848fe

Browse files
committed
fix(tarko-cli): correct thinking object assignment in config builder
1 parent 79b020b commit 4e848fe

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

multimodal/tarko/agent-cli/src/config/builder.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,7 @@ function handleCoreDeprecatedOptions(
186186
type: thinking ? 'enabled' : 'disabled',
187187
};
188188
} else if (typeof thinking === 'object') {
189-
config.thinking = {
190-
type: 'disabled',
191-
...(config.thinking || {}),
192-
};
189+
config.thinking = thinking;
193190
}
194191
}
195192
}

0 commit comments

Comments
 (0)