Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
8
9
10
import { chat } from "https://esm.town/v/webup/chat";
export const chatSampleFormatOutput = (async () => {
const prompt = `
请生成包括书名、作者和类别的三本虚构书籍清单,
并以 JSON 格式提供,其中包含以下键:book_id、title、author、genre,
不要输出 JSON 内容以外的其它文本
`;
return await chat(prompt);
})();
October 23, 2023