Yes Sphinx 4 its perfect for what you want, its a very sophisticated speech recognition system, and since its so popular you have a lot of tutorials available on how to consume it:
Main webpage: http://cmusphinx.sourceforge.net/sphinx4/
Some tutorials:
http://www.youtube.com/watch?v=GeqtLrcOogs
http://puneetk.com/speech-recognizer-in-java-tutorial
Now this will allow you to turn the voice into inputs, and then you will have to parse those inputs to make the commands.
So to make a Siri like application you need 3 componentes:
- A speech-to-text analyzer, That would be sphinx4.
- A grammar analyzer, that would be your parser, this can be simple or
very complex.
- A set of services, the things the AI will do with those commands
You have to try and keep things simples and focused. This is the reason why Siri works so well.
This is a list of things you can ask Siri:
- Ask for a reminder.
- Ask to send a text.
- Ask about the weather.
- Ask for information (from Yelp, Wolfram|Alpha, or Wikipedia).
- Ask to set a meeting.
- Ask to send an email.
- Ask for a number.
- Ask to set an alarm.
- Ask for directions.
- Ask about stocks.
- Ask to set the timer.
- Ask Siri about Siri.
Even if she seems to be more open and dynamic, actually Siri is very limited in the things she can do. Don't get me wrong I think Siri is amazing and in no way I'm saying programming something like Siri will be easy (I bet it wont).
Hope it helps.