lugiiing commited on
Commit
8234418
1 Parent(s): 81ff909

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -34,8 +34,8 @@ api_key = st.text_input(label='openAI의 api key를 입력하세요.', placehold
34
 
35
 
36
  if api_key:
37
- openai.api_key = api_key
38
- client = openai.Client()
39
  else:
40
  st.warning("유효한 API 키를 입력해 주세요.")
41
  client = None # client 변수를 None으로 초기화
 
34
 
35
 
36
  if api_key:
37
+ client = OpenAI(api_key=api_key)
38
+
39
  else:
40
  st.warning("유효한 API 키를 입력해 주세요.")
41
  client = None # client 변수를 None으로 초기화