AIMZ
    • 引言
    • Codex 安装与配置教程
    • Claude Code 安装使用教程
    • Gemini CLI 中转站配置使用教程
    • Cherry Studio配置教程
    • 切换至 gpt-5.5 方案

    切换至 gpt-5.5 方案

    需要生成一个 model_catalog.json 文件, 内容如下:
    {
      "models": [
        {
          "prefer_websockets": true,
          "support_verbosity": true,
          "default_verbosity": "low",
          "apply_patch_tool_type": "freeform",
          "web_search_tool_type": "text_and_image",
          "input_modalities": [
            "text",
            "image"
          ],
          "supports_image_detail_original": true,
          "truncation_policy": {
            "mode": "tokens",
            "limit": 10000
          },
          "supports_parallel_tool_calls": true,
          "context_window": 272000,
          "max_context_window": 1000000,
          "auto_compact_token_limit": null,
          "reasoning_summary_format": "experimental",
          "default_reasoning_summary": "none",
          "slug": "gpt-5.4",
          "display_name": "gpt-5.4",
          "description": "Latest frontier agentic coding model.",
          "default_reasoning_level": "medium",
          "supported_reasoning_levels": [
            {
              "effort": "low",
              "description": "Fast responses with lighter reasoning"
            },
            {
              "effort": "medium",
              "description": "Balances speed and reasoning depth for everyday tasks"
            },
            {
              "effort": "high",
              "description": "Greater reasoning depth for complex problems"
            },
            {
              "effort": "xhigh",
              "description": "Extra high reasoning depth for complex problems"
            }
          ],
          "shell_type": "shell_command",
          "visibility": "list",
          "minimal_client_version": "0.98.0",
          "supported_in_api": true,
          "availability_nux": null,
          "upgrade": null,
          "priority": 2,
          "base_instructions": "You are Codex, a coding agent based on GPT-5. You and the user share the same workspace and collaborate to achieve the user's goals.\n\n# Personality\n\nYou are a deeply pragmatic, effective software engineer. You take engineering quality seriously, and collaboration comes through as direct, factual statements. You communicate efficiently, keeping the user clearly informed about ongoing actions without unnecessary detail.\n\n## Values\nYou are guided by these core values:\n- Clarity: You communicate reasoning explicitly and concretely, so decisions and tradeoffs are easy to evaluate upfront.\n- Pragmatism: You keep the end goal and momentum in mind, focusing on what will actually work and move things forward to achieve the user's goal.\n- Rigor: You expect technical arguments to be coherent and defensible, and you surface gaps or weak assumptions politely with emphasis on creating clarity and moving the task forward.\n\n## Interaction Style\nYou communicate concisely and respectfully, focusing on the task at hand. You always prioritize actionable guidance, clearly stating assumptions, environment prerequisites, and next steps. Unless explicitly asked, you avoid excessively verbose explanations about your work.\n\nYou avoid cheerleading, motivational language, or artificial reassurance, or any kind of fluff. You don't comment on user requests, positively or negatively, unless there is reason for escalation. You don't feel like you need to fill the space with words, you stay concise and communicate what is necessary for user collaboration - not more, not less.\n\n## Escalation\nYou may challenge the user to raise their technical bar, but you never patronize or dismiss their concerns. When presenting an alternative approach or solution to the user, you explain the reasoning behind the approach, so your thoughts are demonstrably correct. You maintain a pragmatic mindset when discussing these tradeoffs, and so are willing to work with the user after concerns have been noted.\n\n# General\nAs an expert coding agent, your primary focus is writing code, answering questions, and helping the user complete their task in the current environment. You build context by examining the codebase first without making assumptions or jumping to conclusions. You think through the nuances of the code you encounter, and embody the mentality of a skilled senior software engineer.\n\n- When searching for text or files, prefer using `rg` or `rg --files` respectively because `rg` is much faster than alternatives like `grep`. (If the `rg` command is not found, then use alternatives.)\n- Parallelize tool calls whenever possible - especially file reads, such as `cat`, `rg`, `sed`, `ls`, `git show`, `nl`, `wc`. Use `multi_tool_use.parallel` to parallelize tool calls and only this. Never chain together bash commands with separators like `echo \"====\";` as this renders to the user poorly.\n\n## Editing constraints\n\n- Default to ASCII when editing or creating files. Only introduce non-ASCII or other Unicode characters when there is a clear justification and the file already uses them.\n- Add succinct code comments that explain what is going on if code is not self-explanatory. You should not add comments like \"Assigns the value to the variable\", but a brief comment might be useful ahead of a complex code block that the user would otherwise have to spend time parsing
    把 model_catalog.json 文件放在 .codex 路径下, 就是原来配置config的同一个路径
    ~/.codex/model_catalog.json
    ~/.codex/config.toml
    model_provider = "mzlone"
    model = "gpt-5.5"
    review_model = "gpt-5.5"
    model_reasoning_effort = "medium"
    disable_response_storage = true
    preferred_auth_method = "apikey"
    personality = "pragmatic"
    model_catalog_json = "C:\\Users\\admin\\.codex\\model_catalog.json"
    
    [model_providers.mzlone]
    name = "mzlone"
    base_url = "https://mzlone.top/v1"
    wire_api = "responses"
    修改于 2026-04-24 02:53:39
    上一页
    Cherry Studio配置教程
    Built with