[docs] Update Repo Mind Light AW documentation for 2026-07-06#18
Open
szabta89 wants to merge 1 commit into
Open
[docs] Update Repo Mind Light AW documentation for 2026-07-06#18szabta89 wants to merge 1 commit into
szabta89 wants to merge 1 commit into
Conversation
Add a schema note for chat_model and a comment in the config example clarifying that gpt-5.4 is also a supported value alongside the default claude-sonnet-4.6. Source evidence: config.py defines ChatModel = Literal["gpt-5.4", "claude-sonnet-4.6"] and the source README documents the same option inline. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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
chat_modelclarifying it acceptsclaude-sonnet-4.6(default) orgpt-5.4.# or gpt-5.4inline comment on thechat_modelline.Source Context
Checked
repo_mind_light/config.pyin the source checkout, which definesChatModel = Literal["gpt-5.4", "claude-sonnet-4.6"]and sets the default toclaude-sonnet-4.6. The source README also documents both values inline as# or gpt-5.4. The existing public README config example already includedchat_model: claude-sonnet-4.6but the schema notes section had no corresponding bullet point and no indication that other values were supported.Validation
ChatModelliteral type inconfig.py.# or gpt-5.4.CopilotApiChatEndpointinconnector.pyaccepts arbitrary model strings, with a comment specifically calling outgpt-5.4as an example.Notes
All other schema notes remain accurate. No changes to the shared workflow YAML or comments were needed.