chatbot-template/app/page.tsx
2023-06-07 16:17:59 +04:00

13 lines
276 B
TypeScript

import { type Message } from 'ai-connector'
import { Chat } from './chat'
export const runtime = 'edge'
export const preferredRegion = 'home'
export default async function IndexPage() {
return (
<div className="h-full overflow-hidden">
<Chat />
</div>
)
}