AppIntents built in way to receive recurrence rule as parameter?

I'm implementing app intents for my tasks app which supports recurrence rule for tasks. I see that when creating a todo for Reminders via Siri it allows to set a recurrence rule via natural language.

Is there a built in way to receive that recurrence rule as a @Parameter in my AppIntent? If not, is it possible to receive the full user dictated text in the AppIntent:perform method so that I can use some ML model to convert the text to EKRecurrenceRule or similar?

Answered by Giuliopime in 875413022

For anyone looking for the solution, you can achieve this via the system intent INAddTasksIntent https://developer.apple.com/documentation/intents/inaddtasksintent

Accepted Answer

For anyone looking for the solution, you can achieve this via the system intent INAddTasksIntent https://developer.apple.com/documentation/intents/inaddtasksintent

AppIntents built in way to receive recurrence rule as parameter?
 
 
Q