Files
Yuuki-chat/app/page.tsx
v0 71ef3bc46f feat: migrate to open HuggingFace API and remove auth
Remove auth logic and switch to open API endpoint.

Co-authored-by: awa <212803252+aguitauwu@users.noreply.github.com>
2026-02-11 23:05:39 +00:00

8 lines
131 B
TypeScript

"use client";
import { ChatWindow } from "@/components/chat-window";
export default function Home() {
return <ChatWindow />;
}