Skip to content

Commit

Permalink
Merge pull request #474 from GooeyAI/eval-lm
Browse files Browse the repository at this point in the history
fix: pass LargeLanguageModels to submit(), not str
  • Loading branch information
nikochiko authored Sep 25, 2024
2 parents 35b9581 + ffc7ce8 commit 44b3157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/BulkEval.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def submit(
futs.append(
pool.submit(
_run_language_model,
model=request.selected_model,
model=LargeLanguageModels[request.selected_model],
prompt=prompt,
result=TaskResult(
llm_output={},
Expand Down

0 comments on commit 44b3157

Please sign in to comment.