Spaces:
No application file
No application file
File size: 4,734 Bytes
c20f20c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | import {
Command,
CommandDialog,
CommandEmpty,
CommandGroup,
CommandInput,
CommandItem,
CommandList,
CommandSeparator,
CommandShortcut,
} from '@/components/ui/command';
import { Dialog, DialogContent, DialogTitle, DialogTrigger } from '@/components/ui/dialog';
import { cn } from '@/lib/utils';
import type { ComponentProps, ReactNode } from 'react';
export type ModelSelectorProps = ComponentProps<typeof Dialog>;
export const ModelSelector = (props: ModelSelectorProps) => <Dialog {...props} />;
export type ModelSelectorTriggerProps = ComponentProps<typeof DialogTrigger>;
export const ModelSelectorTrigger = (props: ModelSelectorTriggerProps) => (
<DialogTrigger {...props} />
);
export type ModelSelectorContentProps = ComponentProps<typeof DialogContent> & {
title?: ReactNode;
};
export const ModelSelectorContent = ({
className,
children,
title = 'Model Selector',
...props
}: ModelSelectorContentProps) => (
<DialogContent className={cn('p-0', className)} {...props}>
<DialogTitle className="sr-only">{title}</DialogTitle>
<Command className="**:data-[slot=command-input-wrapper]:h-auto">{children}</Command>
</DialogContent>
);
export type ModelSelectorDialogProps = ComponentProps<typeof CommandDialog>;
export const ModelSelectorDialog = (props: ModelSelectorDialogProps) => (
<CommandDialog {...props} />
);
export type ModelSelectorInputProps = ComponentProps<typeof CommandInput>;
export const ModelSelectorInput = ({ className, ...props }: ModelSelectorInputProps) => (
<CommandInput className={cn('h-auto py-3.5', className)} {...props} />
);
export type ModelSelectorListProps = ComponentProps<typeof CommandList>;
export const ModelSelectorList = (props: ModelSelectorListProps) => <CommandList {...props} />;
export type ModelSelectorEmptyProps = ComponentProps<typeof CommandEmpty>;
export const ModelSelectorEmpty = (props: ModelSelectorEmptyProps) => <CommandEmpty {...props} />;
export type ModelSelectorGroupProps = ComponentProps<typeof CommandGroup>;
export const ModelSelectorGroup = (props: ModelSelectorGroupProps) => <CommandGroup {...props} />;
export type ModelSelectorItemProps = ComponentProps<typeof CommandItem>;
export const ModelSelectorItem = (props: ModelSelectorItemProps) => <CommandItem {...props} />;
export type ModelSelectorShortcutProps = ComponentProps<typeof CommandShortcut>;
export const ModelSelectorShortcut = (props: ModelSelectorShortcutProps) => (
<CommandShortcut {...props} />
);
export type ModelSelectorSeparatorProps = ComponentProps<typeof CommandSeparator>;
export const ModelSelectorSeparator = (props: ModelSelectorSeparatorProps) => (
<CommandSeparator {...props} />
);
export type ModelSelectorLogoProps = Omit<ComponentProps<'img'>, 'src' | 'alt'> & {
provider:
| 'moonshotai-cn'
| 'lucidquery'
| 'moonshotai'
| 'zai-coding-plan'
| 'alibaba'
| 'xai'
| 'vultr'
| 'nvidia'
| 'upstage'
| 'groq'
| 'github-copilot'
| 'mistral'
| 'vercel'
| 'nebius'
| 'deepseek'
| 'alibaba-cn'
| 'google-vertex-anthropic'
| 'venice'
| 'chutes'
| 'cortecs'
| 'github-models'
| 'togetherai'
| 'azure'
| 'baseten'
| 'huggingface'
| 'opencode'
| 'fastrouter'
| 'google'
| 'google-vertex'
| 'cloudflare-workers-ai'
| 'inception'
| 'wandb'
| 'openai'
| 'zhipuai-coding-plan'
| 'perplexity'
| 'openrouter'
| 'zenmux'
| 'v0'
| 'iflowcn'
| 'synthetic'
| 'deepinfra'
| 'zhipuai'
| 'submodel'
| 'zai'
| 'inference'
| 'requesty'
| 'morph'
| 'lmstudio'
| 'anthropic'
| 'aihubmix'
| 'fireworks-ai'
| 'modelscope'
| 'llama'
| 'scaleway'
| 'amazon-bedrock'
| 'cerebras'
| (string & {});
};
export const ModelSelectorLogo = ({ provider, className, ...props }: ModelSelectorLogoProps) => (
<img
{...props}
alt={`${provider} logo`}
className={cn('size-3 dark:invert', className)}
height={12}
src={`https://models.dev/logos/${provider}.svg`}
width={12}
/>
);
export type ModelSelectorLogoGroupProps = ComponentProps<'div'>;
export const ModelSelectorLogoGroup = ({ className, ...props }: ModelSelectorLogoGroupProps) => (
<div
className={cn(
'-space-x-1 flex shrink-0 items-center [&>img]:rounded-full [&>img]:bg-background [&>img]:p-px [&>img]:ring-1 dark:[&>img]:bg-foreground',
className,
)}
{...props}
/>
);
export type ModelSelectorNameProps = ComponentProps<'span'>;
export const ModelSelectorName = ({ className, ...props }: ModelSelectorNameProps) => (
<span className={cn('flex-1 truncate text-left', className)} {...props} />
);
|