You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These can easily be represented by 1 action + converter + executor in the backend, since with one you just take a list of size 1. But now we have 1 regex per action. You could try to write a regex that matches both scentences and be damned with regex issues later. Or we can introduce a new feature: multiple regexes per action.
Details:
Allow for set of regexes per action in framework
Also still have easy option of providing just one
Identify the regex by some id (String)
At conversion, you get the id so you know what to parse
After conversion, model and executor are generic so don't need to know about the original distinction
The text was updated successfully, but these errors were encountered:
Very common scenario:
These can easily be represented by 1 action + converter + executor in the backend, since with one you just take a list of size 1. But now we have 1 regex per action. You could try to write a regex that matches both scentences and be damned with regex issues later. Or we can introduce a new feature: multiple regexes per action.
Details:
The text was updated successfully, but these errors were encountered: