Spaces:
Sleeping
Sleeping
Commit ·
c674025
1
Parent(s): f270920
Fix indentation issues and add comprehensive .gitignore
Browse files
client.py
CHANGED
|
@@ -47,8 +47,8 @@ def setup_environment():
|
|
| 47 |
print("💡 Set environment variable: FOURSQUARE_API_KEY=your_foursquare_key")
|
| 48 |
else:
|
| 49 |
# Set in environment if not already set
|
| 50 |
-
|
| 51 |
-
|
| 52 |
|
| 53 |
# Validate Anthropic API key - NO HARDCODED FALLBACK
|
| 54 |
if not ANTHROPIC_API_KEY:
|
|
|
|
| 47 |
print("💡 Set environment variable: FOURSQUARE_API_KEY=your_foursquare_key")
|
| 48 |
else:
|
| 49 |
# Set in environment if not already set
|
| 50 |
+
if 'FOURSQUARE_API_KEY' not in os.environ:
|
| 51 |
+
os.environ['FOURSQUARE_API_KEY'] = FOURSQUARE_API_KEY
|
| 52 |
|
| 53 |
# Validate Anthropic API key - NO HARDCODED FALLBACK
|
| 54 |
if not ANTHROPIC_API_KEY:
|