6 writes to RawRepresentation
Microsoft.Extensions.AI (1)
ChatCompletion\FunctionInvokingChatClient.cs (1)
396RawRepresentation = message.RawRepresentation,
Microsoft.Extensions.AI.Abstractions (1)
ChatCompletion\ChatResponse.cs (1)
156RawRepresentation = message.RawRepresentation,
Microsoft.Extensions.AI.Abstractions.Tests (2)
ChatCompletion\ChatResponseUpdateTests.cs (2)
59update.RawRepresentation = raw; 127RawRepresentation = new object(),
Microsoft.Extensions.AI.AzureAIInference (1)
AzureAIInferenceChatClient.cs (1)
161RawRepresentation = chatCompletionUpdate,
Microsoft.Extensions.AI.OpenAI (1)
OpenAIChatClient.cs (1)
270RawRepresentation = update,
5 references to RawRepresentation
Microsoft.Extensions.AI.Abstractions (2)
ChatCompletion\ChatResponseExtensions.cs (1)
90RawRepresentation = update.RawRepresentation,
ChatCompletion\ChatResponseUpdate.cs (1)
26/// updates all have different <see cref="RawRepresentation"/> objects whereas there's only one slot for
Microsoft.Extensions.AI.Abstractions.Tests (3)
ChatCompletion\ChatResponseUpdateTests.cs (3)
21Assert.Null(update.RawRepresentation); 57Assert.Null(update.RawRepresentation); 60Assert.Same(raw, update.RawRepresentation);