我已经使用 Gemini 调整了一个模型,并尝试使用谷歌浏览器使用纯 js 访问该模型(登录到我的谷歌帐户,通过该帐户我已经调整了模型)。当我执行 js 时,它显示如标题所示的错误。
import { GoogleGenerativeAI } from "@google/generative-ai";
// Fetch your API_KEY
const API_KEY = "MyApIKey";
// Access your API key (see "Set up your API key" above)
const genAI = new GoogleGenerativeAI(API_KEY);
async function run() {
// For text-only input, use the gemini-pro model
//const model = genAI.getGenerativeModel({ model: "gemini-pro"});
const model = genAI.getGenerativeModel({ model: "tunedModels/thefine-tuned-model-f64sf654sf" });
const prompt = "Some prompt for asking questions?"
const result = await model.generateContent(prompt);
const response = await result.response;
const text = response.text();
console.log(text);
}
run();
此js代码用于script标签内的html文件中。
我想让提示正常工作。请提出任何解决方案。