pull/13/head
Felix Boehme 2023-04-14 17:49:09 -04:00
rodzic e1d0a790f8
commit 4db9d1bf43
2 zmienionych plików z 2 dodań i 2 usunięć

2
.gitignore vendored
Wyświetl plik

@ -1,5 +1,5 @@
venv venv
openai_key.txt .venv
.env .env
env/ env/
.vscode/ .vscode/

Wyświetl plik

@ -6,11 +6,11 @@ import shutil
import subprocess import subprocess
import sys import sys
import openai import openai
from termcolor import cprint from termcolor import cprint
from dotenv import load_dotenv from dotenv import load_dotenv
# Set up the OpenAI API
load_dotenv() load_dotenv()
openai.api_key = os.getenv("OPENAI_API_KEY") openai.api_key = os.getenv("OPENAI_API_KEY")