feat(migrations): update schema version to 3 and retire chat-v1 model#2337
Merged
Conversation
- Changed the default model from `chat-v1` to `reasoning-quick-v1` due to backend removal of `chat-v1` from the model registry. - Updated migration logic to remap persisted configurations and increment schema version to 3. - Adjusted tests to reflect the new schema version and ensure proper migration behavior.
Contributor
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (5)
📝 WalkthroughWalkthroughThis PR retires the chat-v1 model by updating the default model selection and hint routing to use reasoning-quick-v1, implements a versioned configuration migration that persists the change for existing configs, and verifies the entire migration lifecycle through test coverage. ChangesChat-v1 Model Retirement and Migration
Estimated code review effort🎯 2 (Simple) | ⏱️ ~12 minutes Possibly related PRs
Suggested labels
Poem
Comment |
mtkik
pushed a commit
to mtkik/openhuman-meet
that referenced
this pull request
May 21, 2026
CodeGhost21
pushed a commit
to CodeGhost21/openhuman
that referenced
this pull request
May 22, 2026
AusAgentSmith
pushed a commit
to AusAgentSmith/openhuman
that referenced
this pull request
May 23, 2026
12 tasks
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-v1as the default model: the backend removed it from its strict model registry, causing new sub-agent spawns (new inference threads) to receive 400 errorsDEFAULT_MODELconstant toreasoning-quick-v1(Kimi K2.6 Turbo on Fireworks — same underlying modelchat-v1previously aliased to)retire_chat_v1_model) that remaps any persistedconfig.default_model = "chat-v1"to"reasoning-quick-v1"on next launchhint:chatin the OpenHuman backend provider factory toreasoning-quick-v1as wellTest plan
retire_chat_v1_model.rs: remap whenchat-v1, idempotent when alreadyreasoning-quick-v1, no-op onNoneand other model valuesmod_tests.rs: fresh install and upgrade from v0 all advance to schema_version=3cargo testpassesdefault_model = "chat-v1"inconfig.tomlis migrated toreasoning-quick-v1on launchSummary by CodeRabbit