Why can‘t I access GPT-4 models via API, although GPT-3.5 models work?

**题意:**为什么我无法通过API访问GPT-4模型,尽管GPT-3.5模型可以工作?

问题背景:

I'm able to use the gpt-3.5-turbo-0301 model to access the ChatGPT API, but not any of the gpt-4 models. Here is the code I am using to test this (it excludes my openai API key). The code runs as written, but when I replace "gpt-3.5-turbo-0301" with "gpt-4", "gpt-4-0314", or "gpt-4-32k-0314", it gives me an error

python 复制代码
openai.error.InvalidRequestError: The model: `gpt-4` does not exist

I have a ChatGPT+ subscription, am using my own API key, and can use gpt-4 successfully via OpenAI's own interface.

It's the same error if I use gpt-4-0314 or gpt-4-32k-0314. I've seen a couple articles claiming this or similar code works using 'gpt-4' works as the model specification, and the code I pasted below is from one of them.

Is it possible to access the gpt-4 model via Python + API, and if so, how?

python 复制代码
openai_key = "sk..."
openai.api_key = openai_key
system_intel = "You are GPT-4, answer my questions as if you were an expert in the field."
prompt = "Write a blog on how to use GPT-4 with python in a jupyter notebook"
# Function that calls the GPT-4 API

def ask_GPT4(system_intel, prompt): 
    result = openai.ChatCompletion.create(model="gpt-3.5-turbo-0301",
                                 messages=[{"role": "system", "content": system_intel},
                                           {"role": "user", "content": prompt}])
    print(result['choices'][0]['message']['content'])

# Call the function above
ask_GPT4(system_intel, prompt)

问题解决:

Currently the GPT 4 API is restricted, Even to users with a Chat GPT + subscription.

You may need to join the Waitlist for the API.

相关推荐
Dxy12393102162 分钟前
DrissionPage调试工具:网页自动化与数据采集的革新利器
爬虫·python·drissionpage
哪吒编程11 分钟前
重磅更新! 基于Gemini 2.5 打造的AI智能体PlantUML-X上线!
openai·gemini
量子位32 分钟前
大模型公司挖墙脚哪家强?报告:Anthropic 人才吸引力是 OpenAI 的 8 倍,留存率达 80%
openai·ai编程
不争先.1 小时前
URL 结构说明+路由(接口)的认识
python·pycharm·flask·apifox
(・Д・)ノ1 小时前
python打卡day44
人工智能·python·机器学习
胡西风_foxww1 小时前
Python 入门到进阶全指南:从语言特性到实战项目
开发语言·python·快速入门
菜是一种态度2 小时前
Python-多线程(一)
python·多线程·threading·_thread/thread
liuweidong08022 小时前
【Pandas】pandas DataFrame sample
python·数据挖掘·pandas
在荒野的梦想2 小时前
DeepSeek+SpringAI实现流式对话
java·ai
范纹杉想快点毕业2 小时前
C++抽象类与多态实战解析
java·c语言·开发语言·c++·python·qt