The React SDK provides a convenient sendText method that handles both events for you:
Copy
Ask AI
import { useConversation } from "@outspeed/react";// inside a React componentconst conversation = useConversation({});// Send text and get AI responseawait conversation.sendText("What's the weather like?");