"use client"; import { Thread } from "@/components/assistant-ui/thread"; import { useAui, AuiProvider, Suggestions } from "@assistant-ui/react"; function ThreadWithSuggestions() { const aui = useAui({ suggestions: Suggestions([ { title: "What can you do", label: "as a Gemini-powered agent?", prompt: "What can you do?", }, { title: "Tell me about", label: "the Google ADK framework", prompt: "Tell me about Google ADK and what it enables.", }, ]), }); return ( ); } export default function Home() { return (
); }