@@ -79,7 +79,7 @@ def _load_example(extra_env=None):
7979 env = {
8080 "MINIMAX_API_KEY" : "test-key" ,
8181 "MINIMAX_BASE_URL" : "https://api.minimax.io/v1" ,
82- "MINIMAX_LLM_MODEL" : "MiniMax-M2.7 " ,
82+ "MINIMAX_LLM_MODEL" : "MiniMax-M3 " ,
8383 "EMBEDDING_BINDING_HOST" : "https://api.openai.com/v1" ,
8484 "EMBEDDING_BINDING_API_KEY" : "test-embed-key" ,
8585 "EMBEDDING_MODEL" : "text-embedding-3-small" ,
@@ -124,7 +124,7 @@ def test_default_base_url(self):
124124 k : v
125125 for k , v in {
126126 "MINIMAX_API_KEY" : "test-key" ,
127- "MINIMAX_LLM_MODEL" : "MiniMax-M2.7 " ,
127+ "MINIMAX_LLM_MODEL" : "MiniMax-M3 " ,
128128 "EMBEDDING_BINDING_HOST" : "https://api.openai.com/v1" ,
129129 "EMBEDDING_BINDING_API_KEY" : "test-embed-key" ,
130130 "EMBEDDING_MODEL" : "text-embedding-3-small" ,
@@ -149,7 +149,7 @@ def test_default_model(self):
149149 }
150150 with patch .dict (os .environ , env , clear = True ):
151151 mod , _ = _load_example ()
152- assert mod .MINIMAX_LLM_MODEL == "MiniMax-M2.7 "
152+ assert mod .MINIMAX_LLM_MODEL == "MiniMax-M3 "
153153
154154 def test_custom_model_env (self ):
155155 mod , _ = _load_example ({"MINIMAX_LLM_MODEL" : "MiniMax-M2.7-highspeed" })
@@ -311,7 +311,7 @@ async def mock_complete(model, prompt, **kwargs):
311311
312312 mod .openai_complete_if_cache = mock_complete
313313 await mod .minimax_llm_model_func ("test" )
314- assert captured ["model" ] == "MiniMax-M2.7 "
314+ assert captured ["model" ] == "MiniMax-M3 "
315315
316316 @pytest .mark .asyncio
317317 async def test_system_prompt_passed_through (self ):
@@ -375,7 +375,7 @@ class TestMiniMaxRAGIntegration:
375375 def test_default_model_name (self ):
376376 mod , _ = _load_example ()
377377 integration = mod .MiniMaxRAGIntegration ()
378- assert integration .model_name == "MiniMax-M2.7 "
378+ assert integration .model_name == "MiniMax-M3 "
379379
380380 def test_default_base_url (self ):
381381 mod , _ = _load_example ()
0 commit comments