import React, { Fragment, use } from "react"; import ToggleSwitch from "../ToggleSwitch"; import { useController } from "react-hook-form"; type Props = { id: string; control?: any; required?: boolean; }; const CreateBotPromptInput: React.FC = ({ id, control, required }) => { const { field } = useController({ name: id, control: control, rules: { required: required }, }); return (

All conversations with this bot will start with your prompt but it will not be visible to the user in the chat. If you would like the prompt message to be visible to the user, consider using an intro message instead.