Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom Intent for Medical domain application

Tags:

ios

swift

sirikit

With release of iOS 10, SiriKit available for developers to make applications Siri enabled.But from SiriKit Documentation, it looks like SiriKit supports for specific domain apps.

Currently Apple suggest following domains :

  • VoIP calling
  • Messaging
  • Payments
  • Photo
  • Workouts
  • Ride booking
  • CarPlay(automotive vendors only)
  • Restaurant reservations (requires additional support from Apple)

But my application is in medical domain, which is not listed above. I want application to Siri enabled to book appointment with his/her favourite doctor, for possible time slots or find doctor according to location and book appointment.

Documented Intent Domains.

So can we create custom INIntent to support this functionalities ?

like image 489
technerd Avatar asked Oct 20 '16 06:10

technerd


1 Answers

No you can't on iOS 10. This is pure conjecture but creating a totally new intent probably requires much more work on Siri servers:

  • necessary vocabulary for all the supported langugages
  • mapping which parts of the spoken sentences should be part of Siri's vocabulary and which should be part of your apps
  • developing the process/processes necessary to fulfill an intent (param resolving, confirmation etc.)
like image 192
juhan_h Avatar answered Sep 17 '22 20:09

juhan_h