@inference-gateway/cli 0.174.0 โ 0.176.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 +19 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,6 +9,14 @@
|
|
|
9
9
|
|
|
10
10
|
An agentic command-line assistant that writes code, understands project context, and uses tools to perform real tasks.
|
|
11
11
|
|
|
12
|
+
[๐ Documentation](https://docs.inference-gateway.com/cli) ยท [๐ Quick Start](#quick-start) ยท [๐ ๏ธ Tools Reference](docs/tools-reference.md) ยท [๐ฌ Discussions](https://github.com/orgs/inference-gateway/discussions)
|
|
13
|
+
|
|
14
|
+
<br/>
|
|
15
|
+
|
|
16
|
+
<img src="./assets/tui-chat.png" width="760" alt="infer chat - the interactive TUI with model selection, streaming responses, and a live status bar" />
|
|
17
|
+
|
|
18
|
+
*The `infer chat` TUI - [watch the animated demo](https://docs.inference-gateway.com/cli#quick-start)*
|
|
19
|
+
|
|
12
20
|
</div>
|
|
13
21
|
|
|
14
22
|
## โ ๏ธ Warning
|
|
@@ -483,6 +491,14 @@ When tool execution is enabled, LLMs can use various tools to interact with your
|
|
|
483
491
|
summary of available tools. For detailed documentation, parameters, and examples, see
|
|
484
492
|
[Tools Reference](docs/tools-reference.md).
|
|
485
493
|
|
|
494
|
+
<div align="center">
|
|
495
|
+
|
|
496
|
+
<img src="./assets/tui-tools.png" width="760" alt="A Grep tool call executed by the agent, with its result and the assistant's summary" />
|
|
497
|
+
|
|
498
|
+
*The agent running a `Grep` tool call - results are collapsible with `ctrl+o`*
|
|
499
|
+
|
|
500
|
+
</div>
|
|
501
|
+
|
|
486
502
|
Tools are grouped by category below. Many are gated behind a config flag (noted per group);
|
|
487
503
|
the always-available set is registered for every session. There is **no built-in GitHub tool** -
|
|
488
504
|
use the `gh` CLI through Bash (or the built-in `/scm` shortcuts) for GitHub operations.
|
|
@@ -1217,8 +1233,9 @@ screenshot:
|
|
|
1217
1233
|
|
|
1218
1234
|
Tools: `MouseMove`, `MouseClick`, `MouseScroll`, `KeyboardType`, `GetFocusedApp`, `ActivateApp`, and
|
|
1219
1235
|
`GetLatestFrame`. They run silently in the background (bypassing the approval prompt) and are
|
|
1220
|
-
governed by `computer_use.enabled` plus the configured rate limits.
|
|
1221
|
-
|
|
1236
|
+
governed by `computer_use.enabled` plus the configured rate limits. The
|
|
1237
|
+
[desktop app](https://github.com/inference-gateway/desktop) visualizes what the agent is doing
|
|
1238
|
+
(monitor, screen overlay, approvals). For a sandboxed desktop to drive, see
|
|
1222
1239
|
[examples/computer-use](examples/computer-use/).
|
|
1223
1240
|
|
|
1224
1241
|
> **โ ๏ธ Windows note:** Computer use (mouse, keyboard, screenshot tools) is **not supported on Windows**.
|