未捕获(承诺)错误:[403]您无权访问调整后的模型tunedModels/thefine-tuned-model-f64sf654sf

问题描述 投票:0回答:2

我已经使用 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文件中。

我想让提示正常工作。请提出任何解决方案。

google-cloud-platform google-api google-oauth google-gemini
2个回答
1
投票

调整后的模型可能包含您的数据,它需要比 API 密钥更严格的访问控制。您需要使用 OAuth 凭据设置用户身份验证,如此处所述。

模型调整故障排除部分也提到了。


0
投票

打开AI Studio,进入库,选择模型,选择“授予访问权限”,选择项目,然后单击“授予访问权限”确认。

© www.soinside.com 2019 - 2024. All rights reserved.