mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-05 02:31:47 +00:00
add prokletor
This commit is contained in:
parent
7d9a1e119d
commit
96bc31a8b1
3 changed files with 54 additions and 56 deletions
|
|
@ -689,16 +689,12 @@ class BatchRunner:
|
|||
print("\n" + "=" * 70)
|
||||
print("🚀 Starting Batch Processing")
|
||||
print("=" * 70)
|
||||
|
||||
# Load checkpoint
|
||||
checkpoint_data = self._load_checkpoint() if resume else {
|
||||
"run_name": self.run_name,
|
||||
"completed_prompts": [],
|
||||
"last_updated": None
|
||||
}
|
||||
|
||||
if resume and checkpoint_data.get("completed_prompts"):
|
||||
print(f"📂 Resuming from checkpoint ({len(checkpoint_data['completed_prompts'])} prompts already completed)")
|
||||
|
||||
# Always load checkpoint if it exists to skip completed indices
|
||||
checkpoint_data = self._load_checkpoint()
|
||||
|
||||
if checkpoint_data.get("completed_prompts"):
|
||||
print(f"📂 Found existing checkpoint - skipping {len(checkpoint_data['completed_prompts'])} already completed prompts")
|
||||
|
||||
completed_prompts_set = set(checkpoint_data.get("completed_prompts", []))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue