adds shadcn-ui components, and model button to switch chat models

This commit is contained in:
Danny Avila 2023-02-13 15:58:35 -05:00
parent acaef39d12
commit 583fd56ca5
14 changed files with 1700 additions and 196 deletions

6
src/utils/index.js Normal file
View file

@ -0,0 +1,6 @@
import { ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs) {
return twMerge(clsx(inputs))
}