¡¡¡Ahora hay una API ChatGPT oficial!!!
Mire el vídeo explicativo de este repositorio aquí:
Si desea ver el código antiguo de este proyecto, simplemente clone el repositorio y consulte la rama davinci-version
.
git checkout davinci-version
De lo contrario, simplemente use la rama main
predeterminada y estará conectado a la API oficial de ChatGPT.
Este es un chatbot simple que utiliza la API OpenAI ChatGPT.
Puede ver el video tutorial original que utiliza el modelo davinci aquí. Próximamente habrá un nuevo vídeo que coincida con el nuevo código.
Asegúrate de tener python3 instalado:
python3 --version
Cree un entorno virtual e instale las dependencias:
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
a .env
y agregue su clave API de OpenAI al archivo.
OPENAI_API_KEY=<<YOUR_API_KEY>>
Edite main.py
y reemplace <<PUT THE PROMPT HERE>>
con su mensaje:
por ejemplo, crear un sencillo asistente de cócteles con IA
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 ejecutar simplemente haga lo siguiente:
. ./venv/bin/activate
python main.py
venvScriptsactivate.bat
python main.py