MiniMax support

New Agentic LLM just dropped, we need it in cursor

1 Like

It’s great to see that recently there are more and more models in Cursor. I’m getting used to this and would love to see even more advanced LLMs.

Found this api page, i assume that we might be able to manually add it?

(OpenAI SDK endpoint: https://api.minimax.io/v1)

curl --location "https://api.minimax.io/v1/text/chatcompletion_v2" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer $MiniMax_API_KEY" \
--data '{
    "model":"MiniMax-M1",
    "messages":[
      {
        "role":"system",
        "name":"MiniMax AI"
      },
      {
        "role":"user",
        "name":"user", 
        "content":"Hello"
      }
    ]
  }'

Hey, I think this should work. Try overriding the base URL, entering the API key, and adding the model to the list.