python
import talon.voice as voice
from talon import Context, actions
ctx = Context()
@ctx.action_class("user")
class UserActions:
def say_hello():
actions.edit.paste("Hello, World!")
@voice.command()
def hello_talon():
actions.user.say_hello()
ctx.load()