@yeaft/webchat-agent 1.0.402 → 1.0.404

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yeaft/webchat-agent",
3
- "version": "1.0.402",
3
+ "version": "1.0.404",
4
4
  "description": "Remote worker agent for Yeaft Web Code Agent — connects the native Yeaft engine, CLI providers, and workbench tools",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -25,6 +25,7 @@ export async function handleReadFile(msg) {
25
25
  conversationId,
26
26
  _requestUserId,
27
27
  filePath: resolved,
28
+ requestedFilePath: filePath,
28
29
  content: buffer.toString('base64'),
29
30
  binary: true,
30
31
  mimeType
@@ -58,6 +59,7 @@ export async function handleReadFile(msg) {
58
59
  conversationId,
59
60
  _requestUserId,
60
61
  filePath: resolved,
62
+ requestedFilePath: filePath,
61
63
  content,
62
64
  language: langMap[ext] || null
63
65
  });
@@ -68,6 +70,7 @@ export async function handleReadFile(msg) {
68
70
  conversationId,
69
71
  _requestUserId,
70
72
  filePath,
73
+ requestedFilePath: filePath,
71
74
  content: '',
72
75
  error: e.message
73
76
  });