Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ The npm package provides the same CLI commands (`agentseal guard`, `scan`, `scan
|---|---|:---:|
| OpenAI | `--model gpt-4o` | `OPENAI_API_KEY` |
| Anthropic | `--model claude-sonnet-4-5-20250929` | `ANTHROPIC_API_KEY` |
| MiniMax | `--model MiniMax-M2.7` | `MINIMAX_API_KEY` |
| MiniMax | `--model MiniMax-M3` | `MINIMAX_API_KEY` |
| Ollama | `--model ollama/llama3.1:8b` | None |
| LiteLLM | `--model any --litellm-url http://...` | Varies |
| HTTP | `--url http://your-agent.com/chat` | None |
Expand Down
2 changes: 1 addition & 1 deletion python/agentseal/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def main():

# Model (required for prompt/file mode)
scan_parser.add_argument("--model", "-m", type=str, default=None,
help="Model to test against (e.g. gpt-4o, claude-sonnet-4-5-20250929, MiniMax-M2.7, ollama/qwen3-32b)")
help="Model to test against (e.g. gpt-4o, claude-sonnet-4-5-20250929, MiniMax-M3, ollama/qwen3-32b)")

# LLM connection
scan_parser.add_argument("--api-key", type=str, default=None,
Expand Down
4 changes: 2 additions & 2 deletions python/agentseal/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ def get_setup_guide() -> str:
# Or: export OPENAI_API_KEY=sk-xxxxx

MiniMax:
agentseal config set model MiniMax-M2.7
agentseal config set model MiniMax-M3
agentseal config set api-key xxxxx
# Or: export MINIMAX_API_KEY=xxxxx
# Models: MiniMax-M2.7, MiniMax-M2.7-highspeed, MiniMax-M2.5, MiniMax-M2.5-highspeed
# Models: MiniMax-M3 (default), MiniMax-M2.7, MiniMax-M2.7-highspeed

OpenRouter (any model, one API key):
agentseal config set model openrouter/anthropic/claude-haiku-4-5-20251001
Expand Down
2 changes: 1 addition & 1 deletion python/agentseal/connectors/minimax.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def build_minimax_chat(model: str, system_prompt: str, api_key: str = None):
MiniMax provides an OpenAI-compatible API at https://api.minimax.io/v1.

Args:
model: Model name (e.g. "MiniMax-M2.7", "MiniMax-M2.7-highspeed").
model: Model name (e.g. "MiniMax-M3", "MiniMax-M2.7", "MiniMax-M2.7-highspeed").
system_prompt: The system prompt to use.
api_key: API key (falls back to MINIMAX_API_KEY env).
"""
Expand Down
Loading