I'm building a new feature with Visual Intelligence framework. My implementation for IndexedEntity
and IntentValueQuery
worked as expected and I can see a list of objects in visual search result.
However, my OpenIntent
doesn't work. When I tap on the object, I got a message on screen "Sorry somethinf went wrong ...". and the breakpoint in perform()
is never triggered.
Things I've tried:
- I added
@MainActor
beforeperform()
, this didn't change anything - I set
static let openAppWhenRun: Bool = true
andstatic var supportedModes: IntentModes = [.foreground(.immediate)]
, still nothing - I created a different intent for the see more button at the end of feed. This AppIntent with
schema: .visualIntelligence.semanticContentSearch
worked,perform()
is executed