File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -331,7 +331,7 @@ describe("RooHandler", () => {
331331 expect ( modelInfo . info . maxTokens ) . toBe ( 8192 )
332332 expect ( modelInfo . info . contextWindow ) . toBe ( 262_144 )
333333 expect ( modelInfo . info . supportsImages ) . toBe ( false )
334- expect ( modelInfo . info . supportsPromptCache ) . toBe ( false )
334+ expect ( modelInfo . info . supportsPromptCache ) . toBe ( true )
335335 expect ( modelInfo . info . inputPrice ) . toBe ( 0 )
336336 expect ( modelInfo . info . outputPrice ) . toBe ( 0 )
337337 } )
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ export class RooHandler extends BaseOpenAiCompatibleProvider<RooModelId> {
8484 maxTokens : 8192 ,
8585 contextWindow : 262_144 ,
8686 supportsImages : false ,
87- supportsPromptCache : false ,
87+ supportsPromptCache : true ,
8888 inputPrice : 0 ,
8989 outputPrice : 0 ,
9090 } ,
You can’t perform that action at this time.
0 commit comments