import { Nebula } from "thirdweb/ai";
const wallet = createWallet("io.metamask");
const account = wallet.connect({ client });
const result = await Nebula.execute({
client,
account, // transactions will be sent from this account
messages: [
{
role: "user",
content: "send 0.0001 ETH to vitalik.eth",
},
],
contextFilter: {
chains: [sepolia],
},
});