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