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.
Files changed (2) hide show
  1. package/dist/index.js +5 -4
  2. 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
- - Add the marker "__awaiting_user_response__" to the end of your response when you expect a user response.
895
- - This marker indicates that the interaction loop should end and the system should wait for user input.
896
- - If the marker is not present, the system will continue to process the response as usual.
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
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "booths",
3
3
  "private": false,
4
- "version": "0.1.2",
4
+ "version": "0.1.3",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",