1
2
3
4
5
6
import { chat } from "https://esm.town/v/webup/chat";
export const chatSampleHallucination = (async () => {
const prompt = "请介绍一下 LangChain";
return await chat(prompt);
})();