2 instantiations of TestUserInputRequestContent
Microsoft.Extensions.AI.Tests (2)
ChatReduction\SummarizingChatReducerTests.cs (2)
99new ChatMessage(ChatRole.Assistant, [new FunctionCallContent("call1", "get_weather"), new TestUserInputRequestContent("uir1")]), 188new ChatMessage(ChatRole.Assistant, [new FunctionCallContent("call1", "get_weather", new Dictionary<string, object?> { ["location"] = "Seattle" }), new TestUserInputRequestContent("uir2")]),
4 references to TestUserInputRequestContent
Microsoft.Extensions.AI.Tests (4)
ChatReduction\SummarizingChatReducerTests.cs (4)
107Assert.DoesNotContain(msgs, m => m.Contents.Any(c => c is FunctionCallContent or FunctionResultContent or TestUserInputRequestContent or TestUserInputResponseContent)); 123Assert.Contains(m.Contents, c => c is TestUserInputRequestContent); 203Assert.DoesNotContain(msgList, m => m.Contents.Any(c => c is FunctionCallContent or FunctionResultContent or TestUserInputRequestContent or TestUserInputResponseContent)); 223Assert.DoesNotContain(resultList, m => m.Contents.Any(c => c is TestUserInputRequestContent));