Unavailable error is wrong?

This is my code:

witch SystemLanguageModel.default.availability {
                case .available:
                    ContentView()
                        .popover(isPresented: $showSettings) {
                            SettingsView().presentationCompactAdaptation(.popover)
                        }
                
                case .unavailable(.modelNotReady):
                    ContentUnavailableView("Apple Intelligence is unavailable",
                                           systemImage: "apple.intelligence.badge.xmark",
                                           description: Text("Please come back later."))
                    
                case .unavailable(.appleIntelligenceNotEnabled):
                    ContentUnavailableView("Apple Intelligence is unavailable",
                                           systemImage: "apple.intelligence.badge.xmark",
                                           description: Text("Please turn on Apple Intelligence."))
                    
                case .unavailable(.deviceNotEligible):
                    ContentUnavailableView("Apple Intelligence is unavailable",
                                           systemImage: "apple.intelligence.badge.xmark",
                                           description: Text("This device is not eligible for Apple Intelligence."))
                    
                case .unavailable:
                    ContentUnavailableView("Apple Intelligence is unavailable",
                                           systemImage: "apple.intelligence.badge.xmark")
            }

When I switch off Apple Intelligence, I expected "Please turn on Apple Intelligence.", but instead I get "Please come back later."

This seems to be wrong error?

Answered by DTS Engineer in 849692022

Hello,

This is likely a bug and I've observed similar behavior in this sample Generate dynamic game content with guided generation and tools (which you can verify if you like).

Please take a moment to submit a bug report using the Feedback Assistant.

Accepted Answer

Hello,

This is likely a bug and I've observed similar behavior in this sample Generate dynamic game content with guided generation and tools (which you can verify if you like).

Please take a moment to submit a bug report using the Feedback Assistant.

Unavailable error is wrong?
 
 
Q