girishwangikar commited on
Commit
bd5645e
1 Parent(s): 345d8ff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -18,9 +18,7 @@ from io import BytesIO
18
  # Set the base directory
19
  BASE_DIR = os.getcwd()
20
 
21
- # Set up API keys (you'll need to set these as environment variables in Hugging Face Spaces)
22
- hf_api_key = os.environ.get('HF_TOKEN')
23
- groq_api_key = os.environ.get('GROQ_API_KEY')
24
 
25
  # Set up LLM and Flux client
26
  llm = ChatGroq(temperature=0, model_name='llama-3.1-8b-instant', groq_api_key=groq_api_key)
 
18
  # Set the base directory
19
  BASE_DIR = os.getcwd()
20
 
21
+ GROQ_API_KEY = os.environ.get('GROQ_API_KEY')
 
 
22
 
23
  # Set up LLM and Flux client
24
  llm = ChatGroq(temperature=0, model_name='llama-3.1-8b-instant', groq_api_key=groq_api_key)