From deb28f67141613f7ecd2b7a2ca3fa13f18283187 Mon Sep 17 00:00:00 2001 From: rob thijssen Date: Mon, 9 Mar 2026 12:24:30 +0200 Subject: [PATCH] chore: local defaults --- readme.md | 4 ++-- src/config.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index 387a5bd..e59f004 100644 --- a/readme.md +++ b/readme.md @@ -60,12 +60,12 @@ All options are available as CLI flags and environment variables: | `--oos-to` | | `2026-03-01` | Out-of-sample end | | `--initial-balance` | | `10000` | Starting USDC balance | | `--fees-percent` | | `0.001` | Fee per trade (0.1%) | -| `--output-dir` | | `./results` | Where to save strategies and reports | +| `--output-dir` | | `./scout-results` | Where to save strategies and reports | ## Output ``` -results/ +scout-results/ ├── strategy_001.json # Every strategy attempted ├── strategy_002.json ├── ... diff --git a/src/config.rs b/src/config.rs index b314bdb..d830b40 100644 --- a/src/config.rs +++ b/src/config.rs @@ -18,11 +18,11 @@ pub struct Cli { pub anthropic_key: String, /// Anthropic API base URL. - #[arg(long, default_value = "https://api.anthropic.com")] + #[arg(long, default_value = "http://beast.hanzalova.internal:1234")] pub anthropic_url: String, /// Claude model to use for strategy generation. - #[arg(long, default_value = "claude-sonnet-4-20250514")] + #[arg(long, default_value = "qwen/qwen3.5-35b-a3b")] pub model: String, /// Maximum agent iterations (generate → backtest → evaluate cycles).