Problem
The command page (frontend/app/(app)/command/page.tsx ~line 359) has a commented-out model selector:
{/* TODO: Re-enable when model selection is ready */}
{/* <ModelSelector
value={selectedModel}
onValueChange={setSelectedModel}
/> */}
Users can't choose which LLM model to use for spec generation.
What to do
- Review if the
ModelSelector component is functional
- Wire it to the backend's LLM service configuration
- Enable the component in the command page
- Ensure model selection persists across sessions
Difficulty: Easy-Medium | Skill: Frontend (React)
Problem
The command page (
frontend/app/(app)/command/page.tsx~line 359) has a commented-out model selector:Users can't choose which LLM model to use for spec generation.
What to do
ModelSelectorcomponent is functionalDifficulty: Easy-Medium | Skill: Frontend (React)