728x90
1. openai api key 발급
https://platform.openai.com/account/api-keys
2. 챗GPT API 관련 document
https://platform.openai.com/docs/guides/chat
https://platform.openai.com/docs/api-reference/chat
3. content 쪽에 질문할 내용 입력하면 아래와 같이 결과를 확인할 수 있고,
json 결과가 한글의 경우 유니코드로 리턴되어서 encode 하려다가, 그냥 print 찍으니 한글로 잘 나온다.
import openai
openai.api_key = "api_key 입력"
response = openai.ChatCompletion.create(
model="gpt-3.5-turbo",
messages=[
{"role": "user", "content": "너는 누구야?"}
]
)
print(response.get("choices")[0].get("message").get("content"))
728x90
'Python' 카테고리의 다른 글
알비온 온라인 자동 낚시 봇, 오토(albion fishing bot) (3) | 2023.06.05 |
---|---|
챗GPT ChatGPT api 한글 token 계산 카운트 (0) | 2023.03.15 |
Timestamp for this request was 1000ms ahead of the server's time. (0) | 2023.02.23 |
바이낸스 usd-m 실시간 funding rate 조회 (0) | 2023.02.21 |
바이낸스 usd-m funding rate 조회 사이트 (0) | 2023.02.21 |