Skip to content

Commit

Permalink
make fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
ecatkins committed Oct 16, 2023
1 parent f9ee9e0 commit becb713
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions py/autoevals/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __init__(
render_args=None,
max_tokens=None,
temperature=None,
engine=None
engine=None,
):
self.name = name
self.model = model
Expand Down Expand Up @@ -190,7 +190,7 @@ def __init__(
use_cot=True,
max_tokens=512,
temperature=0,
engine=None
engine=None,
):
choice_strings = list(choice_scores.keys())

Expand All @@ -216,7 +216,7 @@ def __init__(

@classmethod
def from_spec(cls, name: str, spec: ModelGradedSpec, **kwargs):
return cls(name, spec.prompt, spec.choice_scores, **kwargs)
return cls(name, spec.prompt, spec.choice_scores, **kwargs)

@classmethod
def from_spec_file(cls, name: str, path: str, **kwargs):
Expand Down

0 comments on commit becb713

Please sign in to comment.