OpenBIDSifier / agent.py
earrieta's picture
initial commit
7428353
raw
history blame
136 Bytes
import openai
import os
from dotenv import load_dotenv
load_dotenv()
openai.api_key = os.getenv("OPENAI_API_KEY")
client = OpenAI()