This component no longer exists. It was in shadcn/ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-13 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
ChatGPT
agileflow-projectquestorg/chatgptRemovedBlock
shadcn/ui publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/projectquestorg/AgileFlow/main/apps/docs/public/r/styles/radix-nova/chatgpt.jsonSource
1"use client"23import * as React from "react"45import {6 Example,7 ExampleWrapper,8} from "@/registry/bases/radix/components/example"9import { Alert, AlertDescription } from "@/registry/bases/radix/ui/alert"10import {11 AlertDialog,12 AlertDialogAction,13 AlertDialogCancel,14 AlertDialogContent,15 AlertDialogDescription,16 AlertDialogFooter,17 AlertDialogHeader,18 AlertDialogTitle,19 AlertDialogTrigger,20} from "@/registry/bases/radix/ui/alert-dialog"21import { Badge } from "@/registry/bases/radix/ui/badge"22import { Button } from "@/registry/bases/radix/ui/button"23import {24 Card,25 CardAction,26 CardContent,27 CardDescription,28 CardHeader,29 CardTitle,30} from "@/registry/bases/radix/ui/card"31import {32 DropdownMenu,33 DropdownMenuContent,34 DropdownMenuItem,35 DropdownMenuLabel,36 DropdownMenuRadioGroup,37 DropdownMenuRadioItem,38 DropdownMenuSeparator,39 DropdownMenuSub,40 DropdownMenuSubContent,41 DropdownMenuSubTrigger,42 DropdownMenuTrigger,43} from "@/registry/bases/radix/ui/dropdown-menu"44import {45 Field,46 FieldDescription,47 FieldGroup,48 FieldLabel,49} from "@/registry/bases/radix/ui/field"50import {51 InputGroup,52 InputGroupAddon,53 InputGroupButton,54 InputGroupInput,55 InputGroupTextarea,56} from "@/registry/bases/radix/ui/input-group"57import {58 Item,59 ItemContent,60 ItemDescription,61 ItemTitle,62} from "@/registry/bases/radix/ui/item"63import { Kbd } from "@/registry/bases/radix/ui/kbd"64import {65 Popover,66 PopoverContent,67 PopoverTrigger,68} from "@/registry/bases/radix/ui/popover"69import {70 Tooltip,71 TooltipContent,72 TooltipTrigger,73} from "@/registry/bases/radix/ui/tooltip"74import { IconPlaceholder } from "@/app/(create)/components/icon-placeholder"7576export default function ChatGPTBlock() {77 return (78 <ExampleWrapper>79 <PromptForm />80 <ModelSelector />81 <GroupChatDialog />82 <CreateProjectForm />83 </ExampleWrapper>84 )85}8687function PromptForm() {88 const [dictateEnabled, setDictateEnabled] = React.useState(false)8990 return (91 <Example title="Prompt Form">92 <Field>93 <FieldLabel htmlFor="prompt" className="sr-only">94 Prompt95 </FieldLabel>96 <InputGroup>97 <InputGroupTextarea id="prompt" placeholder="Ask anything" />98 <InputGroupAddon align="block-end">99 <DropdownMenu>100 <Tooltip>101 <DropdownMenuTrigger asChild>102 <TooltipTrigger asChild>103 <InputGroupButton104// … truncated
What it pulls in
Other registry items
