1 instantiation of UnexpectedErrorPart
Aspire.Dashboard.Tests (1)
Model\GenAIItemPartViewModelTests.cs (1)
174var errorPart = new UnexpectedErrorPart
9 references to UnexpectedErrorPart
Aspire.Dashboard (4)
Model\GenAI\GenAIItemPartViewModel.cs (1)
58ErrorMessage = part is UnexpectedErrorPart errorPart ? errorPart.Error?.Message : null,
Model\GenAI\GenAIMessages.cs (3)
240UnexpectedErrorPart? errorPart = null; 243errorPart = doc.RootElement.Deserialize<UnexpectedErrorPart>(options); 305[JsonSerializable(typeof(UnexpectedErrorPart))]
Aspire.Dashboard.Tests (5)
Model\GenAIItemPartViewModelTests.cs (1)
174var errorPart = new UnexpectedErrorPart
Model\GenAIMessageParsingHelperTests.cs (4)
326var errorPart = Assert.IsType<UnexpectedErrorPart>(part); 351var errorPart = Assert.IsType<UnexpectedErrorPart>(part);