You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`gen_ai.request.available_tools`: Array of objects describing the available tools.
102
+
-`gen_ai.request.messages`: Array of objects describing the messages sent to the LLM (Each object has the format `{ role:"", content:""}` where role can be `user`, `assistant`, or `system` and `content` can either be a string or an array of objects.)
103
+
-`gen_ai.response.tool_calls`: Array of objects returned from the LLM with information about what tools need to be called.
102
104
-`gen_ai.request.frequency_penalty`
103
105
-`gen_ai.request.max_tokens`
104
-
-`gen_ai.request.messages`
105
-
-`gen_ai.request.model`
106
106
-`gen_ai.request.presence_penalty`
107
107
-`gen_ai.request.temperature`
108
108
-`gen_ai.request.top_p`
109
-
-`gen_ai.response.tool_calls`
110
-
-`gen_ai.system`
111
-
-`gen_ai.system.message`
112
-
-`gen_ai.usage.input_tokens`
113
-
-`gen_ai.usage.input_tokens.cached`
114
-
-`gen_ai.usage.output_tokens`
115
-
-`gen_ai.usage.output_tokens.reasoning`
116
-
-`gen_ai.usage.total_tokens`
117
-
-`gen_ai.user.message`
109
+
-`gen_ai.usage.input_tokens`: Input tokens used for the request. (excluding cached tokens)
110
+
-`gen_ai.usage.input_tokens.cached`: Cached input tokens used for the request.
111
+
-`gen_ai.usage.output_tokens`: Output tokens used for the request.
112
+
-`gen_ai.usage.output_tokens.reasoning` Tokens used for reasoning.
113
+
-`gen_ai.usage.total_tokens`: Total number of tokens used in the request.
0 commit comments