Update app.py
Browse files
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 |
-
|
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
|
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
|