File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/api/providers/__tests__ Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ describe("MiniMaxHandler", () => {
8181 expect ( model . id ) . toBe ( testModelId )
8282 expect ( model . info ) . toEqual ( minimaxModels [ testModelId ] )
8383 expect ( model . info . contextWindow ) . toBe ( 192_000 )
84- expect ( model . info . maxTokens ) . toBe ( 128_000 )
84+ expect ( model . info . maxTokens ) . toBe ( 16_384 )
8585 expect ( model . info . supportsPromptCache ) . toBe ( false )
8686 } )
8787 } )
@@ -303,7 +303,7 @@ describe("MiniMaxHandler", () => {
303303 describe ( "Model Configuration" , ( ) => {
304304 it ( "should correctly configure MiniMax-M2 model properties" , ( ) => {
305305 const model = minimaxModels [ "MiniMax-M2" ]
306- expect ( model . maxTokens ) . toBe ( 128_000 )
306+ expect ( model . maxTokens ) . toBe ( 16_384 )
307307 expect ( model . contextWindow ) . toBe ( 192_000 )
308308 expect ( model . supportsImages ) . toBe ( false )
309309 expect ( model . supportsPromptCache ) . toBe ( false )
You can’t perform that action at this time.
0 commit comments