OdinStef commited on
Commit
2d07c9c
·
1 Parent(s): 9892b77

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,7 +1,8 @@
1
  import openai
 
2
  import gradio as gr
3
 
4
- openai.api_key = os.getenv(mykey)
5
 
6
  messages = [{"role": "system", "content": "You are a financial experts that specializes in real estate investment and negotiation"}]
7
 
 
1
  import openai
2
+ import os
3
  import gradio as gr
4
 
5
+ openai.api_key = os.getenv("mykey")
6
 
7
  messages = [{"role": "system", "content": "You are a financial experts that specializes in real estate investment and negotiation"}]
8