The model `gpt-4` does not exist or you do not have access to it.

openai chatgpt 文章 2023-10-07 13:05 3119 0 全屏看文

AI助手支持GPT4.0

如果提示

{
    "error": {
        "message": "The model `gpt-4` does not exist or you do not have access to it. Learn more: https://help.openai.com/en/articles/7102672-how-can-i-access-gpt-4.",
        "type": "invalid_request_error",
        "param": null,
        "code": "model_not_found"
    }
}

1. 你账户是免费账户,所以密钥没有gpt4的权限

2. 如果不是1 你就要怀疑是不是自己的代码里没有追加组织ID。

要追加:builder.header("OpenAI-Organization", 组织ID);


组织ID获取链接:https://platform.openai.com/account/org-settings

image.png

当然首先你得不是Personal的身份。



-EOF-

AI助手支持GPT4.0