@inference-gateway/cli 0.120.0 → 0.121.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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ An agentic command-line assistant that writes code, understands project context,
|
|
|
54
54
|
- [Learn more →](docs/features/conversation-versioning.md)
|
|
55
55
|
- **Configuration Management**: Manage gateway settings via YAML config
|
|
56
56
|
- **Project Initialization**: Set up local project configurations
|
|
57
|
-
- **Tool Execution**: LLMs can execute
|
|
57
|
+
- **Tool Execution**: LLMs can execute allowed commands and tools - [See all tools →](docs/tools-reference.md)
|
|
58
58
|
- **Tool Approval System**: User approval workflow for sensitive operations with real-time diff visualization
|
|
59
59
|
- **Agent Modes**: Three operational modes for different workflows:
|
|
60
60
|
- **Standard Mode** (default): Normal operation with all configured tools and approval checks
|
|
@@ -566,7 +566,7 @@ summary of available tools. For detailed documentation, parameters, and examples
|
|
|
566
566
|
|
|
567
567
|
| Tool | Purpose | Approval Required | Documentation |
|
|
568
568
|
| ------ | --------- | ------------------- | --------------- |
|
|
569
|
-
| **Bash** | Execute
|
|
569
|
+
| **Bash** | Execute allowed shell commands | Optional | [Details](docs/tools-reference.md#bash-tool) |
|
|
570
570
|
| **Read** | Read file contents with line ranges | No | [Details](docs/tools-reference.md#read-tool) |
|
|
571
571
|
| **Write** | Write content to files | Yes | [Details](docs/tools-reference.md#write-tool) |
|
|
572
572
|
| **Edit** | Exact string replacements in files | Yes | [Details](docs/tools-reference.md#edit-tool) |
|
|
@@ -595,7 +595,7 @@ infer config set tools.write.enabled true
|
|
|
595
595
|
# Configure tool settings
|
|
596
596
|
infer config set tools.grep.backend ripgrep
|
|
597
597
|
# List values are comma-separated and replace the whole list
|
|
598
|
-
infer config set tools.web_fetch.
|
|
598
|
+
infer config set tools.web_fetch.allowed_domains "example.com,github.com"
|
|
599
599
|
```
|
|
600
600
|
|
|
601
601
|
**Customising Tool Descriptions:**
|
|
@@ -609,8 +609,8 @@ misinterprets a default or when you want to nudge usage:
|
|
|
609
609
|
tools:
|
|
610
610
|
Bash:
|
|
611
611
|
description: |-
|
|
612
|
-
Execute
|
|
613
|
-
commands from the
|
|
612
|
+
Execute allowed bash commands securely. Only pre-approved
|
|
613
|
+
commands from the allowed list can be executed.
|
|
614
614
|
Read:
|
|
615
615
|
description: |-
|
|
616
616
|
Reads a file from the local filesystem. Always prefer reading
|
|
@@ -887,7 +887,7 @@ actions.
|
|
|
887
887
|
- `/clear` - Clear conversation history
|
|
888
888
|
- `/exit` - Exit chat session
|
|
889
889
|
- `/help [shortcut]` - Show available shortcuts
|
|
890
|
-
- `/
|
|
890
|
+
- `/model` - Switch to different model
|
|
891
891
|
- `/theme` - Switch chat theme
|
|
892
892
|
- `/cost` - Show session cost breakdown with per-model details
|
|
893
893
|
- `/compact` - Compact conversation
|