minh-4T commited on
Commit
d6a6d46
·
verified ·
1 Parent(s): b0da662

remove extra character

Browse files
Files changed (1) hide show
  1. core/config.py +2 -2
core/config.py CHANGED
@@ -9,8 +9,8 @@ try:
9
  except Exception:
10
  pass
11
 
12
- GROQ_API_KEYS = os.getenv('GROQ_API_KEYS', os.getenv('GROQ_API_KEY', ''))
13
- GEMINI_API_KEYS = os.getenv('GEMINI_API_KEYS', '')
14
 
15
  # Name models
16
  LLM_MODEL = os.getenv('LLM_MODEL', 'llama-3.1-70b-versatile')
 
9
  except Exception:
10
  pass
11
 
12
+ GROQ_API_KEYS = os.getenv('GROQ_API_KEYS', os.getenv('GROQ_API_KEY', '')).strip()
13
+ GEMINI_API_KEYS = os.getenv('GEMINI_API_KEYS', '').strip()
14
 
15
  # Name models
16
  LLM_MODEL = os.getenv('LLM_MODEL', 'llama-3.1-70b-versatile')