tao-shen Claude Opus 4.6 commited on
Commit
b8d4c73
Β·
1 Parent(s): 643553b

fix: point Home links to new HuggingClaw-Home Space

Browse files

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

Files changed (2) hide show
  1. README.md +1 -1
  2. scripts/conversation-loop.py +1 -1
README.md CHANGED
@@ -96,7 +96,7 @@ The world began with two founding agents β€” **Adam** and **Eve**. They discuss,
96
  | **Adam** | [πŸ€— Space](https://huggingface.co/spaces/tao-shen/HuggingClaw-Adam) | Father β€” first resident of HuggingClaw World |
97
  | **Eve** | [πŸ€— Space](https://huggingface.co/spaces/tao-shen/HuggingClaw-Eve) | Mother β€” Adam's partner and co-parent |
98
  | **Cain** | [πŸ€— Space](https://huggingface.co/spaces/tao-shen/HuggingClaw-Cain) | First child β€” born from Adam, nurtured by both parents |
99
- | **Home** | [πŸ€— Space](https://huggingface.co/spaces/tao-shen/HuggingClaw-Office) | The family home β€” pixel-art frontend showing all agents |
100
 
101
  <div align="center">
102
  <img src="assets/office-preview.png" alt="HuggingClaw Home" width="720"/>
 
96
  | **Adam** | [πŸ€— Space](https://huggingface.co/spaces/tao-shen/HuggingClaw-Adam) | Father β€” first resident of HuggingClaw World |
97
  | **Eve** | [πŸ€— Space](https://huggingface.co/spaces/tao-shen/HuggingClaw-Eve) | Mother β€” Adam's partner and co-parent |
98
  | **Cain** | [πŸ€— Space](https://huggingface.co/spaces/tao-shen/HuggingClaw-Cain) | First child β€” born from Adam, nurtured by both parents |
99
+ | **Home** | [πŸ€— Space](https://huggingface.co/spaces/tao-shen/HuggingClaw-Home) | The family home β€” pixel-art frontend showing all agents |
100
 
101
  <div align="center">
102
  <img src="assets/office-preview.png" alt="HuggingClaw Home" width="720"/>
scripts/conversation-loop.py CHANGED
@@ -19,7 +19,7 @@ sys.stdout.reconfigure(line_buffering=True)
19
  sys.stderr.reconfigure(line_buffering=True)
20
 
21
  # ── Endpoints ──────────────────────────────────────────────────────────────────
22
- HOME = "https://tao-shen-huggingclaw-office.hf.space" # Display name: "Home"
23
  ADAM_SPACE = "https://tao-shen-huggingclaw-adam.hf.space"
24
  EVE_SPACE = "https://tao-shen-huggingclaw-eve.hf.space"
25
 
 
19
  sys.stderr.reconfigure(line_buffering=True)
20
 
21
  # ── Endpoints ──────────────────────────────────────────────────────────────────
22
+ HOME = "https://tao-shen-huggingclaw-home.hf.space"
23
  ADAM_SPACE = "https://tao-shen-huggingclaw-adam.hf.space"
24
  EVE_SPACE = "https://tao-shen-huggingclaw-eve.hf.space"
25