import axios from "axios";// 1. Import the libraryimport Botpoison from "@botpoison/browser";// 2. Create a new instance with your public keyconst botpoison = new Botpoison({publicKey: 'pk_xxxxxxxx'});const sendMessage = async (message) => {// 3. Process a challengeconst { solution } = await botpoison.challenge();await axios.post("https://example.demo", {message,// 4. Forward the solution_botpoison: solution,});}