跳到主要内容

AI+

在微搭中,我们通过获取云开发实例来接入 AI+ 能力,支持快速接入大模型、Agent 等功能。

async function initAi() {
const app = await $w.cloud.getCloudInstance();
const ai = await app.ai();
// 接下来就可以调用 ai 模块提供的方法了
const hy = ai.createModel("hunyuan"); // 创建模型
const res = await hy.generateText({
model: "hunyuan-lite",
messages: [{ role: "user", content: "你好,请你介绍一下李白" }],
});
console.log(res.text); // 打印生成的文本
// 李白(701年-762年),字太白,号青莲居士,又号“谪仙人”,是唐代伟大的浪漫主义诗人……
}

具体使用请参考在微搭中初始化 AI SDK