23 lines
610 B
TypeScript
23 lines
610 B
TypeScript
import { nanoid } from '@/lib/utils'
|
|
import { Chat } from '@/components-ai/chat'
|
|
import { AI } from '@/lib/chat/actions'
|
|
import { auth } from '@/auth'
|
|
import { Session } from '@/lib/types'
|
|
import { getMissingKeys } from '../../actions'
|
|
|
|
// export const metadata = {
|
|
// title: 'Next.js AI Chatbot'
|
|
// }
|
|
|
|
export default async function IndexPage() {
|
|
const id = nanoid()
|
|
const session = (await auth()) as Session
|
|
const missingKeys = await getMissingKeys()
|
|
|
|
return (
|
|
<AI initialAIState={{ chatId: id, messages: [] }}>
|
|
<Chat id={id} session={session} missingKeys={missingKeys} />
|
|
</AI>
|
|
)
|
|
}
|