1
2
3
4
5
6
import { chat } from "https://esm.town/v/webup/chat";
export const chatSampleReverseToken = (async () => {
const prompt = "Take the letters in lollipop and reverse them";
return await chat(prompt);
})();