@inference-gateway/cli 0.154.0 → 0.155.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 +5 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -404,6 +404,7 @@ See [Commands Reference](docs/commands-reference.md#configuration-management) fo
|
|
|
404
404
|
```bash
|
|
405
405
|
infer agents init # Initialize agents configuration
|
|
406
406
|
infer agents add browser-agent # Add an agent from the registry with defaults
|
|
407
|
+
infer agents add browser-agent --tag lightpanda # Pick another image tag (engine/version)
|
|
407
408
|
infer agents add custom https://... # Add a custom agent
|
|
408
409
|
infer agents list # List all agents
|
|
409
410
|
```
|
|
@@ -667,7 +668,9 @@ infer chat --model "anthropic/claude-4"
|
|
|
667
668
|
- **web.enabled** - Enable web terminal mode (default: `false`)
|
|
668
669
|
- **web.port** - Web server port (default: `3000`)
|
|
669
670
|
- **web.host** - Web server host (default: `localhost`)
|
|
670
|
-
- **web.session_inactivity_mins** -
|
|
671
|
+
- **web.session_inactivity_mins** - Minutes a session may go without activity before it is reaped (default: `5`).
|
|
672
|
+
A connected browser tab refreshes its session every 10s, so in practice this only reaps sessions whose
|
|
673
|
+
connection is gone or stalled. `0` or negative disables cleanup entirely.
|
|
671
674
|
|
|
672
675
|
### Environment Variables
|
|
673
676
|
|
|
@@ -1360,7 +1363,7 @@ web:
|
|
|
1360
1363
|
enabled: true
|
|
1361
1364
|
port: 3000
|
|
1362
1365
|
host: "localhost"
|
|
1363
|
-
session_inactivity_mins: 10 #
|
|
1366
|
+
session_inactivity_mins: 10 # Reap sessions with no activity for 10 minutes
|
|
1364
1367
|
EOF
|
|
1365
1368
|
|
|
1366
1369
|
infer chat --web # Uses config file settings
|