(no title)
gronky_ | 6 months ago
def make_pass@1_agent(agent, n):
def retry_agent(problem):
for attempt in range(n):
result = agent(problem)
if result.success:
return result
return result
return retry_agent
terminalshort|6 months ago
Think of the agent like an employee. If he delivers the code within the expected time and to the expected quality standards, his process of getting there means almost nothing. Do I care if he tried 4 different approaches along the way and threw out the first 3? Not a bit.
DougBTX|6 months ago
gronky_|6 months ago
If they are running their production product as is, then of course whatever is built into the product is fine.