7 writes to RawRepresentation
Microsoft.Extensions.AI (1)
ChatCompletion\ChatResponse{T}.cs (1)
46RawRepresentation = response.RawRepresentation;
Microsoft.Extensions.AI.Abstractions.Tests (2)
ChatCompletion\ChatResponseTests.cs (2)
75response.RawRepresentation = raw; 94RawRepresentation = new(),
Microsoft.Extensions.AI.AzureAIInference (1)
AzureAIInferenceChatClient.cs (1)
124RawRepresentation = response,
Microsoft.Extensions.AI.OpenAI (1)
OpenAIChatClient.cs (1)
455RawRepresentation = openAICompletion,
Microsoft.Extensions.AI.Tests (2)
ChatCompletion\ChatClientStructuredOutputExtensionsTests.cs (2)
28RawRepresentation = new object(), 110RawRepresentation = new object(),
6 references to RawRepresentation
Microsoft.Extensions.AI (1)
ChatCompletion\ChatResponse{T}.cs (1)
46RawRepresentation = response.RawRepresentation;
Microsoft.Extensions.AI.Abstractions (1)
ChatCompletion\ChatResponseUpdate.cs (1)
27/// such an object available in <see cref="ChatResponse.RawRepresentation"/>. Similarly, if different
Microsoft.Extensions.AI.Abstractions.Tests (2)
ChatCompletion\ChatResponseTests.cs (2)
73Assert.Null(response.RawRepresentation); 76Assert.Same(raw, response.RawRepresentation);
Microsoft.Extensions.AI.Tests (2)
ChatCompletion\ChatClientStructuredOutputExtensionsTests.cs (2)
90Assert.Same(expectedResponse.RawRepresentation, response.RawRepresentation); 151Assert.Same(expectedResponse.RawRepresentation, response.RawRepresentation);