Skip to content

Commit

Permalink
experiment: make LLM_FIX_LIMIT adjustable (#316)
Browse files Browse the repository at this point in the history
During development it's convenient to being able to adjust this, for
example when focus during development is on aspects of OSS-Fuzz-gen that
is unrelated to code fixing it's convenient to decrease this to speed up
evaluation.
  • Loading branch information
DavidKorczynski committed Jun 11, 2024
1 parent 5564b36 commit 35a21d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion experiment/evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from experiment.workdir import WorkDirs
from llm_toolkit import code_fixer

LLM_FIX_LIMIT = 5
LLM_FIX_LIMIT = int(os.getenv('LLM_FIX_LIMIT', '5'))

OSS_FUZZ_COVERAGE_BUCKET = 'oss-fuzz-coverage'

Expand Down

0 comments on commit 35a21d9

Please sign in to comment.