2023-06-07 16:17:59 +04:00
|
|
|
import { type Message } from 'ai-connector'
|
2023-06-02 15:33:48 -04:00
|
|
|
import { Chat } from './chat'
|
2023-05-19 12:33:56 -04:00
|
|
|
|
2023-06-02 15:33:48 -04:00
|
|
|
export const runtime = 'edge'
|
|
|
|
|
export const preferredRegion = 'home'
|
2023-05-19 12:33:56 -04:00
|
|
|
|
|
|
|
|
export default async function IndexPage() {
|
|
|
|
|
return (
|
2023-06-07 16:17:59 +04:00
|
|
|
<div className="h-full overflow-hidden">
|
|
|
|
|
<Chat />
|
2023-05-19 12:33:56 -04:00
|
|
|
</div>
|
2023-06-02 15:33:48 -04:00
|
|
|
)
|
2023-05-19 12:33:56 -04:00
|
|
|
}
|