import { ContextFilesPicker } from "./ContextFilesPicker"; import { ModelPicker } from "./ModelPicker"; import { ProModeSelector } from "./ProModeSelector"; export function ChatInputControls({ showContextFilesPicker = false, }: { showContextFilesPicker?: boolean; }) { return (
{showContextFilesPicker && ( <>
)}
); }