File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/instrumentation-openai/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1004,7 +1004,7 @@ export class OpenAIInstrumentation extends InstrumentationBase<OpenAIInstrumenta
10041004 eventName : EVENT_GEN_AI_CLIENT_INFERENCE_OPERATION_DETAILS ,
10051005 attributes : {
10061006 [ ATTR_GEN_AI_PROVIDER_NAME ] : GEN_AI_PROVIDER_NAME_VALUE_OPENAI ,
1007- [ ATTR_GEN_AI_INPUT_MESSAGES ] : inputs as AnyValue ,
1007+ [ ATTR_GEN_AI_INPUT_MESSAGES ] : undefined // inputs as AnyValue,
10081008 } ,
10091009 body : inputs as AnyValue ,
10101010 } ) ;
@@ -1053,7 +1053,7 @@ export class OpenAIInstrumentation extends InstrumentationBase<OpenAIInstrumenta
10531053 eventName : EVENT_GEN_AI_CLIENT_INFERENCE_OPERATION_DETAILS ,
10541054 attributes : {
10551055 [ ATTR_GEN_AI_PROVIDER_NAME ] : GEN_AI_PROVIDER_NAME_VALUE_OPENAI ,
1056- [ ATTR_GEN_AI_OUTPUT_MESSAGES ] : output as AnyValue ,
1056+ [ ATTR_GEN_AI_OUTPUT_MESSAGES ] : undefined // output as AnyValue,
10571057 } ,
10581058 body : output as AnyValue ,
10591059 } ) ;
You can’t perform that action at this time.
0 commit comments