booths 0.0.5 → 0.0.6

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 +6 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -827,7 +827,12 @@ class R {
827
827
  return e += `
828
828
 
829
829
 
830
- Once a user response is expected, at the end of your message, add "__awaiting_user_response__" to your message.`, {
830
+
831
+ [MUST]
832
+ - Add the marker "__awaiting_user_response__" to the end of your response when you expect a user response.
833
+ - This marker indicates that the interaction loop should end and the system should wait for user input
834
+ - If the marker is not present, the system will continue to process the response as usual.
835
+ `, {
831
836
  ...o,
832
837
  instructions: e
833
838
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "booths",
3
3
  "private": false,
4
- "version": "0.0.5",
4
+ "version": "0.0.6",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",