21 instantiations of CodeInterpreterToolResultContent
Microsoft.Extensions.AI.Abstractions (2)
ChatCompletion\ChatResponseExtensions.cs (1)
415return new(firstContent.CallId)
Generated\361d1da7f942c932\JsonContext.CodeInterpreterToolResultContent.g.cs (1)
34ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent((string)args[0]),
Microsoft.Extensions.AI.Abstractions.Tests (7)
Contents\AIContentTests.cs (1)
86new CodeInterpreterToolResultContent("ci456"),
Contents\CodeInterpreterToolResultContentTests.cs (4)
15CodeInterpreterToolResultContent c = new("callId1"); 25CodeInterpreterToolResultContent c = new("call123"); 48CodeInterpreterToolResultContent c = new("call789") 70CodeInterpreterToolResultContent content = new("call123")
Contents\ToolResultContentTests.cs (1)
57new CodeInterpreterToolResultContent("call3"),
Generated\361d1da7f942c932\TestJsonSerializerContext.CodeInterpreterToolResultContent.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent((string)args[0]),
Microsoft.Extensions.AI.Evaluation.Reporting (1)
Generated\361d1da7f942c932\JsonContext.CodeInterpreterToolResultContent.g.cs (1)
34ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent((string)args[0]),
Microsoft.Extensions.AI.Evaluation.Reporting.Azure (1)
Generated\361d1da7f942c932\JsonContext.CodeInterpreterToolResultContent.g.cs (1)
34ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent((string)args[0]),
Microsoft.Extensions.AI.OpenAI (2)
OpenAIAssistantsChatClient.cs (1)
223CodeInterpreterToolResultContent hcitrc = new(details.ToolCallId)
OpenAIResponsesChatClient.cs (1)
1903return new(cicri.Id)
Microsoft.Extensions.AI.Stabilization.Tests (5)
Generated\361d1da7f942c932\AIContentSerializationRegressionContext.CodeInterpreterToolResultContent.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent((string)args[0]),
parent\Microsoft.Extensions.AI.Abstractions.Tests\Contents\CodeInterpreterToolResultContentTests.cs (4)
15CodeInterpreterToolResultContent c = new("callId1"); 25CodeInterpreterToolResultContent c = new("call123"); 48CodeInterpreterToolResultContent c = new("call789") 70CodeInterpreterToolResultContent content = new("call123")
Microsoft.Extensions.AI.Tests (3)
ChatCompletion\OpenTelemetryChatClientTests.cs (2)
662new CodeInterpreterToolResultContent("ci-call-1") { Outputs = [new TextContent("hello")] }, 678yield return new() { Contents = [new CodeInterpreterToolResultContent("ci-call-1") { Outputs = [new TextContent("hello")] }] };
Generated\361d1da7f942c932\TestJsonSerializerContext.CodeInterpreterToolResultContent.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent((string)args[0]),
131 references to CodeInterpreterToolResultContent
Microsoft.Extensions.AI (1)
Common\OtelMessageSerializer.cs (1)
145case CodeInterpreterToolResultContent citrc:
Microsoft.Extensions.AI.Abstractions (22)
ChatCompletion\ChatResponseExtensions.cs (4)
385Coalesce<CodeInterpreterToolResultContent>( 391var firstContent = (CodeInterpreterToolResultContent)contents[start]; 407(output ??= []).AddRange(((CodeInterpreterToolResultContent)contents[i]).Outputs ?? []);
Contents\AIContent.cs (1)
32[JsonDerivedType(typeof(CodeInterpreterToolResultContent), typeDiscriminator: "codeInterpreterToolResult")]
Contents\CodeInterpreterToolResultContent.cs (1)
14/// Initializes a new instance of the <see cref="CodeInterpreterToolResultContent"/> class.
Contents\ToolResultContent.cs (1)
16[JsonDerivedType(typeof(CodeInterpreterToolResultContent), "codeInterpreterToolResult")]
Generated\361d1da7f942c932\JsonContext.CodeInterpreterToolResultContent.g.cs (14)
15private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>? _CodeInterpreterToolResultContent; 21public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> CodeInterpreterToolResultContent 24get => _CodeInterpreterToolResultContent ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>)Options.GetTypeInfo(typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)); 27private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> Create_CodeInterpreterToolResultContent(global::System.Text.Json.JsonSerializerOptions options) 29if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> jsonTypeInfo)) 31var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> 37ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent).GetConstructor(InstanceMemberBindingFlags, binder: null, new[] {typeof(string)}, modifiers: null), 41jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>(options, objectInfo); 58DeclaringType = typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent), 60Getter = static obj => ((global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)obj).Outputs, 61Setter = static (obj, value) => ((global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)obj).Outputs = value!, 68AttributeProviderFactory = static () => typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent).GetProperty("Outputs", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIContent>), global::System.Array.Empty<global::System.Type>(), null),
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.GetJsonTypeInfo.g.cs (1)
148if (type == typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent))
Microsoft.Extensions.AI.Abstractions.Tests (23)
Contents\CodeInterpreterToolResultContentTests.cs (8)
15CodeInterpreterToolResultContent c = new("callId1"); 25CodeInterpreterToolResultContent c = new("call123"); 48CodeInterpreterToolResultContent c = new("call789") 70CodeInterpreterToolResultContent content = new("call123") 80var deserializedSut = JsonSerializer.Deserialize<CodeInterpreterToolResultContent>(json, AIJsonUtilities.DefaultOptions); 114var ciResult = Assert.IsType<CodeInterpreterToolResultContent>(result);
Generated\361d1da7f942c932\TestJsonSerializerContext.CodeInterpreterToolResultContent.g.cs (14)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>? _CodeInterpreterToolResultContent; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> CodeInterpreterToolResultContent 22get => _CodeInterpreterToolResultContent ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>)Options.GetTypeInfo(typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> Create_CodeInterpreterToolResultContent(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> 35ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent).GetConstructor(InstanceMemberBindingFlags, binder: null, new[] {typeof(string)}, modifiers: null), 39jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>(options, objectInfo); 56DeclaringType = typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent), 58Getter = static obj => ((global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)obj).Outputs, 59Setter = static (obj, value) => ((global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)obj).Outputs = value!, 66AttributeProviderFactory = static () => typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent).GetProperty("Outputs", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIContent>), global::System.Array.Empty<global::System.Type>(), null),
Generated\361d1da7f942c932\TestJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
142if (type == typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent))
Microsoft.Extensions.AI.Evaluation.Reporting (15)
Generated\361d1da7f942c932\JsonContext.CodeInterpreterToolResultContent.g.cs (14)
15private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>? _CodeInterpreterToolResultContent; 21public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> CodeInterpreterToolResultContent 24get => _CodeInterpreterToolResultContent ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>)Options.GetTypeInfo(typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)); 27private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> Create_CodeInterpreterToolResultContent(global::System.Text.Json.JsonSerializerOptions options) 29if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> jsonTypeInfo)) 31var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> 37ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent).GetConstructor(InstanceMemberBindingFlags, binder: null, new[] {typeof(string)}, modifiers: null), 41jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>(options, objectInfo); 58DeclaringType = typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent), 60Getter = static obj => ((global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)obj).Outputs, 61Setter = static (obj, value) => ((global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)obj).Outputs = value!, 68AttributeProviderFactory = static () => typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent).GetProperty("Outputs", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIContent>), global::System.Array.Empty<global::System.Type>(), null),
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.GetJsonTypeInfo.g.cs (1)
88if (type == typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent))
Microsoft.Extensions.AI.Evaluation.Reporting.Azure (15)
Generated\361d1da7f942c932\JsonContext.CodeInterpreterToolResultContent.g.cs (14)
15private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>? _CodeInterpreterToolResultContent; 21public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> CodeInterpreterToolResultContent 24get => _CodeInterpreterToolResultContent ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>)Options.GetTypeInfo(typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)); 27private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> Create_CodeInterpreterToolResultContent(global::System.Text.Json.JsonSerializerOptions options) 29if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> jsonTypeInfo)) 31var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> 37ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent).GetConstructor(InstanceMemberBindingFlags, binder: null, new[] {typeof(string)}, modifiers: null), 41jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>(options, objectInfo); 58DeclaringType = typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent), 60Getter = static obj => ((global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)obj).Outputs, 61Setter = static (obj, value) => ((global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)obj).Outputs = value!, 68AttributeProviderFactory = static () => typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent).GetProperty("Outputs", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIContent>), global::System.Array.Empty<global::System.Type>(), null),
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.GetJsonTypeInfo.g.cs (1)
88if (type == typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent))
Microsoft.Extensions.AI.OpenAI (3)
OpenAIAssistantsChatClient.cs (1)
223CodeInterpreterToolResultContent hcitrc = new(details.ToolCallId)
OpenAIResponsesChatClient.cs (2)
1869/// <summary>Creates a <see cref="CodeInterpreterToolResultContent"/> for the specified <paramref name="cicri"/>.</summary> 1870private static CodeInterpreterToolResultContent CreateCodeInterpreterResultContent(CodeInterpreterCallResponseItem cicri)
Microsoft.Extensions.AI.OpenAI.Tests (14)
OpenAIAssistantChatClientIntegrationTests.cs (2)
84var toolResultContents = response.Messages.SelectMany(m => m.Contents).OfType<CodeInterpreterToolResultContent>().ToList(); 85foreach (var toolResultContent in toolResultContents)
OpenAIHostedFileClientIntegrationTests.cs (3)
287if (content is CodeInterpreterToolResultContent { RawRepresentation: OpenAI.Responses.CodeInterpreterCallResponseItem cicri }) 357if (content is CodeInterpreterToolResultContent { RawRepresentation: OpenAI.Responses.CodeInterpreterCallResponseItem cicri }) 405if (content is CodeInterpreterToolResultContent { RawRepresentation: OpenAI.Responses.CodeInterpreterCallResponseItem cicri })
OpenAIResponseClientIntegrationTests.cs (2)
62var toolResultContent = response.Messages.SelectMany(m => m.Contents).OfType<CodeInterpreterToolResultContent>().FirstOrDefault();
OpenAIResponseClientTests.cs (7)
3402var codeResult = Assert.IsType<CodeInterpreterToolResultContent>(message.Contents[1]); 3622var codeResult = Assert.IsType<CodeInterpreterToolResultContent>(message.Contents[1]); 3730u.Contents != null && u.Contents.Any(c => c is CodeInterpreterToolResultContent)).ToList(); 3749var codeResult = Assert.IsType<CodeInterpreterToolResultContent>(message.Contents[1]);
Microsoft.Extensions.AI.Stabilization.Tests (23)
Generated\361d1da7f942c932\AIContentSerializationRegressionContext.CodeInterpreterToolResultContent.g.cs (14)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>? _CodeInterpreterToolResultContent; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> CodeInterpreterToolResultContent 22get => _CodeInterpreterToolResultContent ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>)Options.GetTypeInfo(typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> Create_CodeInterpreterToolResultContent(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> 35ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent).GetConstructor(InstanceMemberBindingFlags, binder: null, new[] {typeof(string)}, modifiers: null), 39jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>(options, objectInfo); 56DeclaringType = typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent), 58Getter = static obj => ((global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)obj).Outputs, 59Setter = static (obj, value) => ((global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)obj).Outputs = value!, 66AttributeProviderFactory = static () => typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent).GetProperty("Outputs", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIContent>), global::System.Array.Empty<global::System.Type>(), null),
Generated\361d1da7f942c932\AIContentSerializationRegressionContext.GetJsonTypeInfo.g.cs (1)
54if (type == typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent))
parent\Microsoft.Extensions.AI.Abstractions.Tests\Contents\CodeInterpreterToolResultContentTests.cs (8)
15CodeInterpreterToolResultContent c = new("callId1"); 25CodeInterpreterToolResultContent c = new("call123"); 48CodeInterpreterToolResultContent c = new("call789") 70CodeInterpreterToolResultContent content = new("call123") 80var deserializedSut = JsonSerializer.Deserialize<CodeInterpreterToolResultContent>(json, AIJsonUtilities.DefaultOptions); 114var ciResult = Assert.IsType<CodeInterpreterToolResultContent>(result);
Microsoft.Extensions.AI.Tests (15)
Generated\361d1da7f942c932\TestJsonSerializerContext.CodeInterpreterToolResultContent.g.cs (14)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>? _CodeInterpreterToolResultContent; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> CodeInterpreterToolResultContent 22get => _CodeInterpreterToolResultContent ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>)Options.GetTypeInfo(typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> Create_CodeInterpreterToolResultContent(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent> 35ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent).GetConstructor(InstanceMemberBindingFlags, binder: null, new[] {typeof(string)}, modifiers: null), 39jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent>(options, objectInfo); 56DeclaringType = typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent), 58Getter = static obj => ((global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)obj).Outputs, 59Setter = static (obj, value) => ((global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent)obj).Outputs = value!, 66AttributeProviderFactory = static () => typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent).GetProperty("Outputs", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIContent>), global::System.Array.Empty<global::System.Type>(), null),
Generated\361d1da7f942c932\TestJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
122if (type == typeof(global::Microsoft.Extensions.AI.CodeInterpreterToolResultContent))