@yeaft/webchat-agent 0.0.126 → 0.0.128
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/crew.js +1 -1
- package/package.json +1 -1
package/crew.js
CHANGED
|
@@ -1305,7 +1305,7 @@ function parseRoutes(text) {
|
|
|
1305
1305
|
const toMatch = block.match(/to:\s*(.+)/i);
|
|
1306
1306
|
if (!toMatch) continue;
|
|
1307
1307
|
|
|
1308
|
-
const summaryMatch = block.match(/summary:\s*(
|
|
1308
|
+
const summaryMatch = block.match(/summary:\s*([\s\S]+)/i);
|
|
1309
1309
|
const taskMatch = block.match(/^task:\s*(.+)/im);
|
|
1310
1310
|
const taskTitleMatch = block.match(/^taskTitle:\s*(.+)/im);
|
|
1311
1311
|
|