TextRephrase / globals.py
SoumyaJ's picture
Changes in rephrase
0da1f7c
raw
history blame contribute delete
140 Bytes
import os
from dotenv import load_dotenv
load_dotenv()
OPENAI_API_KEY = os.getenv("OPEN_API_KEY")
OPENAI_model = "gpt-3.5-turbo-instruct"