| File: Contents\ImageGenerationToolCallContent.cs | |
| Project: ..\..\..\src\Libraries\Microsoft.Extensions.AI.Abstractions\Microsoft.Extensions.AI.Abstractions.csproj (Microsoft.Extensions.AI.Abstractions) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.Extensions.AI; /// <summary> /// Represents the invocation of an image generation tool call by a hosted service. /// </summary> public sealed class ImageGenerationToolCallContent : ToolCallContent { /// <summary> /// Initializes a new instance of the <see cref="ImageGenerationToolCallContent"/> class. /// </summary> /// <param name="callId">The tool call ID.</param> public ImageGenerationToolCallContent(string callId) : base(callId) { } }