Gwen Demulder

Results 3 comments of Gwen Demulder

.Load() is a task, I think your code resumes before this is completed. Try: await fileAttachment.Load(); Greetings

I also have the same issue on Android. Columns are generated but rows are not displayed. View: https://github.com/scara1701/UnoWithMVVM/blob/master/UnoWithMVVM/UnoWithMVVM.Shared/Views/DetailsView.xaml ViewModel that grid is bound to: https://github.com/scara1701/UnoWithMVVM/blob/master/UnoWithMVVM.Core/ViewModels/DetailsViewModel.cs Behavour on UWP with Microsoft.Toolkit.Uwp.UI.Controls.DataGrid...

I've added omni for now by extending the Model class in my project. ` public class AIModelExtended : Model { public static Model GPT4_Omni => new Model("gpt-4o") { OwnedBy =...