1
2
3
4
5
6
import { chat } from "https://esm.town/v/webup/chat";
export const chatSampleHallucinationExit = (async () => {
const prompt = "请介绍一下 LangChain,如果你不清楚请直接回答“我不知道”";
return await chat(prompt);
})();