// import { UseChatHelpers } from '@aigxion/isdk' import { Button } from './ui/button' import { ExternalLink } from './external-link' import { IconArrowRight } from './ui/icons' const exampleMessages = [ { heading: 'Explain technical concepts', message: `What is a "serverless function"?` }, { heading: 'Summarize an article', message: 'Summarize the following article for a 2nd grader: \n' }, { heading: 'Draft an email', message: `Draft an email to my boss about the following: \n` } ] export function EmptyScreen() { return (

Welcome to Next.js AI Chatbot!

This is an open source AI chatbot app template built with{' '} Next.js, the{' '} Vercel AI SDK , and{' '} Vercel KV .

It uses{' '} React Server Components {' '} to combine text with generative UI as output of the LLM. The UI state is synced through the SDK so the model is aware of your interactions as they happen.

) }