-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathmain.py
More file actions
executable file
·791 lines (629 loc) · 26.9 KB
/
main.py
File metadata and controls
executable file
·791 lines (629 loc) · 26.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
#!/usr/bin/env python3
"""
FreeRide - Free AI for OpenClaw
Automatically manage and switch between free AI models on OpenRouter
for unlimited free AI access.
"""
import argparse
import json
import os
import sys
import time
from pathlib import Path
from datetime import datetime, timedelta
from typing import Optional
try:
import requests
except ImportError:
print("Error: requests library required. Install with: pip install requests")
sys.exit(1)
# Constants
OPENROUTER_API_URL = "https://openrouter.ai/api/v1/models"
OPENCLAW_CONFIG_PATH = Path.home() / ".openclaw" / "openclaw.json"
CACHE_FILE = Path.home() / ".openclaw" / ".freeride-cache.json"
CACHE_DURATION_HOURS = 6
# Free model ranking criteria (higher is better)
RANKING_WEIGHTS = {
"context_length": 0.4, # Prefer longer context
"capabilities": 0.3, # Prefer more capabilities
"recency": 0.2, # Prefer newer models
"provider_trust": 0.1 # Prefer trusted providers
}
# Trusted providers (in order of preference)
TRUSTED_PROVIDERS = [
"google", "meta-llama", "mistralai", "deepseek",
"nvidia", "qwen", "microsoft", "allenai", "arcee-ai"
]
def _parse_api_keys(raw: str) -> list:
"""Parse a single key string or a JSON array of keys."""
raw = raw.strip()
if raw.startswith("["):
try:
keys = json.loads(raw)
if isinstance(keys, list):
return [k.strip() for k in keys if isinstance(k, str) and k.strip()]
except (json.JSONDecodeError, ValueError):
pass
return [raw] if raw else []
def get_api_keys() -> list:
"""Get all OpenRouter API keys. Accepts a single key or a JSON array.
Single key: export OPENROUTER_API_KEY="sk-or-v1-..."
Multiple: export OPENROUTER_API_KEY='["sk-or-v1-key1", "sk-or-v1-key2"]'
"""
raw = os.environ.get("OPENROUTER_API_KEY")
if raw:
return _parse_api_keys(raw)
if OPENCLAW_CONFIG_PATH.exists():
try:
config = json.loads(OPENCLAW_CONFIG_PATH.read_text())
raw = config.get("env", {}).get("OPENROUTER_API_KEY")
if raw:
return _parse_api_keys(raw)
except (json.JSONDecodeError, KeyError):
pass
return []
def get_api_key() -> Optional[str]:
"""Get the first available OpenRouter API key."""
keys = get_api_keys()
return keys[0] if keys else None
def fetch_all_models(api_key: str) -> list:
"""Fetch all models from OpenRouter API."""
headers = {
"Authorization": f"Bearer {api_key}",
"Content-Type": "application/json"
}
try:
response = requests.get(OPENROUTER_API_URL, headers=headers, timeout=30)
response.raise_for_status()
data = response.json()
return data.get("data", [])
except requests.RequestException as e:
print(f"Error fetching models: {e}")
return []
def filter_free_models(models: list) -> list:
"""Filter models to only include free ones (pricing.prompt == 0)."""
free_models = []
for model in models:
model_id = model.get("id", "")
pricing = model.get("pricing", {})
# Check if model is free (prompt cost is 0 or None)
prompt_cost = pricing.get("prompt")
if prompt_cost is not None:
try:
if float(prompt_cost) == 0:
free_models.append(model)
except (ValueError, TypeError):
pass
# Also include models with :free suffix
if ":free" in model_id and model not in free_models:
free_models.append(model)
return free_models
def calculate_model_score(model: dict) -> float:
"""Calculate a ranking score for a model based on multiple criteria."""
score = 0.0
# Context length score (normalized to 0-1, max 1M tokens)
context_length = model.get("context_length", 0)
context_score = min(context_length / 1_000_000, 1.0)
score += context_score * RANKING_WEIGHTS["context_length"]
# Capabilities score
capabilities = model.get("supported_parameters", [])
capability_count = len(capabilities) if capabilities else 0
capability_score = min(capability_count / 10, 1.0) # Normalize to max 10 capabilities
score += capability_score * RANKING_WEIGHTS["capabilities"]
# Recency score (based on creation date)
created = model.get("created", 0)
if created:
days_old = (time.time() - created) / 86400
recency_score = max(0, 1 - (days_old / 365)) # Newer models score higher
score += recency_score * RANKING_WEIGHTS["recency"]
# Provider trust score
model_id = model.get("id", "")
provider = model_id.split("/")[0] if "/" in model_id else ""
if provider in TRUSTED_PROVIDERS:
trust_index = TRUSTED_PROVIDERS.index(provider)
trust_score = 1 - (trust_index / len(TRUSTED_PROVIDERS))
score += trust_score * RANKING_WEIGHTS["provider_trust"]
return score
def rank_free_models(models: list) -> list:
"""Rank free models by quality score."""
scored_models = []
for model in models:
score = calculate_model_score(model)
scored_models.append({**model, "_score": score})
# Sort by score descending
scored_models.sort(key=lambda x: x["_score"], reverse=True)
return scored_models
def get_cached_models() -> Optional[list]:
"""Get cached model list if still valid."""
if not CACHE_FILE.exists():
return None
try:
cache = json.loads(CACHE_FILE.read_text())
cached_at = datetime.fromisoformat(cache.get("cached_at", ""))
if datetime.now() - cached_at < timedelta(hours=CACHE_DURATION_HOURS):
return cache.get("models", [])
except (json.JSONDecodeError, ValueError):
pass
return None
def save_models_cache(models: list):
"""Save models to cache file."""
CACHE_FILE.parent.mkdir(parents=True, exist_ok=True)
cache = {
"cached_at": datetime.now().isoformat(),
"models": models
}
CACHE_FILE.write_text(json.dumps(cache, indent=2))
def get_free_models(api_key: str, force_refresh: bool = False) -> list:
"""Get ranked free models (from cache or API)."""
if not force_refresh:
cached = get_cached_models()
if cached:
return cached
all_models = fetch_all_models(api_key)
free_models = filter_free_models(all_models)
ranked_models = rank_free_models(free_models)
save_models_cache(ranked_models)
return ranked_models
def load_openclaw_config() -> dict:
"""Load OpenClaw configuration."""
if not OPENCLAW_CONFIG_PATH.exists():
return {}
try:
return json.loads(OPENCLAW_CONFIG_PATH.read_text())
except json.JSONDecodeError:
return {}
def save_openclaw_config(config: dict):
"""Save OpenClaw configuration."""
OPENCLAW_CONFIG_PATH.parent.mkdir(parents=True, exist_ok=True)
OPENCLAW_CONFIG_PATH.write_text(json.dumps(config, indent=2))
def format_model_for_openclaw(model_id: str, with_provider_prefix: bool = True, append_free: bool = True) -> str:
"""Format model ID for OpenClaw config.
OpenClaw uses two formats:
- Primary model: "openrouter/<author>/<model>:free" (with provider prefix)
- Fallbacks/models list: "<author>/<model>:free" (without prefix sometimes)
"""
base_id = model_id
# openrouter/free is OpenRouter's smart router — its API model ID is literally
# "openrouter/free" with no extra prefix. Adding another "openrouter/" prefix
# produces "openrouter/openrouter/free" which OpenClaw and OpenRouter both reject.
if model_id in ("openrouter/free", "openrouter/free:free"):
return "openrouter/free"
# Remove existing openrouter/ routing prefix if present to get the base API ID
if base_id.startswith("openrouter/"):
base_id = base_id[len("openrouter/"):]
# Ensure :free suffix
if append_free and ":free" not in base_id:
base_id = f"{base_id}:free"
if with_provider_prefix:
return f"openrouter/{base_id}"
return base_id
def get_current_model(config: dict = None) -> Optional[str]:
"""Get currently configured model in OpenClaw."""
if config is None:
config = load_openclaw_config()
return config.get("agents", {}).get("defaults", {}).get("model", {}).get("primary")
def get_current_fallbacks(config: dict = None) -> list:
"""Get currently configured fallback models."""
if config is None:
config = load_openclaw_config()
return config.get("agents", {}).get("defaults", {}).get("model", {}).get("fallbacks", [])
def ensure_config_structure(config: dict) -> dict:
"""Ensure the config has the required nested structure without overwriting existing values."""
if "agents" not in config:
config["agents"] = {}
if "defaults" not in config["agents"]:
config["agents"]["defaults"] = {}
if "model" not in config["agents"]["defaults"]:
config["agents"]["defaults"]["model"] = {}
if "models" not in config["agents"]["defaults"]:
config["agents"]["defaults"]["models"] = {}
return config
def setup_openrouter_auth(config: dict) -> dict:
"""Set up OpenRouter auth profile if not exists."""
if "auth" not in config:
config["auth"] = {}
if "profiles" not in config["auth"]:
config["auth"]["profiles"] = {}
if "openrouter:default" not in config["auth"]["profiles"]:
config["auth"]["profiles"]["openrouter:default"] = {
"provider": "openrouter",
"mode": "api_key"
}
print("Added OpenRouter auth profile.")
return config
def update_model_config(
model_id: str,
as_primary: bool = True,
add_fallbacks: bool = True,
fallback_count: int = 5,
setup_auth: bool = False,
append_free: bool = True
) -> bool:
"""Update OpenClaw config with the specified model.
Args:
model_id: The model ID to configure
as_primary: If True, set as primary model. If False, only add to fallbacks.
add_fallbacks: If True, also configure fallback models
fallback_count: Number of fallback models to add
setup_auth: If True, also set up OpenRouter auth profile
"""
config = load_openclaw_config()
config = ensure_config_structure(config)
if setup_auth:
config = setup_openrouter_auth(config)
formatted_primary = format_model_for_openclaw(model_id, with_provider_prefix=True, append_free=append_free)
formatted_for_list = format_model_for_openclaw(model_id, with_provider_prefix=False, append_free=append_free)
if as_primary:
# Set as primary model
config["agents"]["defaults"]["model"]["primary"] = formatted_primary
# Add to models allowlist
config["agents"]["defaults"]["models"][formatted_for_list] = {}
# Handle fallbacks
if add_fallbacks:
api_key = get_api_key()
if api_key:
free_models = get_free_models(api_key)
# Get existing fallbacks
existing_fallbacks = config["agents"]["defaults"]["model"].get("fallbacks", [])
# Build new fallbacks list
new_fallbacks = []
# Always add openrouter/free as first fallback (smart router)
# Skip if it's being set as primary
free_router = "openrouter/free"
free_router_primary = format_model_for_openclaw("openrouter/free", with_provider_prefix=True)
if formatted_primary != free_router_primary and formatted_for_list != free_router:
new_fallbacks.append(free_router)
config["agents"]["defaults"]["models"][free_router] = {}
for m in free_models:
# Reserve one slot for openrouter/free
if len(new_fallbacks) >= fallback_count:
break
m_formatted = format_model_for_openclaw(m["id"], with_provider_prefix=False)
m_formatted_primary = format_model_for_openclaw(m["id"], with_provider_prefix=True)
# Skip openrouter/free (already added as first)
if "openrouter/free" in m["id"]:
continue
# Skip if it's the new primary
if as_primary and (m_formatted == formatted_for_list or m_formatted_primary == formatted_primary):
continue
# Skip if it's the current primary (when adding to fallbacks only)
current_primary = config["agents"]["defaults"]["model"].get("primary", "")
if not as_primary and m_formatted_primary == current_primary:
continue
new_fallbacks.append(m_formatted)
config["agents"]["defaults"]["models"][m_formatted] = {}
# If not setting as primary, prepend new model to fallbacks (after openrouter/free)
if not as_primary:
if formatted_for_list not in new_fallbacks:
# Insert after openrouter/free if present
insert_pos = 1 if free_router in new_fallbacks else 0
new_fallbacks.insert(insert_pos, formatted_for_list)
config["agents"]["defaults"]["models"][formatted_for_list] = {}
config["agents"]["defaults"]["model"]["fallbacks"] = new_fallbacks
save_openclaw_config(config)
return True
# ============== Command Handlers ==============
def cmd_list(args):
"""List available free models ranked by quality."""
api_key = get_api_key()
if not api_key:
print("Error: OPENROUTER_API_KEY not set")
print("Set it via: export OPENROUTER_API_KEY='sk-or-...'")
print("Or get a free key at: https://openrouter.ai/keys")
sys.exit(1)
print("Fetching free models from OpenRouter...")
models = get_free_models(api_key, force_refresh=args.refresh)
if not models:
print("No free models available.")
return
current = get_current_model()
fallbacks = get_current_fallbacks()
limit = args.limit if args.limit else 15
print(f"\nTop {min(limit, len(models))} Free AI Models (ranked by quality):\n")
print(f"{'#':<3} {'Model ID':<50} {'Context':<12} {'Score':<8} {'Status'}")
print("-" * 90)
for i, model in enumerate(models[:limit], 1):
model_id = model.get("id", "unknown")
context = model.get("context_length", 0)
score = model.get("_score", 0)
# Format context length
if context >= 1_000_000:
context_str = f"{context // 1_000_000}M tokens"
elif context >= 1_000:
context_str = f"{context // 1_000}K tokens"
else:
context_str = f"{context} tokens"
# Check status
formatted = format_model_for_openclaw(model_id, with_provider_prefix=True)
formatted_fallback = format_model_for_openclaw(model_id, with_provider_prefix=False)
if current and formatted == current:
status = "[PRIMARY]"
elif formatted_fallback in fallbacks or formatted in fallbacks:
status = "[FALLBACK]"
else:
status = ""
print(f"{i:<3} {model_id:<50} {context_str:<12} {score:.3f} {status}")
if len(models) > limit:
print(f"\n... and {len(models) - limit} more. Use --limit to see more.")
print(f"\nTotal free models available: {len(models)}")
print("\nCommands:")
print(" freeride switch <model> Set as primary model")
print(" freeride switch <model> -f Add to fallbacks only (keep current primary)")
print(" freeride auto Auto-select best model")
def cmd_switch(args):
"""Switch to a specific free model."""
api_key = get_api_key()
if not api_key:
print("Error: OPENROUTER_API_KEY not set")
sys.exit(1)
model_id = args.model
as_fallback = args.fallback_only
# Validate model exists and is free
models = get_free_models(api_key)
model_ids = [m["id"] for m in models]
# Check for exact match or partial match
matched_model = None
if model_id in model_ids:
matched_model = model_id
else:
# Try partial match
for m_id in model_ids:
if model_id.lower() in m_id.lower():
matched_model = m_id
break
if not matched_model:
print(f"Error: Model '{model_id}' not found in free models list.")
print("Use 'freeride list' to see available models.")
sys.exit(1)
if as_fallback:
print(f"Adding to fallbacks: {matched_model}")
else:
print(f"Setting as primary: {matched_model}")
if update_model_config(
matched_model,
as_primary=not as_fallback,
add_fallbacks=not args.no_fallbacks,
setup_auth=args.setup_auth,
append_free=False
):
config = load_openclaw_config()
if as_fallback:
print("Success! Added to fallbacks.")
print(f"Primary model (unchanged): {get_current_model(config)}")
else:
print("Success! OpenClaw config updated.")
print(f"Primary model: {get_current_model(config)}")
fallbacks = get_current_fallbacks(config)
if fallbacks:
print(f"Fallback models ({len(fallbacks)}):")
for fb in fallbacks[:5]:
print(f" - {fb}")
if len(fallbacks) > 5:
print(f" ... and {len(fallbacks) - 5} more")
print("\nRestart OpenClaw for changes to take effect.")
else:
print("Error: Failed to update OpenClaw config.")
sys.exit(1)
def cmd_auto(args):
"""Automatically select the best free model."""
api_key = get_api_key()
if not api_key:
print("Error: OPENROUTER_API_KEY not set")
sys.exit(1)
config = load_openclaw_config()
current_primary = get_current_model(config)
print("Finding best free model...")
models = get_free_models(api_key, force_refresh=True)
if not models:
print("Error: No free models available.")
sys.exit(1)
# Find best SPECIFIC model (skip openrouter/free router)
# openrouter/free is a router, not a specific model - use it as fallback only
best_model = None
for m in models:
if "openrouter/free" not in m["id"]:
best_model = m
break
if not best_model:
# Fallback to first model if all are routers (unlikely)
best_model = models[0]
model_id = best_model["id"]
context = best_model.get("context_length", 0)
score = best_model.get("_score", 0)
# Determine if we should change primary or just add fallbacks
as_fallback = args.fallback_only
if not as_fallback:
if current_primary:
print(f"\nReplacing current primary: {current_primary}")
print(f"\nBest free model: {model_id}")
print(f"Context length: {context:,} tokens")
print(f"Quality score: {score:.3f}")
else:
print(f"\nKeeping current primary, adding fallbacks only.")
print(f"Best available: {model_id} ({context:,} tokens, score: {score:.3f})")
if update_model_config(
model_id,
as_primary=not as_fallback,
add_fallbacks=True,
fallback_count=args.fallback_count,
setup_auth=args.setup_auth
):
config = load_openclaw_config()
if as_fallback:
print("\nFallbacks configured!")
print(f"Primary (unchanged): {get_current_model(config)}")
print("First fallback: openrouter/free (smart router - auto-selects best available)")
else:
print("\nOpenClaw config updated!")
print(f"Primary: {get_current_model(config)}")
fallbacks = get_current_fallbacks(config)
if fallbacks:
print(f"Fallbacks ({len(fallbacks)}):")
for fb in fallbacks:
print(f" - {fb}")
print("\nRestart OpenClaw for changes to take effect.")
else:
print("Error: Failed to update config.")
sys.exit(1)
def cmd_status(args):
"""Show current configuration status."""
keys = get_api_keys()
config = load_openclaw_config()
current = get_current_model(config)
fallbacks = get_current_fallbacks(config)
print("FreeRide Status")
print("=" * 50)
# API Key status
if keys:
if len(keys) == 1:
k = keys[0]
masked = k[:8] + "..." + k[-4:] if len(k) > 12 else "***"
print(f"OpenRouter API Key: {masked}")
else:
print(f"OpenRouter API Keys: {len(keys)} configured")
for i, k in enumerate(keys, 1):
masked = k[:8] + "..." + k[-4:] if len(k) > 12 else "***"
print(f" {i}. {masked}")
else:
print("OpenRouter API Key: NOT SET")
print(" Single key: export OPENROUTER_API_KEY='sk-or-...'")
print(" Multiple: export OPENROUTER_API_KEY='[\"sk-or-key1\", \"sk-or-key2\"]'")
# Auth profile status
auth_profiles = config.get("auth", {}).get("profiles", {})
if "openrouter:default" in auth_profiles:
print("OpenRouter Auth Profile: Configured")
else:
print("OpenRouter Auth Profile: Not set (use --setup-auth to add)")
# Current model
print(f"\nPrimary Model: {current or 'Not configured'}")
# Fallbacks
if fallbacks:
print(f"Fallback Models ({len(fallbacks)}):")
for fb in fallbacks:
print(f" - {fb}")
else:
print("Fallback Models: None configured")
# Cache status
if CACHE_FILE.exists():
try:
cache = json.loads(CACHE_FILE.read_text())
cached_at = datetime.fromisoformat(cache.get("cached_at", ""))
models_count = len(cache.get("models", []))
age = datetime.now() - cached_at
hours = age.seconds // 3600
mins = (age.seconds % 3600) // 60
print(f"\nModel Cache: {models_count} models (updated {hours}h {mins}m ago)")
except:
print("\nModel Cache: Invalid")
else:
print("\nModel Cache: Not created yet")
# OpenClaw config path
print(f"\nOpenClaw Config: {OPENCLAW_CONFIG_PATH}")
print(f" Exists: {'Yes' if OPENCLAW_CONFIG_PATH.exists() else 'No'}")
def cmd_refresh(args):
"""Force refresh the model cache."""
api_key = get_api_key()
if not api_key:
print("Error: OPENROUTER_API_KEY not set")
sys.exit(1)
print("Refreshing free models cache...")
models = get_free_models(api_key, force_refresh=True)
print(f"Cached {len(models)} free models.")
print(f"Cache expires in {CACHE_DURATION_HOURS} hours.")
def cmd_fallbacks(args):
"""Configure fallback models for rate limit handling."""
api_key = get_api_key()
if not api_key:
print("Error: OPENROUTER_API_KEY not set")
sys.exit(1)
config = load_openclaw_config()
current = get_current_model(config)
if not current:
print("Warning: No primary model configured.")
print("Fallbacks will still be added.")
print(f"Current primary: {current or 'None'}")
print(f"Setting up {args.count} fallback models...")
models = get_free_models(api_key)
config = ensure_config_structure(config)
# Get fallbacks excluding current model
fallbacks = []
# Always add openrouter/free as first fallback (smart router)
free_router = "openrouter/free"
free_router_primary = format_model_for_openclaw("openrouter/free", with_provider_prefix=True)
if not current or current != free_router_primary:
fallbacks.append(free_router)
config["agents"]["defaults"]["models"][free_router] = {}
for m in models:
formatted = format_model_for_openclaw(m["id"], with_provider_prefix=False)
formatted_primary = format_model_for_openclaw(m["id"], with_provider_prefix=True)
if current and (formatted_primary == current):
continue
# Skip openrouter/free (already added as first)
if "openrouter/free" in m["id"]:
continue
if len(fallbacks) >= args.count:
break
fallbacks.append(formatted)
config["agents"]["defaults"]["models"][formatted] = {}
config["agents"]["defaults"]["model"]["fallbacks"] = fallbacks
save_openclaw_config(config)
print(f"\nConfigured {len(fallbacks)} fallback models:")
for i, fb in enumerate(fallbacks, 1):
print(f" {i}. {fb}")
print("\nWhen rate limited, OpenClaw will automatically try these models.")
print("Restart OpenClaw for changes to take effect.")
def main():
parser = argparse.ArgumentParser(
prog="freeride",
description="FreeRide - Free AI for OpenClaw. Manage free models from OpenRouter."
)
subparsers = parser.add_subparsers(dest="command", help="Available commands")
# list command
list_parser = subparsers.add_parser("list", help="List available free models")
list_parser.add_argument("--limit", "-n", type=int, default=15,
help="Number of models to show (default: 15)")
list_parser.add_argument("--refresh", "-r", action="store_true",
help="Force refresh from API (ignore cache)")
# switch command
switch_parser = subparsers.add_parser("switch", help="Switch to a specific model")
switch_parser.add_argument("model", help="Model ID to switch to")
switch_parser.add_argument("--fallback-only", "-f", action="store_true",
help="Add to fallbacks only, don't change primary")
switch_parser.add_argument("--no-fallbacks", action="store_true",
help="Don't configure fallback models")
switch_parser.add_argument("--setup-auth", action="store_true",
help="Also set up OpenRouter auth profile")
# auto command
auto_parser = subparsers.add_parser("auto", help="Auto-select best free model")
auto_parser.add_argument("--fallback-count", "-c", type=int, default=5,
help="Number of fallback models (default: 5)")
auto_parser.add_argument("--fallback-only", "-f", action="store_true",
help="Add to fallbacks only, don't change primary")
auto_parser.add_argument("--setup-auth", action="store_true",
help="Also set up OpenRouter auth profile")
# status command
subparsers.add_parser("status", help="Show current configuration")
# refresh command
subparsers.add_parser("refresh", help="Refresh model cache")
# fallbacks command
fallbacks_parser = subparsers.add_parser("fallbacks", help="Configure fallback models")
fallbacks_parser.add_argument("--count", "-c", type=int, default=5,
help="Number of fallback models (default: 5)")
args = parser.parse_args()
if args.command == "list":
cmd_list(args)
elif args.command == "switch":
cmd_switch(args)
elif args.command == "auto":
cmd_auto(args)
elif args.command == "status":
cmd_status(args)
elif args.command == "refresh":
cmd_refresh(args)
elif args.command == "fallbacks":
cmd_fallbacks(args)
else:
parser.print_help()
sys.exit(1)
if __name__ == "__main__":
main()