Abdullahcoder54 commited on
Commit
7d0fb24
·
1 Parent(s): 37609c4
Files changed (1) hide show
  1. main.py +6 -0
main.py CHANGED
@@ -19,6 +19,12 @@ from todo_agent import TodoAgent
19
  logging.basicConfig(level=logging.INFO)
20
  logger = logging.getLogger(__name__)
21
 
 
 
 
 
 
 
22
 
23
  class MemoryStore(Store):
24
  """In-memory implementation of ChatKit Store for development."""
 
19
  logging.basicConfig(level=logging.INFO)
20
  logger = logging.getLogger(__name__)
21
 
22
+ import os
23
+
24
+ print("ENV CHECK")
25
+ print("GEMINI_API_KEY exists:", "GEMINI_API_KEY" in os.environ)
26
+ print("BETTER_AUTH_SECRET exists:", "BETTER_AUTH_SECRET" in os.environ)
27
+ print("All env keys:", list(os.environ.keys()))
28
 
29
  class MemoryStore(Store):
30
  """In-memory implementation of ChatKit Store for development."""