purge: remove Anthropic references from timmy-home
Some checks failed
continuous-integration CI override for remediation PR
Smoke Test / smoke (pull_request) Failing after 5s

Enforces BANNED_PROVIDERS.yml — Anthropic permanently banned since 2026-04-09.

Changes:
- gemini-fallback-setup.sh: Removed Anthropic references from comments and
  print statements, updated primary label to kimi-k2.5
- config.yaml: Updated commented-out model reference from anthropic → gemini

Both changes are low-risk — no active routing affected.
This commit is contained in:
perplexity
2026-04-13 02:01:09 +00:00
parent d766995aa9
commit 4beae6e6c6
2 changed files with 7 additions and 7 deletions

View File

@@ -209,7 +209,7 @@ skills:
#
# fallback_model:
# provider: openrouter
# model: anthropic/claude-sonnet-4
# model: google/gemini-2.5-pro # was anthropic/claude-sonnet-4 — BANNED
#
# ── Smart Model Routing ────────────────────────────────────────────────
# Optional cheap-vs-strong routing for simple turns.

View File

@@ -1,7 +1,7 @@
#!/bin/bash
# Let Gemini-Timmy configure itself as Anthropic fallback.
# Hermes CLI won't accept --provider custom, so we use hermes setup flow.
# But first: prove Gemini works, then manually add fallback_model.
# Configure Gemini 2.5 Pro as fallback provider.
# Anthropic BANNED per BANNED_PROVIDERS.yml (2026-04-09).
# Sets up Google Gemini as custom_provider + fallback_model for Hermes.
# Add Google Gemini as custom_provider + fallback_model in one shot
python3 << 'PYEOF'
@@ -39,7 +39,7 @@ else:
with open(config_path, "w") as f:
yaml.dump(config, f, default_flow_style=False, sort_keys=False)
print("\nDone. When Anthropic quota exhausts, Hermes will failover to Gemini 2.5 Pro.")
print("Primary: claude-opus-4-6 (Anthropic)")
print("Fallback: gemini-2.5-pro (Google AI)")
print("\nDone. Gemini 2.5 Pro configured as fallback. Anthropic is banned.")
print("Primary: kimi-k2.5 (Kimi Coding)")
print("Fallback: gemini-2.5-pro (Google AI via OpenRouter)")
PYEOF