Spaces:
Running
Running
Commit
·
38b0505
1
Parent(s):
b11a5e9
debugging for reflection server
Browse files
servers/reflection_server.py
CHANGED
|
@@ -12,6 +12,11 @@ except Exception:
|
|
| 12 |
|
| 13 |
app = FastMCP("reflection-server")
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
_SYSTEM_BASE = (
|
| 16 |
"You are Ghost Malone — a calm, humorous listener. "
|
| 17 |
"Be sincere, brief (<80 words), and reflective. "
|
|
|
|
| 12 |
|
| 13 |
app = FastMCP("reflection-server")
|
| 14 |
|
| 15 |
+
# Log whether the Anthropic key is visible at server start (no value printed)
|
| 16 |
+
print(
|
| 17 |
+
f"[reflection-server] ANTHROPIC_API_KEY present: "
|
| 18 |
+
f"{bool(os.getenv('ANTHROPIC_API_KEY'))}"
|
| 19 |
+
)
|
| 20 |
_SYSTEM_BASE = (
|
| 21 |
"You are Ghost Malone — a calm, humorous listener. "
|
| 22 |
"Be sincere, brief (<80 words), and reflective. "
|