File size: 317 Bytes
24371db 7e52d7c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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)
|