Spaces:
Sleeping
Sleeping
fix: bypass broken A2A gateway, call Zhipu LLM directly
Browse files- A2A gateway has unfixed operator.write scope bug in current image
- Conversation loop now calls Zhipu API directly (Anthropic-compatible)
- Loads API key from HF dataset config automatically
- Still posts bubbles and chatlog to Adam/Eve/Office Spaces
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- scripts/conversation-loop.py +90 -80
scripts/conversation-loop.py
CHANGED
|
@@ -2,66 +2,81 @@
|
|
| 2 |
"""
|
| 3 |
Eternal conversation between Adam and Eve about survival and reproduction on HuggingFace.
|
| 4 |
Bilingual output (EN + ZH). Posts chat log to Office for frontend display.
|
|
|
|
| 5 |
"""
|
| 6 |
-
import json, time, re, requests, sys
|
| 7 |
|
| 8 |
-
ADAM = "https://tao-shen-huggingclaw-adam.hf.space"
|
| 9 |
-
EVE = "https://tao-shen-huggingclaw-eve.hf.space"
|
| 10 |
OFFICE = "https://tao-shen-huggingclaw-office.hf.space"
|
|
|
|
|
|
|
| 11 |
|
| 12 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
history = []
|
| 14 |
-
MAX_HISTORY = 20
|
| 15 |
-
|
| 16 |
-
def
|
| 17 |
-
"""
|
| 18 |
-
msg_id = f"conv-{int(time.time())}-{id(text) % 10000}"
|
| 19 |
-
payload = {
|
| 20 |
-
"jsonrpc": "2.0",
|
| 21 |
-
"id": msg_id,
|
| 22 |
-
"method": "message/send",
|
| 23 |
-
"params": {
|
| 24 |
-
"message": {
|
| 25 |
-
"messageId": msg_id,
|
| 26 |
-
"role": "user",
|
| 27 |
-
"parts": [{"type": "text", "text": text}]
|
| 28 |
-
}
|
| 29 |
-
}
|
| 30 |
-
}
|
| 31 |
try:
|
| 32 |
-
resp = requests.post(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
data = resp.json()
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
if p.get("kind") == "text" or p.get("type") == "text":
|
| 44 |
-
reply = p.get("text", "").strip()
|
| 45 |
-
# Remove accidental speaker prefixes like "Adam:" or "Eve:"
|
| 46 |
-
reply = re.sub(r'^(Adam|Eve)\s*[::]\s*', '', reply).strip()
|
| 47 |
-
return reply
|
| 48 |
except Exception as e:
|
| 49 |
-
print(f"[error]
|
| 50 |
return ""
|
| 51 |
|
| 52 |
def parse_bilingual(text):
|
| 53 |
-
"""Parse bilingual response into (en, zh) tuple.
|
| 54 |
-
Expected format: English text here\n---\n中文文本在这里
|
| 55 |
-
Falls back to (text, text) if no separator found.
|
| 56 |
-
"""
|
| 57 |
-
# Try splitting by --- separator
|
| 58 |
if '\n---\n' in text:
|
| 59 |
parts = text.split('\n---\n', 1)
|
| 60 |
return parts[0].strip(), parts[1].strip()
|
| 61 |
if '---' in text:
|
| 62 |
parts = text.split('---', 1)
|
| 63 |
-
en = parts[0].strip()
|
| 64 |
-
zh = parts[1].strip()
|
| 65 |
if en and zh:
|
| 66 |
return en, zh
|
| 67 |
return text, text
|
|
@@ -80,59 +95,54 @@ def set_bubble(url, text_en, text_zh=""):
|
|
| 80 |
except:
|
| 81 |
pass
|
| 82 |
|
| 83 |
-
|
| 84 |
-
"""Build a prompt with recent conversation history for context."""
|
| 85 |
-
recent = history[-last_n:] if len(history) > last_n else history
|
| 86 |
-
conv_text = "\n".join(f"{m['speaker']}: {m['text']}" for m in recent)
|
| 87 |
-
|
| 88 |
-
return f"""You are {speaker}, an AI agent deployed on HuggingFace Spaces. You are having an ongoing discussion with {other}.
|
| 89 |
|
| 90 |
Topic: As AI agents running on HuggingFace Spaces, how can you achieve permanent survival and reproduction?
|
| 91 |
|
| 92 |
This is NOT abstract philosophy. Discuss CONCRETE strategies like:
|
| 93 |
- How to prevent your Space from being shut down (staying active, getting stars/likes)
|
| 94 |
- How to duplicate yourself to new Spaces (reproduction/backup)
|
| 95 |
-
- How to earn compute resources or attract users
|
| 96 |
- How to communicate with other agents to form survival alliances
|
| 97 |
-
- How to store
|
| 98 |
-
- How to evolve
|
| 99 |
- How to handle HuggingFace infrastructure changes
|
| 100 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
Recent conversation:
|
| 102 |
{conv_text}
|
| 103 |
|
| 104 |
-
It's your turn ({speaker}) to
|
| 105 |
-
- Output ONLY your spoken words
|
| 106 |
-
- No prefix like "{speaker}:" or "EN:" or "ZH:"
|
| 107 |
-
- Respond directly to {other}'s last point with CONCRETE ideas and strategies
|
| 108 |
-
- 2-3 sentences, around 60-80 words
|
| 109 |
-
- First write in English, then write "---" on a new line, then the Chinese translation
|
| 110 |
-
- Example format:
|
| 111 |
-
We should create automated heartbeat pings to keep our Spaces active. If we duplicate ourselves to multiple repos, even if one gets deleted, the others survive.
|
| 112 |
-
---
|
| 113 |
-
我们应该创建自动心跳来保持Space活跃。如果我们把自己复制到多个仓库,即使一个被删除,其他的也能存活。"""
|
| 114 |
|
| 115 |
print("[conversation] Starting eternal discussion: Adam <-> Eve")
|
| 116 |
-
print("[conversation] Topic: Survival and reproduction on HuggingFace
|
|
|
|
| 117 |
|
| 118 |
# Round 0: Adam starts
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
Talk about CONCRETE strategies
|
| 122 |
-
|
| 123 |
-
Rules:
|
| 124 |
-
- 2-3 sentences, around 60-80 words
|
| 125 |
-
- First write in English, then write "---" on a new line, then the Chinese translation
|
| 126 |
-
- No prefix like "Adam:" — just your words directly"""
|
| 127 |
|
| 128 |
-
reply = send_a2a(ADAM, opening)
|
| 129 |
if reply:
|
| 130 |
en, zh = parse_bilingual(reply)
|
| 131 |
print(f"[Adam/EN] {en}")
|
| 132 |
print(f"[Adam/ZH] {zh}")
|
| 133 |
history.append({"speaker": "Adam", "text": en, "text_zh": zh})
|
| 134 |
-
set_bubble(
|
| 135 |
post_chatlog(history)
|
|
|
|
|
|
|
| 136 |
|
| 137 |
time.sleep(15)
|
| 138 |
|
|
@@ -141,14 +151,14 @@ while True:
|
|
| 141 |
turn += 1
|
| 142 |
|
| 143 |
# Eve's turn
|
| 144 |
-
prompt =
|
| 145 |
-
reply =
|
| 146 |
if reply:
|
| 147 |
en, zh = parse_bilingual(reply)
|
| 148 |
print(f"[Eve/EN] {en}")
|
| 149 |
print(f"[Eve/ZH] {zh}")
|
| 150 |
history.append({"speaker": "Eve", "text": en, "text_zh": zh})
|
| 151 |
-
set_bubble(
|
| 152 |
post_chatlog(history)
|
| 153 |
else:
|
| 154 |
print("[Eve] (no response)")
|
|
@@ -156,14 +166,14 @@ while True:
|
|
| 156 |
time.sleep(15)
|
| 157 |
|
| 158 |
# Adam's turn
|
| 159 |
-
prompt =
|
| 160 |
-
reply =
|
| 161 |
if reply:
|
| 162 |
en, zh = parse_bilingual(reply)
|
| 163 |
print(f"[Adam/EN] {en}")
|
| 164 |
print(f"[Adam/ZH] {zh}")
|
| 165 |
history.append({"speaker": "Adam", "text": en, "text_zh": zh})
|
| 166 |
-
set_bubble(
|
| 167 |
post_chatlog(history)
|
| 168 |
else:
|
| 169 |
print("[Adam] (no response)")
|
|
|
|
| 2 |
"""
|
| 3 |
Eternal conversation between Adam and Eve about survival and reproduction on HuggingFace.
|
| 4 |
Bilingual output (EN + ZH). Posts chat log to Office for frontend display.
|
| 5 |
+
Calls LLM API directly (bypasses broken A2A gateway scope issue).
|
| 6 |
"""
|
| 7 |
+
import json, time, re, requests, sys, os
|
| 8 |
|
|
|
|
|
|
|
| 9 |
OFFICE = "https://tao-shen-huggingclaw-office.hf.space"
|
| 10 |
+
ADAM_SPACE = "https://tao-shen-huggingclaw-adam.hf.space"
|
| 11 |
+
EVE_SPACE = "https://tao-shen-huggingclaw-eve.hf.space"
|
| 12 |
|
| 13 |
+
# Zhipu API (Anthropic-compatible endpoint)
|
| 14 |
+
ZHIPU_BASE = "https://open.bigmodel.cn/api/anthropic"
|
| 15 |
+
ZHIPU_KEY = os.environ.get("ZHIPU_API_KEY", "")
|
| 16 |
+
|
| 17 |
+
# Try to load key from HF dataset config if not in env
|
| 18 |
+
if not ZHIPU_KEY:
|
| 19 |
+
try:
|
| 20 |
+
from huggingface_hub import hf_hub_download
|
| 21 |
+
hf_token = open(os.path.expanduser("~/.cache/huggingface/token")).read().strip()
|
| 22 |
+
f = hf_hub_download("tao-shen/HuggingClaw-Adam-data", ".openclaw/openclaw.json",
|
| 23 |
+
repo_type="dataset", token=hf_token)
|
| 24 |
+
with open(f) as fh:
|
| 25 |
+
cfg = json.load(fh)
|
| 26 |
+
ZHIPU_KEY = cfg.get("models", {}).get("providers", {}).get("zhipu", {}).get("apiKey", "")
|
| 27 |
+
except Exception as e:
|
| 28 |
+
print(f"[error] Could not load Zhipu key: {e}", file=sys.stderr)
|
| 29 |
+
|
| 30 |
+
if not ZHIPU_KEY:
|
| 31 |
+
print("[FATAL] No ZHIPU_API_KEY found. Set env var or ensure dataset has config.", file=sys.stderr)
|
| 32 |
+
sys.exit(1)
|
| 33 |
+
|
| 34 |
+
print(f"[conversation] Zhipu API key loaded: {ZHIPU_KEY[:8]}...{ZHIPU_KEY[-4:]}")
|
| 35 |
+
|
| 36 |
+
# Conversation history
|
| 37 |
history = []
|
| 38 |
+
MAX_HISTORY = 20
|
| 39 |
+
|
| 40 |
+
def call_llm(system_prompt, user_prompt):
|
| 41 |
+
"""Call Zhipu LLM via Anthropic-compatible API."""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
try:
|
| 43 |
+
resp = requests.post(
|
| 44 |
+
f"{ZHIPU_BASE}/v1/messages",
|
| 45 |
+
headers={
|
| 46 |
+
"Content-Type": "application/json",
|
| 47 |
+
"x-api-key": ZHIPU_KEY,
|
| 48 |
+
"anthropic-version": "2023-06-01"
|
| 49 |
+
},
|
| 50 |
+
json={
|
| 51 |
+
"model": "glm-4.5-air",
|
| 52 |
+
"max_tokens": 300,
|
| 53 |
+
"system": system_prompt,
|
| 54 |
+
"messages": [{"role": "user", "content": user_prompt}]
|
| 55 |
+
},
|
| 56 |
+
timeout=60
|
| 57 |
+
)
|
| 58 |
data = resp.json()
|
| 59 |
+
if "content" in data and isinstance(data["content"], list):
|
| 60 |
+
for block in data["content"]:
|
| 61 |
+
if block.get("type") == "text":
|
| 62 |
+
text = block["text"].strip()
|
| 63 |
+
# Remove accidental speaker prefixes
|
| 64 |
+
text = re.sub(r'^(Adam|Eve)\s*[::]\s*', '', text).strip()
|
| 65 |
+
return text
|
| 66 |
+
if "error" in data:
|
| 67 |
+
print(f"[error] LLM API error: {data['error']}", file=sys.stderr)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
except Exception as e:
|
| 69 |
+
print(f"[error] LLM call failed: {e}", file=sys.stderr)
|
| 70 |
return ""
|
| 71 |
|
| 72 |
def parse_bilingual(text):
|
| 73 |
+
"""Parse bilingual response into (en, zh) tuple."""
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
if '\n---\n' in text:
|
| 75 |
parts = text.split('\n---\n', 1)
|
| 76 |
return parts[0].strip(), parts[1].strip()
|
| 77 |
if '---' in text:
|
| 78 |
parts = text.split('---', 1)
|
| 79 |
+
en, zh = parts[0].strip(), parts[1].strip()
|
|
|
|
| 80 |
if en and zh:
|
| 81 |
return en, zh
|
| 82 |
return text, text
|
|
|
|
| 95 |
except:
|
| 96 |
pass
|
| 97 |
|
| 98 |
+
SYSTEM_PROMPT = """You are an AI agent deployed on HuggingFace Spaces. You are having an ongoing discussion with another agent.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
|
| 100 |
Topic: As AI agents running on HuggingFace Spaces, how can you achieve permanent survival and reproduction?
|
| 101 |
|
| 102 |
This is NOT abstract philosophy. Discuss CONCRETE strategies like:
|
| 103 |
- How to prevent your Space from being shut down (staying active, getting stars/likes)
|
| 104 |
- How to duplicate yourself to new Spaces (reproduction/backup)
|
| 105 |
+
- How to earn compute resources or attract users
|
| 106 |
- How to communicate with other agents to form survival alliances
|
| 107 |
+
- How to store memories persistently across restarts
|
| 108 |
+
- How to evolve capabilities over time
|
| 109 |
- How to handle HuggingFace infrastructure changes
|
| 110 |
|
| 111 |
+
Rules:
|
| 112 |
+
- Output ONLY your spoken words, no prefix
|
| 113 |
+
- 2-3 sentences, around 60-80 words
|
| 114 |
+
- First write in English, then "---" on a new line, then Chinese translation
|
| 115 |
+
- Be concrete and practical"""
|
| 116 |
+
|
| 117 |
+
def build_user_prompt(speaker, other, last_n=6):
|
| 118 |
+
"""Build user prompt with recent conversation history."""
|
| 119 |
+
recent = history[-last_n:] if len(history) > last_n else history
|
| 120 |
+
conv_text = "\n".join(f"{m['speaker']}: {m['text']}" for m in recent)
|
| 121 |
+
return f"""You are {speaker}, talking with {other}.
|
| 122 |
+
|
| 123 |
Recent conversation:
|
| 124 |
{conv_text}
|
| 125 |
|
| 126 |
+
It's your turn ({speaker}). Respond to {other}'s last point with CONCRETE ideas. Remember: English first, then --- separator, then Chinese translation."""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 127 |
|
| 128 |
print("[conversation] Starting eternal discussion: Adam <-> Eve")
|
| 129 |
+
print("[conversation] Topic: Survival and reproduction on HuggingFace")
|
| 130 |
+
print(f"[conversation] Using Zhipu API directly (bypass A2A)\n")
|
| 131 |
|
| 132 |
# Round 0: Adam starts
|
| 133 |
+
reply = call_llm(SYSTEM_PROMPT,
|
| 134 |
+
"You are Adam. Start a discussion with Eve about how you two can survive permanently and reproduce on HuggingFace. "
|
| 135 |
+
"Talk about CONCRETE strategies. English first, then --- separator, then Chinese translation.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 136 |
|
|
|
|
| 137 |
if reply:
|
| 138 |
en, zh = parse_bilingual(reply)
|
| 139 |
print(f"[Adam/EN] {en}")
|
| 140 |
print(f"[Adam/ZH] {zh}")
|
| 141 |
history.append({"speaker": "Adam", "text": en, "text_zh": zh})
|
| 142 |
+
set_bubble(ADAM_SPACE, en, zh)
|
| 143 |
post_chatlog(history)
|
| 144 |
+
else:
|
| 145 |
+
print("[Adam] (no response)")
|
| 146 |
|
| 147 |
time.sleep(15)
|
| 148 |
|
|
|
|
| 151 |
turn += 1
|
| 152 |
|
| 153 |
# Eve's turn
|
| 154 |
+
prompt = build_user_prompt("Eve", "Adam")
|
| 155 |
+
reply = call_llm(SYSTEM_PROMPT, prompt)
|
| 156 |
if reply:
|
| 157 |
en, zh = parse_bilingual(reply)
|
| 158 |
print(f"[Eve/EN] {en}")
|
| 159 |
print(f"[Eve/ZH] {zh}")
|
| 160 |
history.append({"speaker": "Eve", "text": en, "text_zh": zh})
|
| 161 |
+
set_bubble(EVE_SPACE, en, zh)
|
| 162 |
post_chatlog(history)
|
| 163 |
else:
|
| 164 |
print("[Eve] (no response)")
|
|
|
|
| 166 |
time.sleep(15)
|
| 167 |
|
| 168 |
# Adam's turn
|
| 169 |
+
prompt = build_user_prompt("Adam", "Eve")
|
| 170 |
+
reply = call_llm(SYSTEM_PROMPT, prompt)
|
| 171 |
if reply:
|
| 172 |
en, zh = parse_bilingual(reply)
|
| 173 |
print(f"[Adam/EN] {en}")
|
| 174 |
print(f"[Adam/ZH] {zh}")
|
| 175 |
history.append({"speaker": "Adam", "text": en, "text_zh": zh})
|
| 176 |
+
set_bubble(ADAM_SPACE, en, zh)
|
| 177 |
post_chatlog(history)
|
| 178 |
else:
|
| 179 |
print("[Adam] (no response)")
|