@vtstech/pi-react-fallback 1.1.0 → 1.1.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 +2 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -15,9 +15,11 @@ pi install "npm:@vtstech/pi-react-fallback"
15
15
  Automatically loaded — no commands needed. When a model lacks native tool calling:
16
16
 
17
17
  - Parses `Thought:`, `Action:`, `Action Input:` patterns from model output
18
+ - **Multi-dialect support**: classic ReAct (`Action:`), Function (`Function:`), Tool (`Tool:`), Call (`Call:`) — each with dynamically-built regex patterns
18
19
  - Multiple regex strategies including parenthetical style and loose matching
19
20
  - Bridges text-based tool calls into Pi's native tool execution pipeline
20
21
  - Falls back when native tool calls fail
22
+ - Disabled by default; toggle via `/react-mode` with persistent config across restarts
21
23
 
22
24
  ## Links
23
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vtstech/pi-react-fallback",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "ReAct fallback extension for Pi Coding Agent",
5
5
  "main": "react-fallback.js",
6
6
  "keywords": ["pi-extensions"],
@@ -14,7 +14,7 @@
14
14
  "url": "https://github.com/VTSTech/pi-coding-agent"
15
15
  },
16
16
  "dependencies": {
17
- "@vtstech/pi-shared": "1.1.0"
17
+ "@vtstech/pi-shared": "1.1.1"
18
18
  },
19
19
  "peerDependencies": {
20
20
  "@mariozechner/pi-coding-agent": ">=0.66"