일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 2164 카드2
- plotly dash
- 파이썬
- flask
- kmeans
- 플라스크
- colab runtime
- to shp
- python buildpacks
- geopandas
- convert to shp
- 알고리즘
- Chat-GPT
- 인스타그램
- string to list
- 웹페이지
- 코랩 런타임
- NLP
- 백준
- Merge Repositories
- Selenium
- clustering
- 괄호 문제
- Crawling
- 혁신성장부문
- geoDataFrame
- 크롤링
- 해시태그
- Python
- 셀레니움
Archives
- Today
- Total
코딩코딩코딩
Chat-GPT in Python (PyCharm) 본문
import openai as oa
t = "sk-~~~~~~J"
oa.api_key = t
def get_completion(prompt, model='gpt-3.5-turbo'):
messages = [{"role": "user", "content": prompt}]
response = oa.ChatCompletion.create(
model=model,
messages=messages,
temperature=0,
)
return response.choices[0].message["content"]
# prompt = "Please tell me about what is difference between chat-gpt model 3.5 and 4 in korean."
prompt = "'빨래'는 '말티푸'라는 종이고, 2kg 정도로 아주 작고 귀여운 갈색 강아지야. "
response = get_completion(prompt)
print(response)
Comments