Skip to content

Commit

Permalink
Prioritize understanding over retrying
Browse files Browse the repository at this point in the history
  • Loading branch information
DonggeLiu committed Nov 14, 2024
1 parent 0416570 commit 90f388f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion prompts/agent/prototyper-system-instruction-protocols.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<interaction protocols>
Each of your responses MUST follow EXACTLY ONE of the following interaction protocols, not MULTIPLE of them.
Each of your responses MUST follow EITHER of the following interaction protocols.
Prioritize using bash tool to understand and verify how to implement or fix the fuzz target.

<bash tool protocol>

Expand Down
2 changes: 1 addition & 1 deletion utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def deserialize_from_dill(dill_path: Any) -> Any:
def _default_retry_delay_fn(e: Exception, n: int):
"""Delays retry by a random seconds between 0 to 1 minute."""
del e, n
return random.uniform(0, 60)
return random.uniform(60, 120)


def retryable(exceptions=None,
Expand Down

0 comments on commit 90f388f

Please sign in to comment.