@inference-gateway/cli 0.176.1 → 0.178.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -387,16 +387,12 @@ infer config get # dump the whole effective config
|
|
|
387
387
|
# Agent configuration
|
|
388
388
|
infer config set agent.model "deepseek/deepseek-v4-pro"
|
|
389
389
|
infer config set agent.max_turns 100
|
|
390
|
-
infer config set agent.verbose_tools true
|
|
391
390
|
|
|
392
391
|
# Tool management
|
|
393
392
|
infer config set tools.enabled true
|
|
394
393
|
infer config set tools.bash.enabled true
|
|
395
394
|
infer config set tools.safety.require_approval true
|
|
396
395
|
|
|
397
|
-
# Export configuration
|
|
398
|
-
infer config set export.summary_model "anthropic/claude-4.1-haiku"
|
|
399
|
-
|
|
400
396
|
# Write to userspace (~/.infer/config.yaml) instead of the project
|
|
401
397
|
infer config set agent.model "openai/gpt-4o" --userspace
|
|
402
398
|
```
|
|
@@ -559,6 +555,7 @@ use the `gh` CLI through Bash (or the built-in `/scm` shortcuts) for GitHub oper
|
|
|
559
555
|
| **MouseMove** / **MouseClick** / **MouseScroll** | Control the mouse | No |
|
|
560
556
|
| **KeyboardType** | Type text or send key combinations | No |
|
|
561
557
|
| **GetFocusedApp** / **ActivateApp** | Query or focus an application | No |
|
|
558
|
+
| **GetUIElements** / **PressUIElement** | Read the accessibility tree / press an element by title without moving the cursor (macOS) | No |
|
|
562
559
|
| **GetLatestFrame** | Read the latest frame from a named source (screen, camera directory) | No |
|
|
563
560
|
|
|
564
561
|
**Memory, scheduling & A2A** (each gated by its own flag):
|
|
@@ -1218,7 +1215,7 @@ infer skills uninstall pdf # Remove a skill folder by name
|
|
|
1218
1215
|
|
|
1219
1216
|
When enabled, the agent can control the desktop - move and click the mouse, scroll, type text and key
|
|
1220
1217
|
combinations, focus applications, and read screenshots. The display backend is detected automatically
|
|
1221
|
-
across **macOS
|
|
1218
|
+
across **macOS**, **X11**, and **Wayland**.
|
|
1222
1219
|
|
|
1223
1220
|
Computer Use is **off by default**. Turn it on in `computer_use.yaml` (or `infer config set computer_use.enabled true`):
|
|
1224
1221
|
|
|
@@ -1231,8 +1228,11 @@ screenshot:
|
|
|
1231
1228
|
streaming_enabled: true # also registers the GetLatestFrame tool
|
|
1232
1229
|
```
|
|
1233
1230
|
|
|
1234
|
-
Tools: `MouseMove`, `MouseClick`, `MouseScroll`, `KeyboardType`, `GetFocusedApp`, `ActivateApp`,
|
|
1235
|
-
`
|
|
1231
|
+
Tools: `MouseMove`, `MouseClick`, `MouseScroll`, `KeyboardType`, `GetFocusedApp`, `ActivateApp`,
|
|
1232
|
+
`GetUIElements`, `PressUIElement`, and
|
|
1233
|
+
`GetLatestFrame`. On macOS, `GetUIElements` and `PressUIElement` read the accessibility tree
|
|
1234
|
+
directly - exact element titles and positions with no vision round-trip, and presses that never
|
|
1235
|
+
move the cursor. They run silently in the background (bypassing the approval prompt) and are
|
|
1236
1236
|
governed by `computer_use.enabled` plus the configured rate limits. The
|
|
1237
1237
|
[desktop app](https://github.com/inference-gateway/desktop) visualizes what the agent is doing
|
|
1238
1238
|
(monitor, screen overlay, approvals). For a sandboxed desktop to drive, see
|