We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2ebc810 + 170e623 commit 54530eeCopy full SHA for 54530ee
.changeset/legal-wasps-shine.md
@@ -0,0 +1,5 @@
1
+---
2
+"kilo-code": minor
3
4
+
5
+Enable browser tool for Gemini, GPT and all other models that can read images
src/core/task/Task.ts
@@ -1709,7 +1709,8 @@ export class Task extends EventEmitter<ClineEvents> {
1709
return SYSTEM_PROMPT(
1710
provider.context,
1711
this.cwd,
1712
- (this.api.getModel().info.supportsComputerUse ?? false) && (browserToolEnabled ?? true),
+ // kilocode_change: supports images => supports browser, front-running on https://github.com/RooCodeInc/Roo-Code/pull/5026
1713
+ (this.api.getModel().info.supportsImages ?? false) && (browserToolEnabled ?? true),
1714
mcpHub,
1715
this.diffStrategy,
1716
browserViewportSize,
0 commit comments