Skip to content

Commit ba9be4a

Browse files
committed
docs(CHANGELOG): v0.6.7
1 parent b86c83a commit ba9be4a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## [v0.6.7](https://github.com/DearVa/Everywhere/releases/tag/v0.6.7) - 2026-03-01
22

33
### ✨ Features
4-
- **Visual Context Supercharged**: Introducing `get_visual_tree` tool. Your assistant can now call this tool to fetch on-screen elements freely, massively boosting its contextual comprehension and self-awareness capabilities.
4+
- **Visual Context Supercharged**: Introducing `get_visual_tree` tool. Your assistant can now call this tool to fetch on-screen elements freely, massively boosting its contextual comprehension and self-awareness capabilities. Note: This is an experimental feature and may not work perfectly with all secenarios. Feedback is highly appreciated!
55
- **Model Update**: Removed the deprecated Gemini 3 Pro Preview model and added the newly released Gemini 3.1 Pro Preview.
66

77
### 🚀 Improvements

src/Everywhere.Core/Chat/Plugins/VisualContextPlugin.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ public VisualContextPlugin(
4949
list.Add(
5050
new NativeChatFunction(
5151
GetVisualTree,
52-
ChatFunctionPermissions.ScreenRead));
52+
ChatFunctionPermissions.ScreenRead,
53+
isExperimental: true));
5354
list.Add(
5455
new NativeChatFunction(
5556
ExecuteVisualActionsAsync,

0 commit comments

Comments
 (0)