커뮤니티
포인트
쿠폰
내 강의실
국비 신청 내역
증명서
계정
로그아웃
학습 질문
개발 일지
나의 활동
답변 완료
3-3 . Chat-gpt 사용하게 강의에서 에러가 납니다. open API 연동 오류인가요? 아니면 오타인지?
AI가 처음이어도 쉽게 배우는 생성형 AI A to Z v0
3주차
북마크
이*호
댓글
3
추천
0
조회수
9
조회수
9
답변 완료

* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.

* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.


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




취소
 공유
취소
댓글 0
댓글 알림
나의얼굴