Compare commits

...

2 Commits

View File

@@ -8,7 +8,7 @@ class MiniMaxLLM(LLM):
super().__init__(**kwargs)
self.api_key = api_key
self.model = model
self.base_url = "https://api.minimax.chat/v1"
self.base_url = "https://api.minimax.io/v1"
def _call(self, messages: List[Dict[str, str]], **kwargs) -> str:
headers = {