How to Hide the "AI Agent Chat" Admin Menu

function plt_hide_ai_agent_chat_jotform_menus() {
	//Hide the "Settings → AI Agent Chat" menu.
	remove_submenu_page('options-general.php', 'ai-agent');
}

add_action('admin_menu', 'plt_hide_ai_agent_chat_jotform_menus', 11);

Where do I put this code?