nolanzandi's picture
Table generation and download
e7b4bfb verified
raw
history blame
342 Bytes
from functions import demo
import os
from getpass import getpass
from dotenv import load_dotenv
load_dotenv()
if "OPENAI_API_KEY" not in os.environ:
os.environ["OPENAI_API_KEY"] = getpass("Enter OpenAI API key:")
## Uncomment the line below to launch the chat app with UI
demo.launch(debug=True, allowed_paths=["temp/"])