3

これは、仮想アシスタントに使用している単純なコードの例です。

tell application "SpeechRecognitionServer"
    set theResponse to listen for {"good", "bad"} with prompt "How are you?"
    if theResponse is "good" then
        say "Wonderful sir… Is there anything you want me to do for you?"
    else
        say "Cheer up chap! Is there anything you want me to do for you?"
    end if
end tell

2 つ以上の単語を理解し、特定のキーワードを理解できるように、これをさらに発展させることができる人はいますか?

4

1 に答える 1