Skip to main content
Source: Al0066InvalidGenAiOperationNameAnalyzer.cs

Description

GenAI operation names should follow the semantic conventions: chat, text_completion, or embeddings.

Bad Code

activity?.SetTag("gen_ai.operation.name", "generate");

Good Code

activity?.SetTag("gen_ai.operation.name", "chat");

Properties

  • Category: GenAI
  • Severity: Warning
  • Enabled by default: True
  • Code fix available: False

Configuration

dotnet_diagnostic.AL0066.severity = warning