Skip to content

Commit 69cd0d0

Browse files
S1M0N38claude
andcommitted
docs: update CLI documentation with new options
- Add --runs-dir and --runs parameters to CLAUDE.md and README.md - Clean up formatting for better readability - Update usage examples to reflect new multi-run capabilities - Synchronize documentation between files for consistency 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 4e61cb7 commit 69cd0d0

2 files changed

Lines changed: 11 additions & 20 deletions

File tree

CLAUDE.md

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ litellm --config config/litellm.yaml
2525
### Running the Application
2626

2727
```
28-
usage: balatrollm [-h] [--model MODEL] [--list-models] [--strategy STRATEGY]
29-
[--base-url BASE_URL] [--api-key API_KEY] [--config CONFIG]
30-
{benchmark} ...
28+
usage: balatrollm [-h] [--model MODEL] [--list-models] [--strategy STRATEGY] [--base-url BASE_URL] [--api-key API_KEY] [--config CONFIG] [--runs-dir RUNS_DIR] [--runs RUNS] {benchmark} ...
3129
3230
LLM-powered Balatro bot using LiteLLM proxy
3331
@@ -37,23 +35,14 @@ positional arguments:
3735
3836
options:
3937
-h, --help show this help message and exit
40-
--model MODEL Model name to use from LiteLLM proxy (default:
41-
cerebras/gpt-oss-120b)
38+
--model MODEL Model name to use from LiteLLM proxy (default: cerebras/gpt-oss-120b)
4239
--list-models List available models from the proxy and exit
4340
--strategy STRATEGY Name of the strategy to use (default: default)
4441
--base-url BASE_URL LiteLLM base URL (default: http://localhost:4000)
45-
--api-key API_KEY LiteLLM proxy API key (default: sk-balatrollm-proxy-
46-
key)
47-
--config CONFIG Load configuration from a previous run's config.json
48-
file
49-
50-
Examples:
51-
balatrollm --model cerebras/gpt-oss-120b
52-
balatrollm --model groq/qwen/qwen3-32b --base-url http://localhost:4000
53-
balatrollm --strategy aggressive
54-
balatrollm --list-models
55-
balatrollm --config runs/v0.3.0/default/cerebras/gpt-oss-120b/20240101_120000_RedDeck_s1_OOOO155/config.json
56-
balatrollm benchmark --runs-dir runs --output-dir benchmarks
42+
--api-key API_KEY LiteLLM proxy API key (default: sk-balatrollm-proxy-key)
43+
--config CONFIG Load configuration from a previous run's config.json file
44+
--runs-dir RUNS_DIR Base directory for storing run data (default: current directory)
45+
--runs RUNS Number of times to run the bot with the same configuration (default: 1)
5746
```
5847

5948
### Development

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ balatrollm --help
9191
```
9292

9393
```
94-
usage: balatrollm [-h] [--model MODEL] [--list-models] [--strategy STRATEGY]
95-
[--base-url BASE_URL] [--api-key API_KEY] [--config CONFIG]
94+
usage: balatrollm [-h] [--model MODEL] [--list-models] [--strategy STRATEGY] [--base-url BASE_URL]
95+
[--api-key API_KEY] [--config CONFIG] [--runs-dir RUNS_DIR] [--runs RUNS]
9696
{benchmark} ...
9797
9898
LLM-powered Balatro bot using LiteLLM proxy
@@ -107,8 +107,10 @@ options:
107107
--list-models List available models from the proxy and exit
108108
--strategy STRATEGY Name of the strategy to use (default: default)
109109
--base-url BASE_URL LiteLLM base URL (default: http://localhost:4000)
110-
--api-key API_KEY LiteLLM proxy API key (default: sk-balatrollm-proxy- key)
110+
--api-key API_KEY LiteLLM proxy API key (default: sk-balatrollm-proxy-key)
111111
--config CONFIG Load configuration from a previous run's config.json file
112+
--runs-dir RUNS_DIR Base directory for storing run data (default: current directory)
113+
--runs RUNS Number of times to run the bot with the same configuration (default: 1)
112114
```
113115

114116
#### `Makefile` - Development Workflow

0 commit comments

Comments
 (0)