chore: sync model developers data#1474
Conversation
Greptile SummaryThis automated sync adds four new models (DeepSeek V4 Pro, DeepSeek V4 Flash, Kimi K2.6, GPT-5.5), enriches existing Qwen models with detailed reasoning capability metadata, adds alias metadata for DeepSeek Reasoner/Chat, moves the Meta provider block earlier in the file, and refreshes ByteDance model timestamps.
Confidence Score: 4/5Safe to merge after fixing the single character encoding corruption in doubao-seed-1-6-vision metadata. One P1 data-integrity issue: a U+FFFD replacement character pair corrupts a display string for one ByteDance model. All other changes (new models, capability enrichments, timestamp updates) look structurally correct. The fix is a one-line correction. frontend/src/features/models/data/providers.json — line 13669 Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[upstream all.json] -->|weekly sync workflow| B[providers.json sync]
B --> C{Changes}
C --> D[New models\nDeepSeek V4 Pro/Flash\nKimi K2.6\nGPT-5.5]
C --> E[Enriched reasoning metadata\nQwen models\nsupported / interleaved / summaries / visibility]
C --> F[Alias metadata\nDeepSeek Reasoner → deepseek-v4-flash\nDeepSeek Chat → deepseek-v4-flash]
C --> G[Meta provider block\nrepositioned in file]
C --> H[ByteDance models\ntimestamp + capability updates]
H --> I[⚠️ doubao-seed-1-6-vision\nU+FFFD corruption in raw_limits]
Reviews (1): Last reviewed commit: "chore: sync model developers data" | Re-trigger Greptile |
| "最大 TPM: 5000000", | ||
| "最大回答(默认 4k):32k", | ||
| "最大思维链: 32k", | ||
| "最大思��链: 32k", |
There was a problem hiding this comment.
Character encoding corruption in
doubao-seed-1-6-vision metadata
The character 维 (U+7EF4) in "最大思维链: 32k" was corrupted to two U+FFFD Unicode replacement characters during the sync, producing "最大思\uFFFD\uFFFD链: 32k". All other occurrences of 最大思维链 in the file are intact (verified at lines 13356, 13419, 13482, etc.); only this single entry was affected by what appears to be a byte-level corruption in the upstream source. The raw_limits array is used for UI display, so users will see garbled text for this model's chain-of-thought limit.
| "最大思��链: 32k", | |
| "最大思维链: 32k", |
Automated sync of model developers data from upstream source.
Source: https://raw.githubusercontent.com/ThinkInAIXYZ/PublicProviderConf/refs/heads/dev/dist/all.json
This PR was automatically created by the weekly sync workflow.