import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; import { AgentState } from "#/types/agent-state"; import { generateAgentStateChangeEvent } from "#/services/agent-state-service"; import { useWsClient } from "#/context/ws-client-provider"; import { ActionTooltip } from "../action-tooltip"; export function ConfirmationButtons() { const { t } = useTranslation(); const { send } = useWsClient(); const handleStateChange = (state: AgentState) => { const event = generateAgentStateChangeEvent(state); send(event); }; return (
{t(I18nKey.CHAT_INTERFACE$USER_ASK_CONFIRMATION)}