feat: add MiniMax provider support for PicoOraClaw#138
Open
octo-patch wants to merge 1 commit into
Open
Conversation
- Add MiniMax as a new LLM provider using OpenAI-compatible API - Support models: MiniMax-M2.7 and MiniMax-M2.7-highspeed - Handle temperature constraint (must be in (0.0, 1.0]) - Support provider name aliases: "minimax" and "MiniMax" - Support model prefix stripping for minimax/ prefix - Add MINIMAX_API_KEY environment variable - Add comprehensive unit tests (9 test cases) - Update README with provider documentation and config example API docs: - Chat (OpenAI Compatible): https://platform.minimax.io/docs/api-reference/text-openai-api Signed-off-by: octo-patch <octo-patch@github.com>
|
Thank you for your pull request and welcome to our community! To contribute, please sign the Oracle Contributor Agreement (OCA).
To sign the OCA, please create an Oracle account and sign the OCA in Oracle's Contributor Agreement Application. When signing the OCA, please provide your GitHub username. After signing the OCA and getting an OCA approval from Oracle, this PR will be automatically updated. If you are an Oracle employee, please make sure that you are a member of the main Oracle GitHub organization, and your membership in this organization is public. |
Member
|
hey @octo-patch, could you please sign the Oracle Contributor Agreement please? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add MiniMax as a new LLM provider for PicoOraClaw, using the OpenAI-compatible API.
Changes
CreateProvider) with support for both explicit provider name (minimax/MiniMax) and auto-detection from model name(0.0, 1.0]as required by the MiniMax APIminimax/model-nameprefix formatminimaxsection toProvidersConfig,config.example.json, and.env.exampleSupported Models
MiniMax-M2.7MiniMax-M2.7-highspeedConfiguration
{ "agents": { "defaults": { "provider": "minimax", "model": "MiniMax-M2.7" } }, "providers": { "minimax": { "api_key": "your-key", "api_base": "https://api.minimax.io/v1" } } }API Reference
Test Results
All 9 new tests pass, and all 100 existing provider tests continue to pass with no regressions.