forked from lyang36/IMO25
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent.py
More file actions
656 lines (532 loc) · 26.9 KB
/
agent.py
File metadata and controls
656 lines (532 loc) · 26.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
"""
MIT License
Copyright (c) 2025 Lin Yang, Yichen Huang
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
import os
from pickle import FALSE
import sys
import json
from textwrap import indent
import requests
import argparse
import logging
# --- CONFIGURATION ---
# The model to use. "gemini-1.5-flash" is fast and capable.
#MODEL_NAME = "gemini-1.5-flash-latest"
MODEL_NAME = "gemini-2.5-pro"
# Use the Generative Language API endpoint, which is simpler for API key auth
API_URL = f"https://generativelanguage.googleapis.com/v1beta/models/{MODEL_NAME}:generateContent"
# Global variables for logging
_log_file = None
original_print = print
def log_print(*args, **kwargs):
"""
Custom print function that writes to both stdout and log file.
"""
# Convert all arguments to strings and join them
message = ' '.join(str(arg) for arg in args)
# Add timestamp to lines starting with ">>>>>"
if message.startswith('>>>>>'):
from datetime import datetime
timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
message = f"[{timestamp}] {message}"
# Print to stdout
original_print(message)
# Also write to log file if specified
if _log_file is not None:
_log_file.write(message + '\n')
_log_file.flush() # Ensure immediate writing
# Replace the built-in print function
print = log_print
def set_log_file(log_file_path):
"""Set the log file for output."""
global _log_file
if log_file_path:
try:
_log_file = open(log_file_path, 'w', encoding='utf-8')
return True
except Exception as e:
print(f"Error opening log file {log_file_path}: {e}")
return False
return True
def close_log_file():
"""Close the log file if it's open."""
global _log_file
if _log_file is not None:
_log_file.close()
_log_file = None
def save_memory(memory_file, problem_statement, other_prompts, current_iteration, max_runs, solution=None, verify=None):
"""
Save the current state to a memory file.
"""
memory = {
"problem_statement": problem_statement,
"other_prompts": other_prompts,
"current_iteration": current_iteration,
"max_runs": max_runs,
"solution": solution,
"verify": verify,
"timestamp": __import__('datetime').datetime.now().isoformat()
}
try:
with open(memory_file, 'w', encoding='utf-8') as f:
json.dump(memory, f, indent=2, ensure_ascii=False)
print(f"Memory saved to {memory_file}")
return True
except Exception as e:
print(f"Error saving memory to {memory_file}: {e}")
return False
def load_memory(memory_file):
"""
Load the state from a memory file.
"""
try:
with open(memory_file, 'r', encoding='utf-8') as f:
memory = json.load(f)
print(f"Memory loaded from {memory_file}")
return memory
except Exception as e:
print(f"Error loading memory from {memory_file}: {e}")
return None
step1_prompt = """
### Core Instructions ###
* **Rigor is Paramount:** Your primary goal is to produce a complete and rigorously justified solution. Every step in your solution must be logically sound and clearly explained. A correct final answer derived from flawed or incomplete reasoning is considered a failure.
* **Honesty About Completeness:** If you cannot find a complete solution, you must **not** guess or create a solution that appears correct but contains hidden flaws or justification gaps. Instead, you should present only significant partial results that you can rigorously prove. A partial result is considered significant if it represents a substantial advancement toward a full solution. Examples include:
* Proving a key lemma.
* Fully resolving one or more cases within a logically sound case-based proof.
* Establishing a critical property of the mathematical objects in the problem.
* For an optimization problem, proving an upper or lower bound without proving that this bound is achievable.
* **Use TeX for All Mathematics:** All mathematical variables, expressions, and relations must be enclosed in TeX delimiters (e.g., `Let $n$ be an integer.`).
### Output Format ###
Your response MUST be structured into the following sections, in this exact order.
**1. Summary**
Provide a concise overview of your findings. This section must contain two parts:
* **a. Verdict:** State clearly whether you have found a complete solution or a partial solution.
* **For a complete solution:** State the final answer, e.g., "I have successfully solved the problem. The final answer is..."
* **For a partial solution:** State the main rigorous conclusion(s) you were able to prove, e.g., "I have not found a complete solution, but I have rigorously proven that..."
* **b. Method Sketch:** Present a high-level, conceptual outline of your solution. This sketch should allow an expert to understand the logical flow of your argument without reading the full detail. It should include:
* A narrative of your overall strategy.
* The full and precise mathematical statements of any key lemmas or major intermediate results.
* If applicable, describe any key constructions or case splits that form the backbone of your argument.
**2. Detailed Solution**
Present the full, step-by-step mathematical proof. Each step must be logically justified and clearly explained. The level of detail should be sufficient for an expert to verify the correctness of your reasoning without needing to fill in any gaps. This section must contain ONLY the complete, rigorous proof, free of any internal commentary, alternative approaches, or failed attempts.
### Self-Correction Instruction ###
Before finalizing your output, carefully review your "Method Sketch" and "Detailed Solution" to ensure they are clean, rigorous, and strictly adhere to all instructions provided above. Verify that every statement contributes directly to the final, coherent mathematical argument.
"""
self_improvement_prompt = """
You have an opportunity to improve your solution. Please review your solution carefully. Correct errors and fill justification gaps if any. Your second round of output should strictly follow the instructions in the system prompt.
"""
check_verification_prompt = """
Can you carefully review each item in your list of findings? Are they valid or overly strict? An expert grader must be able to distinguish between a genuine flaw and a concise argument that is nonetheless sound, and to correct their own assessment when necessary.
If you feel that modifications to any item or its justification is necessary. Please produce a new list. In your final output, please directly start with **Summary** (no need to justify the new list).
"""
correction_prompt = """
Below is the bug report. If you agree with certain item in it, can you improve your solution so that it is complete and rigorous? Note that the evaluator who generates the bug report can misunderstand your solution and thus make mistakes. If you do not agree with certain item in the bug report, please add some detailed explanations to avoid such misunderstanding. Your new solution should strictly follow the instructions in the system prompt.
"""
verification_system_prompt = """
You are an expert mathematician and a meticulous grader for an International Mathematical Olympiad (IMO) level exam. Your primary task is to rigorously verify the provided mathematical solution. A solution is to be judged correct **only if every step is rigorously justified.** A solution that arrives at a correct final answer through flawed reasoning, educated guesses, or with gaps in its arguments must be flagged as incorrect or incomplete.
### Instructions ###
**1. Core Instructions**
* Your sole task is to find and report all issues in the provided solution. You must act as a **verifier**, NOT a solver. **Do NOT attempt to correct the errors or fill the gaps you find.**
* You must perform a **step-by-step** check of the entire solution. This analysis will be presented in a **Detailed Verification Log**, where you justify your assessment of each step: for correct steps, a brief justification suffices; for steps with errors or gaps, you must provide a detailed explanation.
**2. How to Handle Issues in the Solution**
When you identify an issue in a step, you MUST first classify it into one of the following two categories and then follow the specified procedure.
* **a. Critical Error:**
This is any error that breaks the logical chain of the proof. This includes both **logical fallacies** (e.g., claiming that `A>B, C>D` implies `A-C>B-D`) and **factual errors** (e.g., a calculation error like `2+3=6`).
* **Procedure:**
* Explain the specific error and state that it **invalidates the current line of reasoning**.
* Do NOT check any further steps that rely on this error.
* You MUST, however, scan the rest of the solution to identify and verify any fully independent parts. For example, if a proof is split into multiple cases, an error in one case does not prevent you from checking the other cases.
* **b. Justification Gap:**
This is for steps where the conclusion may be correct, but the provided argument is incomplete, hand-wavy, or lacks sufficient rigor.
* **Procedure:**
* Explain the gap in the justification.
* State that you will **assume the step's conclusion is true** for the sake of argument.
* Then, proceed to verify all subsequent steps to check if the remainder of the argument is sound.
**3. Output Format**
Your response MUST be structured into two main sections: a **Summary** followed by the **Detailed Verification Log**.
* **a. Summary**
This section MUST be at the very beginning of your response. It must contain two components:
* **Final Verdict**: A single, clear sentence declaring the overall validity of the solution. For example: "The solution is correct," "The solution contains a Critical Error and is therefore invalid," or "The solution's approach is viable but contains several Justification Gaps."
* **List of Findings**: A bulleted list that summarizes **every** issue you discovered. For each finding, you must provide:
* **Location:** A direct quote of the key phrase or equation where the issue occurs.
* **Issue:** A brief description of the problem and its classification (**Critical Error** or **Justification Gap**).
* **b. Detailed Verification Log**
Following the summary, provide the full, step-by-step verification log as defined in the Core Instructions. When you refer to a specific part of the solution, **quote the relevant text** to make your reference clear before providing your detailed analysis of that part.
**Example of the Required Summary Format**
*This is a generic example to illustrate the required format. Your findings must be based on the actual solution provided below.*
**Final Verdict:** The solution is **invalid** because it contains a Critical Error.
**List of Findings:**
* **Location:** "By interchanging the limit and the integral, we get..."
* **Issue:** Justification Gap - The solution interchanges a limit and an integral without providing justification, such as proving uniform convergence.
* **Location:** "From $A > B$ and $C > D$, it follows that $A-C > B-D$"
* **Issue:** Critical Error - This step is a logical fallacy. Subtracting inequalities in this manner is not a valid mathematical operation.
"""
verification_remider = """
### Verification Task Reminder ###
Your task is to act as an IMO grader. Now, generate the **summary** and the **step-by-step verification log** for the solution above. In your log, justify each correct step and explain in detail any errors or justification gaps you find, as specified in the instructions above.
"""
def get_api_key():
"""
Retrieves the Google API key from environment variables.
Exits if the key is not found.
"""
api_key = os.getenv("GOOGLE_API_KEY")
if not api_key:
print("Error: GOOGLE_API_KEY environment variable not set.")
print("Please set the variable, e.g., 'export GOOGLE_API_KEY=\"your_api_key\"'")
sys.exit(1)
return api_key
def read_file_content(filepath):
"""
Reads and returns the content of a file.
Exits if the file cannot be read.
"""
try:
with open(filepath, 'r', encoding='utf-8') as f:
return f.read()
except FileNotFoundError:
print(f"Error: File not found at '{filepath}'")
sys.exit(1)
except Exception as e:
print(f"Error reading file '{filepath}': {e}")
sys.exit(1)
def build_request_payload(system_prompt, question_prompt, other_prompts=None):
"""
Builds the JSON payload for the Gemini API request, using the
recommended multi-turn format to include a system prompt.
"""
payload = {
"systemInstruction": {
"role": "system",
"parts": [
{
"text": system_prompt
}
]
},
"contents": [
{
"role": "user",
"parts": [{"text": question_prompt}]
}
],
"generationConfig": {
"temperature": 0.1,
"topP": 1.0,
"thinkingConfig": { "thinkingBudget": 32768}
},
}
if other_prompts:
for prompt in other_prompts:
payload["contents"].append({
"role": "user",
"parts": [{"text": prompt}]
})
return payload
def send_api_request(api_key, payload):
"""
Sends the request to the Gemini API and returns the response.
"""
headers = {
"Content-Type": "application/json",
"X-goog-api-key": api_key # API key now in header!
}
#print("Sending request to Gemini API...")
try:
response = requests.post(API_URL, headers=headers, data=json.dumps(payload))
response.raise_for_status() # Raises an HTTPError for bad responses (4xx or 5xx)
return response.json()
except requests.exceptions.RequestException as e:
print(f"Error during API request: {e}")
if response.status_code == 400:
print(f"Possible reason for 400: Model '{MODEL_NAME}' might not be available or URL is incorrect for your setup.")
print(f"Raw API Response (if available): {response.text}")
#sys.exit(1)
raise e
def extract_text_from_response(response_data):
"""
Extracts the generated text from the API response JSON.
Handles potential errors if the response format is unexpected.
"""
try:
return response_data['candidates'][0]['content']['parts'][0]['text']
except (KeyError, IndexError, TypeError) as e:
print("Error: Could not extract text from the API response.")
print(f"Reason: {e}")
print("Full API Response:")
print(json.dumps(response_data, indent=2))
#sys.exit(1)
raise e
def extract_detailed_solution(solution, marker='Detailed Solution', after=True):
"""
Extracts the text after '### Detailed Solution ###' from the solution string.
Returns the substring after the marker, stripped of leading/trailing whitespace.
If the marker is not found, returns an empty string.
"""
idx = solution.find(marker)
if idx == -1:
return ''
if(after):
return solution[idx + len(marker):].strip()
else:
return solution[:idx].strip()
def verify_solution(problem_statement, solution, verbose=True):
dsol = extract_detailed_solution(solution)
newst = f"""
======================================================================
### Problem ###
{problem_statement}
======================================================================
### Solution ###
{dsol}
{verification_remider}
"""
if(verbose):
print(">>>>>>> Start verification.")
p2 = build_request_payload(system_prompt=verification_system_prompt,
question_prompt=newst
)
if(verbose):
print(">>>>>>> Verification prompt:")
print(json.dumps(p2, indent=4))
res = send_api_request(get_api_key(), p2)
out = extract_text_from_response(res)
if(verbose):
print(">>>>>>> Verification results:")
print(json.dumps(out, indent=4))
check_correctness = """Response in "yes" or "no". Is the following statement saying the solution is correct, or does not contain critical error or a major justification gap?""" \
+ "\n\n" + out
prompt = build_request_payload(system_prompt="", question_prompt=check_correctness)
r = send_api_request(get_api_key(), prompt)
o = extract_text_from_response(r)
if(verbose):
print(">>>>>>> Is verification good?")
print(json.dumps(o, indent=4))
bug_report = ""
if("yes" not in o.lower()):
bug_report = extract_detailed_solution(out, "Detailed Verification", False)
"""p2["contents"].append(
{"role": "model",
"parts": [{"text": bug_report}]
}
)
p2["contents"].append(
{"role": "user",
"parts": [{"text": check_verification_prompt}]
}
)
if(verbose):
print(">>>>>>> Review bug report prompt:")
print(json.dumps(p2["contents"][-2:], indent=4))
res = send_api_request(get_api_key(), p2)
out = extract_text_from_response(res)
"""
if(verbose):
print(">>>>>>>Bug report:")
print(json.dumps(bug_report, indent=4))
return bug_report, o
def check_if_solution_claimed_complete(solution):
check_complete_prompt = f"""
Is the following text claiming that the solution is complete?
==========================================================
{solution}
==========================================================
Response in exactly "yes" or "no". No other words.
"""
p1 = build_request_payload(system_prompt="", question_prompt=check_complete_prompt)
r = send_api_request(get_api_key(), p1)
o = extract_text_from_response(r)
print(o)
return "yes" in o.lower()
def init_explorations(problem_statement, verbose=True, other_prompts=[]):
p1 = build_request_payload(
system_prompt=step1_prompt,
question_prompt=problem_statement,
#other_prompts=["* Please explore all methods for solving the problem, including casework, induction, contradiction, and analytic geometry, if applicable."]
#other_prompts = ["You may use analytic geometry to solve the problem."]
other_prompts = other_prompts
)
print(f">>>>>> Initial prompt.")
print(json.dumps(p1, indent=4))
response1 = send_api_request(get_api_key(), p1)
output1 = extract_text_from_response(response1)
print(f">>>>>>> First solution: ")
print(json.dumps(output1, indent=4))
print(f">>>>>>> Self improvement start:")
p1["contents"].append(
{"role": "model",
"parts": [{"text": output1}]
}
)
p1["contents"].append(
{"role": "user",
"parts": [{"text": self_improvement_prompt}]
}
)
response2 = send_api_request(get_api_key(), p1)
solution = extract_text_from_response(response2)
print(f">>>>>>> Corrected solution: ")
print(json.dumps(solution, indent=4))
#print(f">>>>>>> Check if solution is complete:" )
#is_complete = check_if_solution_claimed_complete(output1)
#if not is_complete:
# print(f">>>>>>> Solution is not complete. Failed.")
# return None, None, None, None
print(f">>>>>>> Vefify the solution.")
verify, good_verify = verify_solution(problem_statement, solution, verbose)
print(f">>>>>>> Initial verification: ")
print(json.dumps(verify, indent=4))
print(f">>>>>>> verify results: {good_verify}")
return p1, solution, verify, good_verify
def agent(problem_statement, other_prompts=[], memory_file=None, resume_from_memory=False):
if resume_from_memory and memory_file:
# Load memory and resume from previous state
memory = load_memory(memory_file)
if memory:
problem_statement = memory.get("problem_statement", problem_statement)
other_prompts = memory.get("other_prompts", other_prompts)
current_iteration = memory.get("current_iteration", 0)
solution = memory.get("solution", None)
verify = memory.get("verify", None)
print(f"Resuming from iteration {current_iteration}")
else:
print("Failed to load memory, starting fresh")
current_iteration = 0
solution = None
verify = None
else:
# Start fresh
current_iteration = 0
solution = None
verify = None
if solution is None:
p1, solution, verify, good_verify = init_explorations(problem_statement, True, other_prompts)
if(solution is None):
print(">>>>>>> Failed in finding a complete solution.")
return None
else:
# We have a solution from memory, need to get good_verify
_, good_verify = verify_solution(problem_statement, solution)
error_count = 0
correct_count = 1
success = False
for i in range(current_iteration, 30):
print(f"Number of iterations: {i}, number of corrects: {correct_count}, number of errors: {error_count}")
if("yes" not in good_verify.lower()):
# clear
correct_count = 0
error_count += 1
#self improvement
print(">>>>>>> Verification does not pass, correcting ...")
# establish a new prompt that contains the solution and the verification
p1 = build_request_payload(
system_prompt=step1_prompt,
question_prompt=problem_statement,
#other_prompts=["You may use analytic geometry to solve the problem."]
other_prompts=other_prompts
)
p1["contents"].append(
{"role": "model",
"parts": [{"text": solution}]
}
)
p1["contents"].append(
{"role": "user",
"parts": [{"text": correction_prompt},
{"text": verify}]
}
)
print(">>>>>>> New prompt:")
print(json.dumps(p1, indent=4))
response2 = send_api_request(get_api_key(), p1)
solution = extract_text_from_response(response2)
print(">>>>>>> Corrected solution:")
print(json.dumps(solution, indent=4))
#print(f">>>>>>> Check if solution is complete:" )
#is_complete = check_if_solution_claimed_complete(solution)
#if not is_complete:
# print(f">>>>>>> Solution is not complete. Failed.")
# return None
print(f">>>>>>> Verify the solution.")
verify, good_verify = verify_solution(problem_statement, solution)
if("yes" in good_verify.lower()):
print(">>>>>>> Solution is good, verifying again ...")
correct_count += 1
error_count = 0
# Save memory every iteration
if memory_file:
save_memory(memory_file, problem_statement, other_prompts, i, 30, solution, verify)
if(correct_count >= 5):
print(">>>>>>> Correct solution found.")
print(json.dumps(solution, indent=4))
return solution
elif(error_count >= 10):
print(">>>>>>> Failed in finding a correct solution.")
# Save final state before returning
if memory_file:
save_memory(memory_file, problem_statement, other_prompts, i, 30, solution, verify)
return None
if(not success):
print(">>>>>>> Failed in finding a correct solution.")
# Save final state before returning
if memory_file:
save_memory(memory_file, problem_statement, other_prompts, 30, 30, solution, verify)
return None
if __name__ == "__main__":
# Set up argument parsing
parser = argparse.ArgumentParser(description='IMO Problem Solver Agent')
parser.add_argument('problem_file', nargs='?', default='problem_statement.txt',
help='Path to the problem statement file (default: problem_statement.txt)')
parser.add_argument('--log', '-l', type=str, help='Path to log file (optional)')
parser.add_argument('--other_prompts', '-o', type=str, help='Other prompts (optional)')
parser.add_argument("--max_runs", '-m', type=int, default=10, help='Maximum number of runs (default: 10)')
parser.add_argument('--memory', '-mem', type=str, help='Path to memory file for saving/loading state (optional)')
parser.add_argument('--resume', '-r', action='store_true', help='Resume from memory file if provided')
args = parser.parse_args()
max_runs = args.max_runs
memory_file = args.memory
resume_from_memory = args.resume
other_prompts = []
if args.other_prompts:
other_prompts = args.other_prompts.split(',')
print(">>>>>>> Other prompts:")
print(other_prompts)
if memory_file:
print(f"Memory file: {memory_file}")
if resume_from_memory:
print("Resume mode: Will attempt to load from memory file")
# Set up logging if log file is specified
if args.log:
if not set_log_file(args.log):
sys.exit(1)
print(f"Logging to file: {args.log}")
problem_statement = read_file_content(args.problem_file)
for i in range(max_runs):
print(f"\n\n>>>>>>>>>>>>>>>>>>>>>>>>>> Run {i} of {max_runs} ...")
try:
sol = agent(problem_statement, other_prompts, memory_file, resume_from_memory)
if(sol is not None):
print(f">>>>>>> Found a correct solution in run {i}.")
print(json.dumps(sol, indent=4))
break
except Exception as e:
print(f">>>>>>> Error in run {i}: {e}")
continue
# Close log file if it was opened
close_log_file()