We've raised a $125M Series B to build the platform for agent engineering. Read more.
Python
import os os.environ["MINIMAX_GROUP_ID"] = "MINIMAX_GROUP_ID" os.environ["MINIMAX_API_KEY"] = "MINIMAX_API_KEY"
from langchain_community.chat_models import MiniMaxChat from langchain.messages import HumanMessage
chat = MiniMaxChat()
chat( [ HumanMessage( content="Translate this sentence from English to French. I love programming." ) ] )