Skip to content
Merged
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
23 changes: 23 additions & 0 deletions host_vars/home/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,29 @@ pi_agent_subagent_overrides:
model: "openai-codex/gpt-5.5"
thinking: "medium"

pi_agent_settings_overrides: |-
{
"collapseChangelog": true,
"enableInstallTelemetry": false,
"enabledModels": [
"openai-codex/gpt-5.5",
"opencode-go/glm-5",
"opencode-go/glm-5.1",
"opencode-go/kimi-k2.5",
"opencode-go/kimi-k2.6",
"opencode-go/mimo-v2.5",
"opencode-go/mimo-v2.5-pro",
"opencode-go/minimax-m2.5",
"opencode-go/minimax-m2.7",
"opencode-go/minimax-m3",
"opencode-go/qwen3.6-plus",
"opencode-go/qwen3.7-plus",
"opencode-go/qwen3.7-max",
"opencode-go/deepseek-v4-pro",
"opencode-go/deepseek-v4-flash"
]
}

Comment on lines +44 to +66

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Search for model ID references, provider configuration, or documentation
# that confirms these models are valid

# Look for provider configuration files that might list available models
fd -t f -e json -e yaml -e yml 'models|providers|config' --exec rg -l 'openai-codex|opencode-go'

# Search for any documentation mentioning these specific models
rg -i 'gpt-5\.5|glm-5|kimi-k2|mimo-v2|minimax-m|qwen3\.[67]|deepseek-v4' --type md --type txt -C 2

Repository: boga/dotfiles

Length of output: 39


🌐 Web query:

Are the following AI model IDs valid and currently available: openai-codex gpt-5.5, opencode-go glm-5.1, kimi-k2.6, mimo-v2.5-pro, minimax-m3, qwen3.7-max, deepseek-v4-pro?

💡 Result:

As of June 10, 2026, the status of the requested AI model IDs is as follows: openai-codex gpt-5.5: Valid but currently experiencing significant service availability issues [1][2]. While officially released for ChatGPT and Codex users [2], numerous reports indicate that users encounter 400 (unsupported model) and 404 (model not found) errors when attempting to use it via API or integrated tools, suggesting ongoing routing or entitlement propagation problems [3][4]. opencode-go glm-5.1: Valid and available [5][6]. It is a supported model within the OpenCode Go platform [5], although users may encounter "model not supported" errors if their account entitlements (subscription status) are not properly recognized or if they attempt to misconfigure the model identifier in their client settings [7][8]. kimi-k2.6: Valid and available [9]. It is accessible via the official Kimi platform, API, and various third-party providers [9][10]. It is also open-weight and available on Hugging Face [11]. mimo-v2.5-pro: Valid and available [12]. It was released by Xiaomi and is fully rolled out across their API platforms and accessible via Hugging Face [12]. minimax-m3: Valid and available [13][10]. It is supported by various providers and platforms, including OpenRouter and other API aggregators [13][10]. qwen3.7-max: Valid and available [14][15]. This model is offered by Qwen Cloud and multiple third-party API providers, often labeled as Qwen/Qwen3.7-Max or qwen-3.7-max [16][15][17]. deepseek-v4-pro: Valid and available [18]. This flagship model is provided via the official DeepSeek API and is available as open-weight model weights on Hugging Face [18].

Citations:


Confirm model IDs via external docs; add guardrails for openai-codex/gpt-5.5 availability

  • No provider/model catalog for openai-codex/opencode-go was found in this repo, so validity relies on external references.
  • Public docs indicate the referenced models (e.g., glm-5.1, kimi-k2.6, mimo-v2-5-pro, minimax-m3, qwen3.7-max, deepseek-v4-pro) are real/available on their respective providers.
  • openai-codex/gpt-5.5 has documented ongoing API/model-not-found or entitlement/routing issues; ensure callers have fallback or error handling since this ID is included in enabledModels (and may be used by overrides).
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@host_vars/home/vars.yml` around lines 44 - 66, The
pi_agent_settings_overrides block lists enabledModels including
openai-codex/gpt-5.5 which may be unavailable or return model-not-found errors;
update the code that consumes pi_agent_settings_overrides (the enabledModels
handling/validation logic) to validate model IDs against an authoritative
provider catalog (or a local whitelist) before use, and add a runtime
guard/fallback for openai-codex/gpt-5.5 specifically: detect failures and fall
back to an alternative model or disable that entry, and emit a clear
warning/error when openai-codex/gpt-5.5 is selected but not reachable; ensure
the validation/fallback is invoked wherever enabledModels is parsed so callers
using enabledModels receive safe, validated model selections.

pi_plannotator_planning_model:
provider: "openai-codex"
id: "gpt-5.5"
Expand Down