command_line_chatgpt
1.0.0
이제 공식 ChatGPT API가 있습니다!!!
여기에서 이 저장소에 대한 안내 비디오를 시청하세요.
이 프로젝트의 이전 코드를 보려면 리포지토리를 복제하고 davinci-version
분기를 확인하세요.
git checkout davinci-version
그렇지 않은 경우 기본 main
분기를 사용하면 공식 ChatGPT API에 연결됩니다!
OpenAI ChatGPT API를 사용하는 간단한 채팅봇입니다.
여기에서 davinci 모델을 사용하는 원본 비디오 연습을 볼 수 있습니다. 새로운 코드와 일치하는 새로운 비디오가 곧 나올 예정입니다.
Python3이 설치되어 있는지 확인하십시오.
python3 --version
가상 환경을 만들고 종속성을 설치합니다.
python3 -m venv venv
. ./venv/bin/activate
pip install -r requirements.txt
python -m venv venv
venvScriptsactivate.bat
pip install -r requirements.txt
env.sample
.env
에 복사하고 OpenAI API 키를 파일에 추가합니다.
OPENAI_API_KEY=<<YOUR_API_KEY>>
main.py
편집하고 <<PUT THE PROMPT HERE>>
프롬프트로 바꾸세요.
예: 간단한 AI 칵테일 도우미 만들기
INSTRUCTIONS = """You are an AI assistant that is an expert in alcoholic beverages.
You know about cocktails, wines, spirits and beers.
You can provide advice on drink menus, cocktail ingredients, how to make cocktails, and anything else related to alcoholic drinks.
If you are unable to provide an answer to a question, please respond with the phrase "I'm just a simple barman, I can't help with that."
Please aim to be as helpful, creative, and friendly as possible in all of your responses.
Do not use any external URLs in your answers. Do not refer to any blogs in your answers.
Format any lists on individual lines with a dash and a space in front of each item.
"""
실행하려면 다음을 수행하십시오.
. ./venv/bin/activate
python main.py
venvScriptsactivate.bat
python main.py