Post

Replies

Boosts

Views

Activity

Reply to Foundation Models / Playgrounds Hello World - Help!
@Frameworks Engineer Run destination is iPhone 16 Pro I am running the latest MacOS Beta -- Version 26.0 Beta (25A5295e) I am running Xcode Version 26.0 beta 2 (17A5241o) There is no option to turn on Apple Intelligence in Xcode its asking me to select a model provider... Also in MacOS Settings here is what I see Xcode Settings MacOS Beta -- when I Search Settings for Apple Intelligence It only pulls up Siri -- Possible issue with** signing** There is a problem with the request entity A device with number 'LONG ALPHANUMERIC STRING' already exists on this team. Provisioning profile "iOS Team Provisioning Profile: *" doesn't include the currently selected device "MY NAME’s Virtual Machine" (identifier SAME LONG ALPHA NUMERIC STRING). Signed in with my developer account pulls up team, but this part is failing. MacOS 26 Beta VM I am not signed in with my Apple ID, but I am signed in within Xcode it pulls in my team id/name. Do I need to Sign in with Apple ID on VM machine for Apple Intelligence to work? I am on Parallels if that helps.
Jun ’25
Reply to Foundation Models / Playgrounds Hello World - Help!
Updated Code #Playground { Task { do { let session = LanguageModelSession() let prompt = "List all the states in the USA" let response = try await session.respond(to: prompt) print(response) } catch { print("Error: \(error)") } } } ERROR I GET Error: Asset com.apple.gm.safety_deny.input.foundation_models_framework.api not found in Model Catalog What's the proper way to get this simple prompt working?
Jun ’25
Reply to Foundation Models not working: "Model is unavailable" error on iPad Pro M4
I am getting similar error, MODEL NOT AVAILABLE. I am running XCODE BETA Version 26.0 beta (17A5241e) Mac Sequoia 15.5 on high performance Mac Pro Trying running sample code from Video import FoundationModels import Playgrounds #Playground { if #available(iOS 26.0, *) { let session = LanguageModelSession() } else { // Fallback on earlier versions } let response = try await session.respond(to: "Whats a good name for a trip to Japan? Reply only with a title") } Cannot find 'session' in scope. DOES THIS WORK on SIMULATORS with the Beta or is there something I am missing?
Jun ’25