File: Functions\AIFunctionNameAttribute.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.
 
using System;
using System.Diagnostics.CodeAnalysis;
using Microsoft.Shared.DiagnosticIds;
using Microsoft.Shared.Diagnostics;
 
namespace Microsoft.Extensions.AI;
 
/// <summary>Specifies the name to use for an <see cref="AIFunction"/>.</summary>
/// <remarks>
/// The name is the identifier a model sees and uses to invoke a function.
/// By default this is inferred from .NET metadata. Apply this attribute to use a different identifier.
/// </remarks>
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
[Experimental(DiagnosticIds.Experiments.AIFunctionAndParameterName, UrlFormat = DiagnosticIds.UrlFormat)]
public sealed class AIFunctionNameAttribute : Attribute
{
    /// <summary>Initializes a new instance of the <see cref="AIFunctionNameAttribute"/> class.</summary>
    /// <param name="name">The name to use for the function.</param>
    /// <exception cref="ArgumentNullException"><paramref name="name"/> is <see langword="null"/>.</exception>
    /// <exception cref="ArgumentException"><paramref name="name"/> is empty or composed entirely of whitespace.</exception>
    public AIFunctionNameAttribute(string name)
    {
        Name = Throw.IfNullOrWhitespace(name);
    }
 
    /// <summary>Gets the name to use for the function.</summary>
    public string Name { get; }
}