import { useSession } from "next-auth/react"; import React from "react"; import { ExampleAgentButton } from "./ExampleAgentButton"; import { useSID } from "../../hooks/useSID"; import FadeIn from "../motions/FadeIn"; type ExampleAgentsProps = { setAgentRun?: (name: string, goal: string) => void; setShowSignIn: (show: boolean) => void; }; const ExampleAgents = ({ setAgentRun, setShowSignIn }: ExampleAgentsProps) => { const { data: session } = useSession(); const sid = useSID(session); return ( <>
Plan a detailed trip to Hawaii Create a study plan for an intro to Calculus exam Create a comprehensive report for how to scale a startup to 1000 customers
); }; export default ExampleAgents;