Use the functions of a child competency
import code from 'my-skill.converse'
export default {
code,
functions: {
hello() {
return 'Hey'
}
}
}import code from './main.converse'
import mySkill from 'skills/my-skill/my-skill'
export default {
code,
skills: {
mySkill
}
}Read directly a function of the conversational script
Last updated