nolanzandi's picture
Add useable demo to test functionality
7e52d7c verified
raw
history blame
317 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)