def chat_with_gpt(question):
import openai # OpenAI API 키 설정 api_key = "YOUR_API_KEY" # 본인의 API 키로 대체 def chat_with_gpt(question): # ChatGPT API 요청 보내기 response = openai.Completion.create( engine="text-davinci-002", # 적절한 엔진 선택 prompt=question, max_tokens=150, # 생성할 최대 토큰 수 설정 api_key=api_key ) # API 응답에서 답변 추출 answer = response.choices[0].text.strip() return answer if __name__ == "__main__": while True: user_question = inp..
시사경제지식
2023. 8. 23. 23:18