File: gen_ai_attributes.h

package info (click to toggle)
opentelemetry-cpp 1.23.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,372 kB
  • sloc: cpp: 96,239; sh: 1,766; makefile: 36; python: 31
file content (689 lines) | stat: -rw-r--r-- 21,051 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

/*
 * DO NOT EDIT, this is an Auto-generated file from:
 * buildscripts/semantic-convention/templates/registry/semantic_attributes-h.j2
 */

#pragma once

#include "opentelemetry/common/macros.h"
#include "opentelemetry/version.h"

OPENTELEMETRY_BEGIN_NAMESPACE
namespace semconv
{
namespace gen_ai
{

/**
  Free-form description of the GenAI agent provided by the application.
 */
static constexpr const char *kGenAiAgentDescription = "gen_ai.agent.description";

/**
  The unique identifier of the GenAI agent.
 */
static constexpr const char *kGenAiAgentId = "gen_ai.agent.id";

/**
  Human-readable name of the GenAI agent provided by the application.
 */
static constexpr const char *kGenAiAgentName = "gen_ai.agent.name";

/**
  Deprecated, use Event API to report completions contents.

  @deprecated
  {"note": "Removed, no replacement at this time.", "reason": "obsoleted"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kGenAiCompletion = "gen_ai.completion";

/**
  The unique identifier for a conversation (session, thread), used to store and correlate messages
  within this conversation.
 */
static constexpr const char *kGenAiConversationId = "gen_ai.conversation.id";

/**
  The data source identifier.
  <p>
  Data sources are used by AI agents and RAG applications to store grounding data. A data source may
  be an external database, object store, document collection, website, or any other storage system
  used by the GenAI agent or application. The @code gen_ai.data_source.id @endcode SHOULD match the
  identifier used by the GenAI system rather than a name specific to the external storage, such as a
  database or object store. Semantic conventions referencing @code gen_ai.data_source.id @endcode
  MAY also leverage additional attributes, such as @code db.* @endcode, to further identify and
  describe the data source.
 */
static constexpr const char *kGenAiDataSourceId = "gen_ai.data_source.id";

/**
  The chat history provided to the model as an input.
  <p>
  Instrumentations MUST follow <a href="/docs/gen-ai/gen-ai-input-messages.json">Input messages JSON
  schema</a>. When the attribute is recorded on events, it MUST be recorded in structured form. When
  recorded on spans, it MAY be recorded as a JSON string if structured format is not supported and
  SHOULD be recorded in structured form otherwise. <p> Messages MUST be provided in the order they
  were sent to the model. Instrumentations MAY provide a way for users to filter or truncate input
  messages. <blockquote>
  [!Warning]
  This attribute is likely to contain sensitive information including user/PII data.</blockquote>
  <p>
  See <a href="/docs/gen-ai/gen-ai-spans.md#recording-content-on-attributes">Recording content on
  attributes</a> section for more details.
 */
static constexpr const char *kGenAiInputMessages = "gen_ai.input.messages";

/**
  Deprecated, use @code gen_ai.output.type @endcode.

  @deprecated
  {"note": "Replaced by @code gen_ai.output.type @endcode.", "reason": "renamed", "renamed_to":
  "gen_ai.output.type"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kGenAiOpenaiRequestResponseFormat =
    "gen_ai.openai.request.response_format";

/**
  Deprecated, use @code gen_ai.request.seed @endcode.

  @deprecated
  {"note": "Replaced by @code gen_ai.request.seed @endcode.", "reason": "renamed", "renamed_to":
  "gen_ai.request.seed"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kGenAiOpenaiRequestSeed =
    "gen_ai.openai.request.seed";

/**
  Deprecated, use @code openai.request.service_tier @endcode.

  @deprecated
  {"note": "Replaced by @code openai.request.service_tier @endcode.", "reason": "renamed",
  "renamed_to": "openai.request.service_tier"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kGenAiOpenaiRequestServiceTier =
    "gen_ai.openai.request.service_tier";

/**
  Deprecated, use @code openai.response.service_tier @endcode.

  @deprecated
  {"note": "Replaced by @code openai.response.service_tier @endcode.", "reason": "renamed",
  "renamed_to": "openai.response.service_tier"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kGenAiOpenaiResponseServiceTier =
    "gen_ai.openai.response.service_tier";

/**
  Deprecated, use @code openai.response.system_fingerprint @endcode.

  @deprecated
  {"note": "Replaced by @code openai.response.system_fingerprint @endcode.", "reason": "renamed",
  "renamed_to": "openai.response.system_fingerprint"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kGenAiOpenaiResponseSystemFingerprint =
    "gen_ai.openai.response.system_fingerprint";

/**
  The name of the operation being performed.
  <p>
  If one of the predefined values applies, but specific system uses a different name it's
  RECOMMENDED to document it in the semantic conventions for specific GenAI system and use
  system-specific name in the instrumentation. If a different name is not documented,
  instrumentation libraries SHOULD use applicable predefined value.
 */
static constexpr const char *kGenAiOperationName = "gen_ai.operation.name";

/**
  Messages returned by the model where each message represents a specific model response (choice,
  candidate). <p> Instrumentations MUST follow <a
  href="/docs/gen-ai/gen-ai-output-messages.json">Output messages JSON schema</a> <p> Each message
  represents a single output choice/candidate generated by the model. Each message corresponds to
  exactly one generation (choice/candidate) and vice versa - one choice cannot be split across
  multiple messages or one message cannot contain parts from multiple choices.
  <p>
  When the attribute is recorded on events, it MUST be recorded in structured
  form. When recorded on spans, it MAY be recorded as a JSON string if structured
  format is not supported and SHOULD be recorded in structured form otherwise.
  <p>
  Instrumentations MAY provide a way for users to filter or truncate
  output messages.
  <blockquote>
  [!Warning]
  This attribute is likely to contain sensitive information including user/PII data.</blockquote>
  <p>
  See <a href="/docs/gen-ai/gen-ai-spans.md#recording-content-on-attributes">Recording content on
  attributes</a> section for more details.
 */
static constexpr const char *kGenAiOutputMessages = "gen_ai.output.messages";

/**
  Represents the content type requested by the client.
  <p>
  This attribute SHOULD be used when the client requests output of a specific type. The model may
  return zero or more outputs of this type. This attribute specifies the output modality and not the
  actual output format. For example, if an image is requested, the actual output could be a URL
  pointing to an image file. Additional output format details may be recorded in the future in the
  @code gen_ai.output.{type}.* @endcode attributes.
 */
static constexpr const char *kGenAiOutputType = "gen_ai.output.type";

/**
  Deprecated, use Event API to report prompt contents.

  @deprecated
  {"note": "Removed, no replacement at this time.", "reason": "obsoleted"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kGenAiPrompt = "gen_ai.prompt";

/**
  The Generative AI provider as identified by the client or server instrumentation.
  <p>
  The attribute SHOULD be set based on the instrumentation's best
  knowledge and may differ from the actual model provider.
  <p>
  Multiple providers, including Azure OpenAI, Gemini, and AI hosting platforms
  are accessible using the OpenAI REST API and corresponding client libraries,
  but may proxy or host models from different providers.
  <p>
  The @code gen_ai.request.model @endcode, @code gen_ai.response.model @endcode, and @code
  server.address @endcode attributes may help identify the actual system in use. <p> The @code
  gen_ai.provider.name @endcode attribute acts as a discriminator that identifies the GenAI
  telemetry format flavor specific to that provider within GenAI semantic conventions. It SHOULD be
  set consistently with provider-specific attributes and signals. For example, GenAI spans, metrics,
  and events related to AWS Bedrock should have the @code gen_ai.provider.name @endcode set to @code
  aws.bedrock @endcode and include applicable @code aws.bedrock.* @endcode attributes and are not
  expected to include
  @code openai.* @endcode attributes.
 */
static constexpr const char *kGenAiProviderName = "gen_ai.provider.name";

/**
  The target number of candidate completions to return.
 */
static constexpr const char *kGenAiRequestChoiceCount = "gen_ai.request.choice.count";

/**
  The encoding formats requested in an embeddings operation, if specified.
  <p>
  In some GenAI systems the encoding formats are called embedding types. Also, some GenAI systems
  only accept a single format per request.
 */
static constexpr const char *kGenAiRequestEncodingFormats = "gen_ai.request.encoding_formats";

/**
  The frequency penalty setting for the GenAI request.
 */
static constexpr const char *kGenAiRequestFrequencyPenalty = "gen_ai.request.frequency_penalty";

/**
  The maximum number of tokens the model generates for a request.
 */
static constexpr const char *kGenAiRequestMaxTokens = "gen_ai.request.max_tokens";

/**
  The name of the GenAI model a request is being made to.
 */
static constexpr const char *kGenAiRequestModel = "gen_ai.request.model";

/**
  The presence penalty setting for the GenAI request.
 */
static constexpr const char *kGenAiRequestPresencePenalty = "gen_ai.request.presence_penalty";

/**
  Requests with same seed value more likely to return same result.
 */
static constexpr const char *kGenAiRequestSeed = "gen_ai.request.seed";

/**
  List of sequences that the model will use to stop generating further tokens.
 */
static constexpr const char *kGenAiRequestStopSequences = "gen_ai.request.stop_sequences";

/**
  The temperature setting for the GenAI request.
 */
static constexpr const char *kGenAiRequestTemperature = "gen_ai.request.temperature";

/**
  The top_k sampling setting for the GenAI request.
 */
static constexpr const char *kGenAiRequestTopK = "gen_ai.request.top_k";

/**
  The top_p sampling setting for the GenAI request.
 */
static constexpr const char *kGenAiRequestTopP = "gen_ai.request.top_p";

/**
  Array of reasons the model stopped generating tokens, corresponding to each generation received.
 */
static constexpr const char *kGenAiResponseFinishReasons = "gen_ai.response.finish_reasons";

/**
  The unique identifier for the completion.
 */
static constexpr const char *kGenAiResponseId = "gen_ai.response.id";

/**
  The name of the model that generated the response.
 */
static constexpr const char *kGenAiResponseModel = "gen_ai.response.model";

/**
  Deprecated, use @code gen_ai.provider.name @endcode instead.

  @deprecated
  {"note": "Replaced by @code gen_ai.provider.name @endcode.", "reason": "renamed", "renamed_to":
  "gen_ai.provider.name"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kGenAiSystem = "gen_ai.system";

/**
  The system message or instructions provided to the GenAI model separately from the chat history.
  <p>
  This attribute SHOULD be used when the corresponding provider or API
  allows to provide system instructions or messages separately from the
  chat history.
  <p>
  Instructions that are part of the chat history SHOULD be recorded in
  @code gen_ai.input.messages @endcode attribute instead.
  <p>
  Instrumentations MUST follow <a href="/docs/gen-ai/gen-ai-system-instructions.json">System
  instructions JSON schema</a>. <p> When recorded on spans, it MAY be recorded as a JSON string if
  structured format is not supported and SHOULD be recorded in structured form otherwise. <p>
  Instrumentations MAY provide a way for users to filter or truncate
  system instructions.
  <blockquote>
  [!Warning]
  This attribute may contain sensitive information.</blockquote>
  <p>
  See <a href="/docs/gen-ai/gen-ai-spans.md#recording-content-on-attributes">Recording content on
  attributes</a> section for more details.
 */
static constexpr const char *kGenAiSystemInstructions = "gen_ai.system_instructions";

/**
  The type of token being counted.
 */
static constexpr const char *kGenAiTokenType = "gen_ai.token.type";

/**
  The tool call identifier.
 */
static constexpr const char *kGenAiToolCallId = "gen_ai.tool.call.id";

/**
  The tool description.
 */
static constexpr const char *kGenAiToolDescription = "gen_ai.tool.description";

/**
  Name of the tool utilized by the agent.
 */
static constexpr const char *kGenAiToolName = "gen_ai.tool.name";

/**
  Type of the tool utilized by the agent
  <p>
  Extension: A tool executed on the agent-side to directly call external APIs, bridging the gap
  between the agent and real-world systems. Agent-side operations involve actions that are performed
  by the agent on the server or within the agent's controlled environment. Function: A tool executed
  on the client-side, where the agent generates parameters for a predefined function, and the client
  executes the logic. Client-side operations are actions taken on the user's end or within the
  client application. Datastore: A tool used by the agent to access and query structured or
  unstructured external data for retrieval-augmented tasks or knowledge updates.
 */
static constexpr const char *kGenAiToolType = "gen_ai.tool.type";

/**
  Deprecated, use @code gen_ai.usage.output_tokens @endcode instead.

  @deprecated
  {"note": "Replaced by @code gen_ai.usage.output_tokens @endcode.", "reason": "renamed",
  "renamed_to": "gen_ai.usage.output_tokens"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kGenAiUsageCompletionTokens =
    "gen_ai.usage.completion_tokens";

/**
  The number of tokens used in the GenAI input (prompt).
 */
static constexpr const char *kGenAiUsageInputTokens = "gen_ai.usage.input_tokens";

/**
  The number of tokens used in the GenAI response (completion).
 */
static constexpr const char *kGenAiUsageOutputTokens = "gen_ai.usage.output_tokens";

/**
  Deprecated, use @code gen_ai.usage.input_tokens @endcode instead.

  @deprecated
  {"note": "Replaced by @code gen_ai.usage.input_tokens @endcode.", "reason": "renamed",
  "renamed_to": "gen_ai.usage.input_tokens"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kGenAiUsagePromptTokens =
    "gen_ai.usage.prompt_tokens";

namespace GenAiOpenaiRequestResponseFormatValues
{
/**
  Text response format
 */
static constexpr const char *kText = "text";

/**
  JSON object response format
 */
static constexpr const char *kJsonObject = "json_object";

/**
  JSON schema response format
 */
static constexpr const char *kJsonSchema = "json_schema";

}  // namespace GenAiOpenaiRequestResponseFormatValues

namespace GenAiOpenaiRequestServiceTierValues
{
/**
  The system will utilize scale tier credits until they are exhausted.
 */
static constexpr const char *kAuto = "auto";

/**
  The system will utilize the default scale tier.
 */
static constexpr const char *kDefault = "default";

}  // namespace GenAiOpenaiRequestServiceTierValues

namespace GenAiOperationNameValues
{
/**
  Chat completion operation such as <a
  href="https://platform.openai.com/docs/api-reference/chat">OpenAI Chat API</a>
 */
static constexpr const char *kChat = "chat";

/**
  Multimodal content generation operation such as <a
  href="https://ai.google.dev/api/generate-content">Gemini Generate Content</a>
 */
static constexpr const char *kGenerateContent = "generate_content";

/**
  Text completions operation such as <a
  href="https://platform.openai.com/docs/api-reference/completions">OpenAI Completions API
  (Legacy)</a>
 */
static constexpr const char *kTextCompletion = "text_completion";

/**
  Embeddings operation such as <a
  href="https://platform.openai.com/docs/api-reference/embeddings/create">OpenAI Create embeddings
  API</a>
 */
static constexpr const char *kEmbeddings = "embeddings";

/**
  Create GenAI agent
 */
static constexpr const char *kCreateAgent = "create_agent";

/**
  Invoke GenAI agent
 */
static constexpr const char *kInvokeAgent = "invoke_agent";

/**
  Execute a tool
 */
static constexpr const char *kExecuteTool = "execute_tool";

}  // namespace GenAiOperationNameValues

namespace GenAiOutputTypeValues
{
/**
  Plain text
 */
static constexpr const char *kText = "text";

/**
  JSON object with known or unknown schema
 */
static constexpr const char *kJson = "json";

/**
  Image
 */
static constexpr const char *kImage = "image";

/**
  Speech
 */
static constexpr const char *kSpeech = "speech";

}  // namespace GenAiOutputTypeValues

namespace GenAiProviderNameValues
{
/**
  <a href="https://openai.com/">OpenAI</a>
 */
static constexpr const char *kOpenai = "openai";

/**
  Any Google generative AI endpoint
 */
static constexpr const char *kGcpGenAi = "gcp.gen_ai";

/**
  <a href="https://cloud.google.com/vertex-ai">Vertex AI</a>
 */
static constexpr const char *kGcpVertexAi = "gcp.vertex_ai";

/**
  <a href="https://cloud.google.com/products/gemini">Gemini</a>
 */
static constexpr const char *kGcpGemini = "gcp.gemini";

/**
  <a href="https://www.anthropic.com/">Anthropic</a>
 */
static constexpr const char *kAnthropic = "anthropic";

/**
  <a href="https://cohere.com/">Cohere</a>
 */
static constexpr const char *kCohere = "cohere";

/**
  Azure AI Inference
 */
static constexpr const char *kAzureAiInference = "azure.ai.inference";

/**
  <a href="https://azure.microsoft.com/products/ai-services/openai-service/">Azure OpenAI</a>
 */
static constexpr const char *kAzureAiOpenai = "azure.ai.openai";

/**
  <a href="https://www.ibm.com/products/watsonx-ai">IBM Watsonx AI</a>
 */
static constexpr const char *kIbmWatsonxAi = "ibm.watsonx.ai";

/**
  <a href="https://aws.amazon.com/bedrock">AWS Bedrock</a>
 */
static constexpr const char *kAwsBedrock = "aws.bedrock";

/**
  <a href="https://www.perplexity.ai/">Perplexity</a>
 */
static constexpr const char *kPerplexity = "perplexity";

/**
  <a href="https://x.ai/">xAI</a>
 */
static constexpr const char *kXAi = "x_ai";

/**
  <a href="https://www.deepseek.com/">DeepSeek</a>
 */
static constexpr const char *kDeepseek = "deepseek";

/**
  <a href="https://groq.com/">Groq</a>
 */
static constexpr const char *kGroq = "groq";

/**
  <a href="https://mistral.ai/">Mistral AI</a>
 */
static constexpr const char *kMistralAi = "mistral_ai";

}  // namespace GenAiProviderNameValues

namespace GenAiSystemValues
{
/**
  OpenAI
 */
static constexpr const char *kOpenai = "openai";

/**
  Any Google generative AI endpoint
 */
static constexpr const char *kGcpGenAi = "gcp.gen_ai";

/**
  Vertex AI
 */
static constexpr const char *kGcpVertexAi = "gcp.vertex_ai";

/**
  Gemini
 */
static constexpr const char *kGcpGemini = "gcp.gemini";

/**
  Vertex AI

  @deprecated
  {"note": "Replaced by @code gcp.vertex_ai @endcode.", "reason": "renamed", "renamed_to":
  "gcp.vertex_ai"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kVertexAi = "vertex_ai";

/**
  Gemini

  @deprecated
  {"note": "Replaced by @code gcp.gemini @endcode.", "reason": "renamed", "renamed_to":
  "gcp.gemini"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kGemini = "gemini";

/**
  Anthropic
 */
static constexpr const char *kAnthropic = "anthropic";

/**
  Cohere
 */
static constexpr const char *kCohere = "cohere";

/**
  Azure AI Inference
 */
static constexpr const char *kAzAiInference = "az.ai.inference";

/**
  Azure OpenAI
 */
static constexpr const char *kAzAiOpenai = "az.ai.openai";

/**
  Azure AI Inference
 */
static constexpr const char *kAzureAiInference = "azure.ai.inference";

/**
  Azure OpenAI
 */
static constexpr const char *kAzureAiOpenai = "azure.ai.openai";

/**
  IBM Watsonx AI
 */
static constexpr const char *kIbmWatsonxAi = "ibm.watsonx.ai";

/**
  AWS Bedrock
 */
static constexpr const char *kAwsBedrock = "aws.bedrock";

/**
  Perplexity
 */
static constexpr const char *kPerplexity = "perplexity";

/**
  xAI

  @deprecated
  {"note": "Replaced by @code x_ai @endcode.", "reason": "renamed", "renamed_to": "x_ai"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kXai = "xai";

/**
  DeepSeek
 */
static constexpr const char *kDeepseek = "deepseek";

/**
  Groq
 */
static constexpr const char *kGroq = "groq";

/**
  Mistral AI
 */
static constexpr const char *kMistralAi = "mistral_ai";

}  // namespace GenAiSystemValues

namespace GenAiTokenTypeValues
{
/**
  Input tokens (prompt, input, etc.)
 */
static constexpr const char *kInput = "input";

/**
  Output tokens (completion, response, etc.)

  @deprecated
  {"note": "Replaced by @code output @endcode.", "reason": "renamed", "renamed_to": "output"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kCompletion = "output";

/**
  Output tokens (completion, response, etc.)
 */
static constexpr const char *kOutput = "output";

}  // namespace GenAiTokenTypeValues

}  // namespace gen_ai
}  // namespace semconv
OPENTELEMETRY_END_NAMESPACE