File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
packages/config-types/src Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -1201,8 +1201,6 @@ export abstract class BaseLLM implements ILLM {
12011201 }
12021202 }
12031203
1204- console . log ( "debug1 llm options" , this . _llmOptions ) ;
1205-
12061204 const canUseResponses = this . canUseOpenAIResponses ( completionOptions ) ;
12071205 const useStream = completionOptions . stream !== false ;
12081206
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ export const completionOptionsSchema = z.object({
1515 keepAlive : z . number ( ) . optional ( ) ,
1616 numGpu : z . number ( ) . optional ( ) ,
1717 raw : z . boolean ( ) . optional ( ) ,
18+ stream : z . boolean ( ) . optional ( ) ,
1819} ) ;
1920export type CompletionOptions = z . infer < typeof completionOptionsSchema > ;
2021
@@ -95,7 +96,6 @@ export const modelDescriptionSchema = z.object({
9596 proxy : z . string ( ) . optional ( ) ,
9697 headers : z . record ( z . string ( ) ) . optional ( ) ,
9798 extraBodyProperties : z . record ( z . any ( ) ) . optional ( ) ,
98- noProxy : z . array ( z . string ( ) ) . optional ( ) ,
9999 stream : z . boolean ( ) . optional ( ) ,
100100 } )
101101 . optional ( ) ,
You can’t perform that action at this time.
0 commit comments