booths 0.1.2 → 0.1.3
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/dist/index.js +5 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -886,14 +886,15 @@ class L {
|
|
|
886
886
|
*/
|
|
887
887
|
async onBeforeMessageSend(t, o) {
|
|
888
888
|
let e = o.instructions || "";
|
|
889
|
-
return e
|
|
889
|
+
return e = `
|
|
890
890
|
|
|
891
891
|
|
|
892
892
|
|
|
893
893
|
[MUST]
|
|
894
|
-
-
|
|
895
|
-
- This marker indicates that the interaction loop should end
|
|
896
|
-
|
|
894
|
+
- Always add the marker "__awaiting_user_response__" at the end of your output when you have finished your part
|
|
895
|
+
- This marker indicates that the interaction loop should end.
|
|
896
|
+
|
|
897
|
+
${e}
|
|
897
898
|
`, {
|
|
898
899
|
...o,
|
|
899
900
|
instructions: e
|