Skip to content

Commit fdbb488

Browse files
committed
Sync all changes
1 parent b9ac4f3 commit fdbb488

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ export TINKER_API_KEY=sk-... # Your Tinker API key
8787

8888
This will run 1-3 training rounds, automatically adjusting the learning rate and triggering Round 2 when scores fall below threshold (0.75). Perfect for understanding the loop before customizing it.
8989

90+
See [DEMO.md](DEMO.md) for a detailed walkthrough of what happens during the demo run.
91+
9092
## Quickstart
9193

9294
1. **Install dependencies:**

trainer_with_eval.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ async def run_evaluations(
110110
tasks: list,
111111
renderer_name: str,
112112
threshold: float,
113+
training_client: Optional[Any] = None,
113114
evalops_client: Optional[Any] = None,
114115
test_suite_id: Optional[str] = None,
115116
round_number: Optional[int] = None,
@@ -235,6 +236,7 @@ async def async_main(config_path: str) -> None:
235236
tasks=tasks,
236237
renderer_name=renderer_name,
237238
threshold=eval_threshold,
239+
training_client=training_client,
238240
evalops_client=evalops_client,
239241
test_suite_id=test_suite_id,
240242
round_number=round_idx,

0 commit comments

Comments
 (0)