Conversation
- New single-part story intents (40-TreasureMap) with slots color/name/gift/number - Register in TextsList, TextsList-Screen, NewText (text-40), EasyWelcome-yes promote - Fix EasyWelcome-no priority -1 -> 500000
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 924481b5f4
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| "name": "number", | ||
| "required": true, | ||
| "dataType": "@sys.any", |
There was a problem hiding this comment.
Require a numeric entity for the number slot
When this story asks for the last slot it prompts the user for a number, but the required number parameter is declared as @sys.any. In Dialogflow slot filling this lets any utterance satisfy the slot, so a non-numeric answer or ASR misrecognition can be rendered into the final text as часов <non-number>. Other numeric slots in this agent use @sys.number/@sys.number-integer; making this slot numeric would prevent the story from completing with invalid text.
Useful? React with 👍 / 👎.
No description provided.