From 686f73e4162a8e52521cf2fdfb7c5b4df481a6f8 Mon Sep 17 00:00:00 2001 From: Wojciech Gryc Date: Mon, 8 May 2023 14:21:36 -0400 Subject: [PATCH] Update README.md Updating for v0.0.6. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 11af548..37b3ad3 100644 --- a/README.md +++ b/README.md @@ -52,10 +52,10 @@ cohere_api_key = os.getenv("COHERE_API_KEY") We're going to set up the *Evaluator*, which takes two LLM model outputs and decides which one is better for the objective at hand. ```python -from phasellm.eval import GPT35Evaluator +from phasellm.eval import GPTEvaluator -# We'll use GPT-3.5 as the evaluator. -e = GPT35Evaluator(openai_api_key) +# We'll use GPT-3.5 as the evaluator (default for GPTEvaluator). +e = GPTEvaluator(openai_api_key) ``` Now it's time to set up the experiment. In this case, we'll set up an `objective` which describes what we're trying to achieve with our chatbot. We'll also provide 5 examples of starting chats that we've seen with our users.