@inference-gateway/cli 0.153.3 → 0.154.1

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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -667,7 +667,9 @@ infer chat --model "anthropic/claude-4"
667
667
  - **web.enabled** - Enable web terminal mode (default: `false`)
668
668
  - **web.port** - Web server port (default: `3000`)
669
669
  - **web.host** - Web server host (default: `localhost`)
670
- - **web.session_inactivity_mins** - Session timeout in minutes (default: `5`)
670
+ - **web.session_inactivity_mins** - Minutes a session may go without activity before it is reaped (default: `5`).
671
+ A connected browser tab refreshes its session every 10s, so in practice this only reaps sessions whose
672
+ connection is gone or stalled. `0` or negative disables cleanup entirely.
671
673
 
672
674
  ### Environment Variables
673
675
 
@@ -1360,7 +1362,7 @@ web:
1360
1362
  enabled: true
1361
1363
  port: 3000
1362
1364
  host: "localhost"
1363
- session_inactivity_mins: 10 # Auto-cleanup after 10 minutes
1365
+ session_inactivity_mins: 10 # Reap sessions with no activity for 10 minutes
1364
1366
  EOF
1365
1367
 
1366
1368
  infer chat --web # Uses config file settings
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inference-gateway/cli",
3
- "version": "0.153.3",
3
+ "version": "0.154.1",
4
4
  "description": "A Git-first CLI coding agent that turns ideas, issues, and tasks into real code changes.",
5
5
  "bin": {
6
6
  "infer": "bin/run.js"