Add contextual descriptions to AI model selection dropdowns
Users can now see helpful context next to each model option: - Gemini 3 Pro (Slow, best for most tasks) - GPT-4.1 (Fast, best for speed) - GPT-5 (Slow, best for complex tasks) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
578dc60b11
commit
bbd3f2c828
5 changed files with 14 additions and 14 deletions
|
|
@ -1581,9 +1581,9 @@ true;
|
|||
</SelectTrigger>
|
||||
</FormControl>
|
||||
<SelectContent>
|
||||
<SelectItem value="gemini-3-pro-preview">Gemini 3 Pro</SelectItem>
|
||||
<SelectItem value="gpt-4.1">GPT-4.1</SelectItem>
|
||||
<SelectItem value="gpt-5">GPT-5</SelectItem>
|
||||
<SelectItem value="gemini-3-pro-preview">Gemini 3 Pro (Slow, best for most tasks)</SelectItem>
|
||||
<SelectItem value="gpt-4.1">GPT-4.1 (Fast, best for speed)</SelectItem>
|
||||
<SelectItem value="gpt-5">GPT-5 (Slow, best for complex tasks)</SelectItem>
|
||||
</SelectContent>
|
||||
</Select>
|
||||
<FormDescription>
|
||||
|
|
|
|||
|
|
@ -302,9 +302,9 @@ export default function AIRecruiterForm({ onSubmit, isGenerating }: AIRecruiterF
|
|||
</SelectTrigger>
|
||||
</FormControl>
|
||||
<SelectContent>
|
||||
<SelectItem value="gemini-3-pro-preview">Gemini 3 Pro</SelectItem>
|
||||
<SelectItem value="gpt-4.1">GPT-4.1</SelectItem>
|
||||
<SelectItem value="gpt-5">GPT-5</SelectItem>
|
||||
<SelectItem value="gemini-3-pro-preview">Gemini 3 Pro (Slow, best for most tasks)</SelectItem>
|
||||
<SelectItem value="gpt-4.1">GPT-4.1 (Fast, best for speed)</SelectItem>
|
||||
<SelectItem value="gpt-5">GPT-5 (Slow, best for complex tasks)</SelectItem>
|
||||
</SelectContent>
|
||||
</Select>
|
||||
<FormDescription>
|
||||
|
|
|
|||
|
|
@ -227,9 +227,9 @@ export default function PersonaModificationModal({
|
|||
</SelectTrigger>
|
||||
</FormControl>
|
||||
<SelectContent>
|
||||
<SelectItem value="gemini-3-pro-preview">Gemini 3 Pro</SelectItem>
|
||||
<SelectItem value="gpt-4.1">GPT-4.1</SelectItem>
|
||||
<SelectItem value="gpt-5">GPT-5</SelectItem>
|
||||
<SelectItem value="gemini-3-pro-preview">Gemini 3 Pro (Slow, best for most tasks)</SelectItem>
|
||||
<SelectItem value="gpt-4.1">GPT-4.1 (Fast, best for speed)</SelectItem>
|
||||
<SelectItem value="gpt-5">GPT-5 (Slow, best for complex tasks)</SelectItem>
|
||||
</SelectContent>
|
||||
</Select>
|
||||
<FormDescription>
|
||||
|
|
|
|||
|
|
@ -2308,9 +2308,9 @@ const FocusGroupSession = () => {
|
|||
<SelectValue placeholder="Select AI model" />
|
||||
</SelectTrigger>
|
||||
<SelectContent>
|
||||
<SelectItem value="gemini-3-pro-preview">Gemini 3 Pro</SelectItem>
|
||||
<SelectItem value="gpt-4.1">GPT-4.1</SelectItem>
|
||||
<SelectItem value="gpt-5">GPT-5</SelectItem>
|
||||
<SelectItem value="gemini-3-pro-preview">Gemini 3 Pro (Slow, best for most tasks)</SelectItem>
|
||||
<SelectItem value="gpt-4.1">GPT-4.1 (Fast, best for speed)</SelectItem>
|
||||
<SelectItem value="gpt-5">GPT-5 (Slow, best for complex tasks)</SelectItem>
|
||||
</SelectContent>
|
||||
</Select>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1933,13 +1933,13 @@ const SyntheticUsers = () => {
|
|||
<div className="flex items-center space-x-2">
|
||||
<RadioGroupItem value="gemini-3-pro-preview" id="download-gemini" />
|
||||
<Label htmlFor="download-gemini" className="text-sm font-medium">
|
||||
Gemini 3 Pro
|
||||
Gemini 3 Pro (Slow, best for most tasks)
|
||||
</Label>
|
||||
</div>
|
||||
<div className="flex items-center space-x-2">
|
||||
<RadioGroupItem value="gpt-4.1" id="download-gpt" />
|
||||
<Label htmlFor="download-gpt" className="text-sm font-medium">
|
||||
GPT-4.1
|
||||
GPT-4.1 (Fast, best for speed)
|
||||
</Label>
|
||||
</div>
|
||||
</RadioGroup>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue