일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Merge Repositories
- 해시태그
- geopandas
- 플라스크
- kmeans
- clustering
- colab runtime
- plotly dash
- string to list
- to shp
- convert to shp
- Crawling
- Selenium
- flask
- 웹페이지
- 파이썬
- Chat-GPT
- 인스타그램
- 크롤링
- geoDataFrame
- 셀레니움
- 알고리즘
- 코랩 런타임
- 백준
- python buildpacks
- Python
- 혁신성장부문
- NLP
Archives
- Today
- Total
목록Chat-GPT (1)
코딩코딩코딩
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 = "'빨래'는 '..
파이썬/Chat-GPT
2023. 8. 7. 23:35