Agora existe uma API oficial do ChatGPT!!!
Assista ao vídeo passo a passo deste repositório aqui:
Se você quiser ver o código antigo deste projeto, basta clonar o repositório e verificar o branch davinci-version
.
git checkout davinci-version
Caso contrário, basta usar o branch main
padrão e você estará conectado à API oficial do ChatGPT!
Este é um chatbot simples que usa a API OpenAI ChatGPT.
Você pode assistir ao vídeo passo a passo original que usa o modelo davinci aqui. Haverá um novo vídeo em breve para corresponder ao novo código.
Certifique-se de ter o python3 instalado:
python3 --version
Crie um ambiente virtual e instale as dependências:
python3 -m venv venv
. ./venv/bin/activate
pip install -r requirements.txt
python -m venv venv
venvScriptsactivate.bat
pip install -r requirements.txt
Copie env.sample
para .env
e adicione sua chave de API OpenAI ao arquivo.
OPENAI_API_KEY=<<YOUR_API_KEY>>
Edite main.py
e substitua <<PUT THE PROMPT HERE>>
pelo seu prompt:
por exemplo, crie um assistente de coquetel AI simples
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.
"""
Para executar basta fazer o seguinte:
. ./venv/bin/activate
python main.py
venvScriptsactivate.bat
python main.py