MiniMax integration (AI). Imported from open-connector.
https://api.minimax.io/v1/models
/v1/models/{modelId}
| Param | Type | Required | Description |
|---|---|---|---|
| modelId | string | required | MiniMax model identifier to retrieve. |
/v1/responses
| Param | Type | Required | Description |
|---|---|---|---|
| model | string | required | MiniMax model name to invoke, for example MiniMax-M3. |
| input | string | required | MiniMax Responses API text or conversation input. |
| instructions | string | optional | System instructions for the response. |
| max_output_tokens | integer | optional | Maximum output token count. |
| temperature | number | optional | Sampling temperature in the official range [0, 1]. |
| top_p | number | optional | Nucleus sampling value in the official range [0, 1]. |
| service_tier | string | optional | MiniMax service tier for request admission. |
| tools | array | optional | Function tools available to MiniMax. |
| tool_choice | string | optional | Tool selection strategy. |
| metadata | object | optional | String metadata to attach to the MiniMax request. |
| prompt_cache_key | string | optional | Prompt cache routing identifier. |
| stream | boolean | optional | Set to false for the non-streaming connector action. |
| text | object | optional | MiniMax output text format control. |
| reasoning | object | optional | MiniMax reasoning control. MiniMax-M3 defaults to none when omitted. |
/v1/responses/input_tokens
| Param | Type | Required | Description |
|---|---|---|---|
| model | string | required | MiniMax model name to estimate against, for example MiniMax-M3. |
| input | string | required | MiniMax Responses API text or conversation input. |
| instructions | string | optional | System instructions included in the estimate. |
| tools | array | optional | Function tools included in the estimate. |
| tool_choice | string | optional | Tool selection strategy. |
| text | object | optional | MiniMax output text format control. |
| reasoning | object | optional | MiniMax reasoning control. MiniMax-M3 defaults to none when omitted. |