One key to be polite on MacOS

on run {input, parameters}

    set _clipboard to get the clipboard
    set the clipboard to "谢谢 (thanks)"
    tell application "System Events" to keystroke "v" using command down
    delay 0.2
    set the clipboard to _clipboard
    delay 0.1
    tell application "System Events" to keystroke return using command down

    return input
end run

https://superuser.com/a/543660