Skip to content

Commit 0404604

Browse files
committed
fix the tag sequence
1 parent f05fc90 commit 0404604

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/context/tag

apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/context/tag/Tags.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,12 +243,12 @@ public static final class HTTP {
243243
/**
244244
* GEN_AI_INPUT_MESSAGES represents the chat history provided to the model as an input.
245245
*/
246-
public static final StringTag GEN_AI_INPUT_MESSAGES = new StringTag(44, "gen_ai.input.messages");
246+
public static final StringTag GEN_AI_INPUT_MESSAGES = new StringTag(41, "gen_ai.input.messages");
247247

248248
/**
249249
* GEN_AI_OUTPUT_MESSAGES represents the messages returned by the model where each message represents a specific model response (choice, candidate).
250250
*/
251-
public static final StringTag GEN_AI_OUTPUT_MESSAGES = new StringTag(45, "gen_ai.output.messages");
251+
public static final StringTag GEN_AI_OUTPUT_MESSAGES = new StringTag(42, "gen_ai.output.messages");
252252

253253
/**
254254
* Creates a {@code StringTag} with the given key and cache it, if it's created before, simply return it without

0 commit comments

Comments
 (0)