We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
currently stop pipeline first checks active skill one by one to see if any wants to stop, if not then a global stop is sent
it should also be possible to request stopping a skill by name, not depending on the active order
"stop timer" "stop wikipedia"
this could be exposed to skills a few ways
class MySkill: def initiallize(self): self.register_stop_vocab("stop.voc")
with equivalent decorator
class MySkill: @stop_vocab("stop.voc") def stop(self): self.register_stop_vocab("stop.voc")
default name could be derived from the class, like OCP skills do
skill_name = camel_case_split(self.__class__.__name__)
The text was updated successfully, but these errors were encountered:
JarbasAl
No branches or pull requests
currently stop pipeline first checks active skill one by one to see if any wants to stop, if not then a global stop is sent
it should also be possible to request stopping a skill by name, not depending on the active order
"stop timer"
"stop wikipedia"
this could be exposed to skills a few ways
with equivalent decorator
default name could be derived from the class, like OCP skills do
The text was updated successfully, but these errors were encountered: