feat(model-connections): add provider-specific connection forms and shared components

This commit is contained in:
Anish Sarkar 2026-06-12 22:04:44 +05:30
parent ced1bb85ed
commit 356f0e56c5
15 changed files with 1423 additions and 574 deletions

View file

@ -1,6 +1,6 @@
"use client";
import { Bot, Check, ChevronDown } from "lucide-react";
import { Check, ChevronDown, Cpu } from "lucide-react";
import { useRouter } from "next/navigation";
import { useCallback, useEffect, useMemo, useState } from "react";
import { Badge } from "@/components/ui/badge";
@ -82,7 +82,7 @@ export function FreeModelSelector({ className }: { className?: string }) {
</>
) : (
<>
<Bot className="size-4 text-muted-foreground" />
<Cpu className="size-4 text-muted-foreground" />
<span className="text-muted-foreground">Select Model</span>
</>
)}