
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
API 키 값을 넣고 영상 따라하고 있는데 계속 오류가 납니다.
작성한 코드 및 에러 메세지
!pip install gradio openai
import gradio as gr
import openai
openai.api_key ="KEY 값"
def chat_with_gpt(user_input):
user_message = {
"role": "user",
"content": user_input
}
res = openai.ChatCompletion.create(
model="gpt-3.5-turbo",
messages=[user_message]
)
return res
print(chat_with_gpt("인공지능 공부는 어떻게 하면 좋을까?"))
APIRemovedInV1:
You tried to access openai.ChatCompletion, but this is no longer supported in openai>=1.0.0 - see the README at https://github.com/openai/openai-python for the API.
You can run `openai migrate` to automatically upgrade your codebase to use the 1.0.0 interface.
Alternatively, you can pin your installation to the old version, e.g. `pip install openai==0.28`
A detailed migration guide is available here: https://github.com/openai/openai-python/discussions/742
