Sobit commited on
Commit
10c1c0a
1 Parent(s): 0986a31

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -10,8 +10,8 @@ import gradio as gr
10
 
11
 
12
  # Set up API keys
13
- litellm.api_key = "AIzaSyAlNlvB2unkbmkL6zweKVkjYEOVqIgovw4"
14
- os.environ['SERPER_API_KEY'] = "d9295b6ec268aad1fa375484f1e3ce556329973d"
15
 
16
  # Define the LLM
17
  llm = "gemini/gemini-1.5-flash-exp-0827" # Your LLM model
 
10
 
11
 
12
  # Set up API keys
13
+ litellm.api_key = os.getenv('GOOGLE_API_KEY')
14
+ os.environ['SERPER_API_KEY'] = os.getenv('SERPER_API_KEY')
15
 
16
  # Define the LLM
17
  llm = "gemini/gemini-1.5-flash-exp-0827" # Your LLM model