我在微信小程序开发中的本地页面复制粘贴了微信提供的大模型API调用代码,运行到const aiModel = ai.createModel("dashscope");报错TypeError: Co[e] is not a constructor,是我哪里引用示例代码不正确吗?我也试了放在云函数上面但是云函数不能import包
全部代码如下:
import cloudbase from "@cloudbase/js-sdk/app";
import { registerAuth } from "@cloudbase/js-sdk/auth";
import { registerAi } from "@cloudbase/js-sdk/ai";se);
registerAi(cloudbase);
const app = cloudbase.init({ env });
const auth = app.auth({ persistence: "local" });
await auth.signInWithOpenId(); // 或者使用其他登录方式
const ai = await app.ai();
console.log(ai);
const aiModel = ai.createModel("dashscope"); // 创建模型
不能import,还不能require?