Skip to content

Commit

Permalink
Change default model to regular model
Browse files Browse the repository at this point in the history
  • Loading branch information
KennyDizi committed Dec 9, 2024
1 parent e3d779c commit 6352e6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pr_agent/algo/pr_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ async def retry_with_fallback_models(f: Callable, model_type: ModelType = ModelT
raise Exception(f"Failed to generate prediction with any model of {all_models}")


def _get_all_models(model_type: ModelType = ModelType.WEAK) -> List[str]:
def _get_all_models(model_type: ModelType = ModelType.REGULAR) -> List[str]:
if model_type == ModelType.WEAK:
model = get_settings().config.model_weak
else:
Expand Down

0 comments on commit 6352e6e

Please sign in to comment.