CosmoAI commited on
Commit
dc25b8e
·
1 Parent(s): db6fc04

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,8 +1,9 @@
1
  import google.generativeai as palm
2
  import streamlit as st
 
3
 
4
  # Set your API key
5
- palm.configure(api_key='PALM_KEY')
6
 
7
  # Select the PaLM 2 model
8
  model = 'models/text-bison-001'
 
1
  import google.generativeai as palm
2
  import streamlit as st
3
+ import os
4
 
5
  # Set your API key
6
+ palm.configure(api_key=os.environ['PALM_KEY'])
7
 
8
  # Select the PaLM 2 model
9
  model = 'models/text-bison-001'