mohitbhardwaj commited on
Commit
29e09f6
Β·
verified Β·
1 Parent(s): 5452482

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -57,13 +57,13 @@ from datetime import datetime
57
  api_key = os.getenv("API_KEY")
58
  endpoint = os.getenv("OPENAI_API_BASE")
59
  llama_api_key = os.getenv("GROQ_API_KEY")
60
- MEM0_api_key = os.getenv("MEM0_API_KEY")
61
 
62
  # quick sanity check
63
  print("API_KEY:", "πŸ”’ set" if api_key else "❌ missing")
64
  print("API_BASE:", endpoint or "❌ missing")
65
  print("GROQ_API_KEY:", "πŸ”’ set" if llama_api_key else "❌ missing")
66
- print("MEM0_API_KEY:", "πŸ”’ set" if MEM0_api_key else "❌ missing")
67
 
68
 
69
  # Initialize the OpenAI embedding function for Chroma
 
57
  api_key = os.getenv("API_KEY")
58
  endpoint = os.getenv("OPENAI_API_BASE")
59
  llama_api_key = os.getenv("GROQ_API_KEY")
60
+ MEM0_API_KEY = os.getenv("MEM0_API_KEY")
61
 
62
  # quick sanity check
63
  print("API_KEY:", "πŸ”’ set" if api_key else "❌ missing")
64
  print("API_BASE:", endpoint or "❌ missing")
65
  print("GROQ_API_KEY:", "πŸ”’ set" if llama_api_key else "❌ missing")
66
+ print("MEM0_API_KEY:", "πŸ”’ set" if MEM0_API_KEY else "❌ missing")
67
 
68
 
69
  # Initialize the OpenAI embedding function for Chroma