mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
32 lines
879 B
C#
32 lines
879 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace Microsoft.Agents.AI;
|
|
|
|
/// <summary>Provides constants used by various telemetry services.</summary>
|
|
internal static class OpenTelemetryConsts
|
|
{
|
|
public const string DefaultSourceName = "Experimental.Microsoft.Agents.AI";
|
|
|
|
public static class GenAI
|
|
{
|
|
public const string InvokeAgent = "invoke_agent";
|
|
|
|
public static class Agent
|
|
{
|
|
public const string Id = "gen_ai.agent.id";
|
|
public const string Name = "gen_ai.agent.name";
|
|
public const string Description = "gen_ai.agent.description";
|
|
}
|
|
|
|
public static class Operation
|
|
{
|
|
public const string Name = "gen_ai.operation.name";
|
|
}
|
|
|
|
public static class Provider
|
|
{
|
|
public const string Name = "gen_ai.provider.name";
|
|
}
|
|
}
|
|
}
|