Skip to content
This repository was archived by the owner on Aug 6, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,7 +33,7 @@ export function ReasoningLevelSelector({
const activeLevel = thoughtOption.currentValue;
const activeLabel =
options.find((opt) => opt.value === activeLevel)?.name ?? activeLevel;
const triggerLabel = `${adapter === "codex" ? "Reasoning" : "Effort"}: ${activeLabel}`;
const prefix = adapter === "codex" ? "Reasoning" : "Effort";

return (
<DropdownMenu>
Expand All@@ -44,10 +44,10 @@ export function ReasoningLevelSelector({
variant="default"
size="sm"
disabled={disabled}
aria-label={triggerLabel}
aria-label={`${prefix}: ${activeLabel}`}
>
<Brain size={14} className="text-muted-foreground" />
{triggerLabel}
{activeLabel}
<CaretDown
size={10}
weight="bold"
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -565,7 +565,12 @@ export function TaskInput({
className="relative h-full w-full"
>
<DropZoneOverlay isVisible={isDraggingFile} />
<Flex align="center" justify="center" height="100%" className="relative">
<Flex
align="center"
justify="center"
height="100%"
className="relative px-4"
>
<DotPatternBackground className="h-[100.333%]" />
<Flex
direction="column"
Expand Down
Loading