JAMESPARK3 commited on
Commit
4fef170
·
verified ·
1 Parent(s): 50cc50e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -9,6 +9,9 @@ import time
9
  import plotly.io as pio
10
  import httpx
11
  import google.generativeai as genai
 
 
 
12
  genai.configure(api_key=GEMINI_API_KEY)
13
 
14
 
 
9
  import plotly.io as pio
10
  import httpx
11
  import google.generativeai as genai
12
+
13
+ # API 키 설정
14
+ GEMINI_API_KEY = os.environ.get('GEMINI_API_KEY')
15
  genai.configure(api_key=GEMINI_API_KEY)
16
 
17