Skip to content

Commit

Permalink
Draft change to only use ai-binary for code generation, not code fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
DonggeLiu committed Mar 29, 2024
1 parent b4928d2 commit 749306b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llm_toolkit/code_fixer.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,8 @@ def apply_llm_fix(ai_binary: str,
temperature: float = 0.4):
"""Queries LLM to fix the code."""
fixer_model = models.LLM.setup(
ai_binary=ai_binary,
name=fixer_model_name,
ai_binary='',
name=models.DefaultModel.name,
num_samples=1,
temperature=temperature,
)
Expand Down

0 comments on commit 749306b

Please sign in to comment.