Was working in prior version. After upgrade to post 6, the build-in minimax provider no longer work:
"minimax": {
"apiKey": "xxxxxxx",
"apiBase": null,
"extraHeaders": null
},
Tried to add apiBase as:
"apiBase": "https://api.minimax.io/v1",
or
"apiBase": "https://api.minimax.io/",
and it is the same. Finally, switch to use Anthropic compatible setting as:
"anthropic": {
"apiKey": "xxxxxxx",
"apiBase": "https://api.minimax.io/anthropic",
"extraHeaders": null
},
and specify anthropic in agent to resolve this:
"agents": {
"defaults": {
"workspace": "~/.nanobot/workspace",
"model": "MiniMax-M2.7",
"provider": "anthropic",
"maxTokens": 8192,
"contextWindowTokens": 65536,
"temperature": 0.1,
"maxToolIterations": 40,
"reasoningEffort": null,
"timezone": "UTC"
}
Was working in prior version. After upgrade to post 6, the build-in minimax provider no longer work:
Tried to add apiBase as:
or
"apiBase": "https://api.minimax.io/",
and it is the same. Finally, switch to use Anthropic compatible setting as:
and specify anthropic in agent to resolve this:
"agents": {
"defaults": {
"workspace": "~/.nanobot/workspace",
"model": "MiniMax-M2.7",
"provider": "anthropic",
"maxTokens": 8192,
"contextWindowTokens": 65536,
"temperature": 0.1,
"maxToolIterations": 40,
"reasoningEffort": null,
"timezone": "UTC"
}