vision-agent / app /chat /page.tsx
MingruiZhang's picture
feat: Assistant Chat (#68)
c232e44 unverified
raw
history blame
No virus
147 Bytes
import { redirect } from 'next/navigation';
export interface PageProps {}
export default async function Page({}: PageProps) {
redirect('/');
}