From 2c0980bda3fe6de1816c9941d6346317765dfeac Mon Sep 17 00:00:00 2001 From: DB Lee Date: Fri, 12 Jun 2026 09:19:29 -0700 Subject: [PATCH] docs(copilot): correct backend hint in research MCP plugin (openai -> azure_openai) The advertised backend choices in scripts/train.py use 'azure_openai', not 'openai'; align the inputSchema description hint accordingly. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- plugins/copilot/skillopt/mcp_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/copilot/skillopt/mcp_server.py b/plugins/copilot/skillopt/mcp_server.py index 22be68e..853877f 100644 --- a/plugins/copilot/skillopt/mcp_server.py +++ b/plugins/copilot/skillopt/mcp_server.py @@ -122,7 +122,7 @@ _COMMON_PROPS = { "config": {"type": "string", "description": "Path to a benchmark YAML config (e.g. configs/searchqa/default.yaml). See skillopt_list_configs."}, "env": {"type": "string", "description": "Override the environment/adapter name (e.g. searchqa, alfworld)."}, - "backend": {"type": "string", "description": "Model backend (e.g. openai, claude, codex, qwen)."}, + "backend": {"type": "string", "description": "Model backend (e.g. azure_openai, claude, codex, qwen, minimax)."}, "optimizer_model": {"type": "string", "description": "Model used for reflection/skill rewriting (the optimizer)."}, "target_model": {"type": "string", "description": "Model used to execute tasks (the target)."}, "out_root": {"type": "string", "description": "Output directory root for run artifacts."},