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

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?

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.

相关推荐

  1. 算法训练营Day35(贪心4

    2024-07-16 15:52:03       53 阅读
  2. STM<span style='color:red;'>32</span>L<span style='color:red;'>4</span>

    STM32L4

    2024-07-16 15:52:03      52 阅读
  3. ARM<span style='color:red;'>32</span>day<span style='color:red;'>4</span>

    ARM32day4

    2024-07-16 15:52:03      35 阅读
  4. 324.12 作业题

    2024-07-16 15:52:03       31 阅读
  5. 4.30进程

    2024-07-16 15:52:03       23 阅读
  6. MySQL Binlog Digger 4.31

    2024-07-16 15:52:03       56 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-16 15:52:03       67 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-16 15:52:03       72 阅读
  3. 在Django里面运行非项目文件

    2024-07-16 15:52:03       58 阅读
  4. Python语言-面向对象

    2024-07-16 15:52:03       69 阅读

热门阅读

  1. 【Go系列】Go的反射

    2024-07-16 15:52:03       20 阅读
  2. 量化机器人如何实现投资自动化?

    2024-07-16 15:52:03       18 阅读
  3. 近源渗透简介

    2024-07-16 15:52:03       20 阅读
  4. web自动化(七)POM设计模式

    2024-07-16 15:52:03       20 阅读
  5. 移动端 图片优化

    2024-07-16 15:52:03       16 阅读
  6. Python中的random模块及相关模块详解

    2024-07-16 15:52:03       21 阅读
  7. 算力是什么?人工智能需要用到算力吗

    2024-07-16 15:52:03       23 阅读
  8. Android焦点之FocusWindow切换流程

    2024-07-16 15:52:03       20 阅读