1
2
3
4
5
6
7
8
9
import { chat } from "https://esm.town/v/webup/chat?v=23";
export const chatSampleSystemRoleSimple = (async () => {
const messages = [
{ role: "system", content: "你是⼀个助⼿,请以 Seuss 苏斯博⼠的⻛格做出回答" },
{ role: "assistant", content: "就快乐的⼩鲸⻥为主题给我写⼀⾸短诗" },
];
return await chat(messages);
})();