zef-dev / convoworks-core

PHP framework for handling conversational services like Amazon Alexa skills, Google Assistant, Viber, FB messenger ...
https://convoworks.com
MIT License
25 stars 2 forks source link

Refactor preview so that one component can provide multiple speech sources #23

Closed Tefached95 closed 3 years ago

Tefached95 commented 3 years ago

Any component that is considered a speech source currently provides only one speech part component. This worked under the presumption mainly that any single workflow component will only ever provide one particular speech source. For example, a single intent reader provides only the utterances from the intent it reads.

However, custom elements, such as blocks and processors, may define several internal intent readers which are all grouped under the same element. Instead of having several intent reader elements which can each provide one speech part, this is a single element that should be able to provide multiple speech parts.

Tefached95 commented 3 years ago

Rejected. Was not necessary.