Skip to content

Commit e9bdee6

Browse files
Update default number of cycles to 10 in create-spec-cycles.py
1 parent 190a1a2 commit e9bdee6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bp-examples/scripts/create-spec-cycles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
model_id_input = input("Enter model ID (press Enter for default: claude-sonnet-4.5): ").strip()
1313
MODEL_ID = model_id_input if model_id_input else "claude-sonnet-4.5"
1414

15-
cycles_cnt_input = input("Enter number of cycles (press Enter for default: 1): ").strip()
15+
cycles_cnt_input = input("Enter number of cycles (press Enter for default: 10): ").strip()
1616
if cycles_cnt_input:
1717
try:
1818
CYCLES_CNT = int(cycles_cnt_input)

0 commit comments

Comments
 (0)