Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Review Summary by QodoRename analysis models to generic names and reorder enums
WalkthroughsDescription• Rename analysis model enums for clarity and abstraction - Replace GPT_4O_MINI_FT with FAST_FT (basic model) - Replace GPT_4O_FT with PRIMARY (advanced model) - Add new FAST enum entry • Update UI labels to use generic model names - Change from specific model names to '기본 모델' and '고급 모델' • Adjust decrement counts for new model structure - FAST_FT and FAST both decrement by 1 - PRIMARY decrements by 2 • Update all references across form schema and components Diagramflowchart LR
A["Old Model Names<br/>GPT-4o-mini/GPT-4o"] -->|Rename| B["Generic Names<br/>FAST_FT/PRIMARY"]
B -->|Update| C["UI Labels<br/>기본/고급 모델"]
B -->|Update| D["Decrement Config<br/>1/1/2 counts"]
C -->|Apply| E["Form Components<br/>Schema & UI"]
D -->|Apply| E
File Changes1. src/features/syntax-analyzer/constants/settings.ts
|
Code Review by Qodo
1. Backend contract risk
|
No description provided.