@@ -166,10 +166,6 @@ export class OpenAiHandler extends BaseProvider implements SingleCompletionHandl
166166
167167 if ( this . options . serviceTier && this . options . serviceTier !== "auto" ) {
168168 ; ( requestOptions as any ) . service_tier = this . options . serviceTier
169- console . log ( "[DEBUG] Setting service_tier parameter:" , this . options . serviceTier )
170- console . log ( "[DEBUG] Full request options:" , JSON . stringify ( requestOptions , null , 2 ) )
171- } else {
172- console . log ( "[DEBUG] Service tier not set or is 'auto'. Current value:" , this . options . serviceTier )
173169 }
174170
175171 // Add max_tokens if needed
@@ -236,10 +232,6 @@ export class OpenAiHandler extends BaseProvider implements SingleCompletionHandl
236232
237233 if ( this . options . serviceTier && this . options . serviceTier !== "auto" ) {
238234 ; ( requestOptions as any ) . service_tier = this . options . serviceTier
239- console . log ( "[DEBUG] Setting service_tier parameter:" , this . options . serviceTier )
240- console . log ( "[DEBUG] Full request options:" , JSON . stringify ( requestOptions , null , 2 ) )
241- } else {
242- console . log ( "[DEBUG] Service tier not set or is 'auto'. Current value:" , this . options . serviceTier )
243235 }
244236
245237 // Add max_tokens if needed
@@ -289,10 +281,6 @@ export class OpenAiHandler extends BaseProvider implements SingleCompletionHandl
289281
290282 if ( this . options . serviceTier && this . options . serviceTier !== "auto" ) {
291283 ; ( requestOptions as any ) . service_tier = this . options . serviceTier
292- console . log ( "[DEBUG] Setting service_tier parameter:" , this . options . serviceTier )
293- console . log ( "[DEBUG] Full request options:" , JSON . stringify ( requestOptions , null , 2 ) )
294- } else {
295- console . log ( "[DEBUG] Service tier not set or is 'auto'. Current value:" , this . options . serviceTier )
296284 }
297285
298286 // Add max_tokens if needed
@@ -341,10 +329,6 @@ export class OpenAiHandler extends BaseProvider implements SingleCompletionHandl
341329
342330 if ( this . options . serviceTier && this . options . serviceTier !== "auto" ) {
343331 ; ( requestOptions as any ) . service_tier = this . options . serviceTier
344- console . log ( "[DEBUG] Setting service_tier parameter:" , this . options . serviceTier )
345- console . log ( "[DEBUG] Full request options:" , JSON . stringify ( requestOptions , null , 2 ) )
346- } else {
347- console . log ( "[DEBUG] Service tier not set or is 'auto'. Current value:" , this . options . serviceTier )
348332 }
349333
350334 // O3 family models do not support the deprecated max_tokens parameter
0 commit comments