Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
update judge llm (#869)
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdai authored Jan 16, 2024
1 parent 80d8b41 commit 95eeb34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llama_hub/llama_packs/rag_evaluator/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __init__(
self.rag_dataset = rag_dataset
self._num_examples = len(self.rag_dataset.examples)
if judge_llm is None:
self.judge_llm = OpenAI(temperature=0, model="gpt-4")
self.judge_llm = OpenAI(temperature=0, model="gpt-4-1106-preview")
else:
assert isinstance(judge_llm, LLM)
self.judge_llm = judge_llm
Expand Down

0 comments on commit 95eeb34

Please sign in to comment.