文档
使用聊天
SDK 方法,例如 model.respond()
、model.applyPromptTemplate()
或 model.act()
接受一个聊天参数作为输入。在 SDK 中有几种表示聊天的方式。
您可以使用消息数组来表示聊天。这是一个使用 .respond()
方法的示例。
const prediction = model.respond([
{ role: "system", content: "You are a resident AI philosopher." },
{ role: "user", content: "What is the meaning of life?" },
]);
如果您的聊天只有一个用户消息,则可以使用单个字符串来表示聊天。这是一个使用 .respond
方法的示例。
const prediction = model.respond("What is the meaning of life?");
Chat
辅助类对于更复杂的任务,建议使用 Chat
辅助类。它提供了各种常用的方法来管理聊天。这是一个使用 Chat
类的示例。
const chat = Chat.empty();
chat.append("system", "You are a resident AI philosopher.");
chat.append("user", "What is the meaning of life?");
const prediction = model.respond(chat);
您还可以使用 Chat.from
方法快速构建 Chat
对象。
const chat = Chat.from([
{ role: "system", content: "You are a resident AI philosopher." },
{ role: "user", content: "What is the meaning of life?" },
]);