Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions quickstart_llm.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,13 @@ We'll evaluate the answers for:

Each evaluation is a `descriptor`. It adds a new score or label to each row in your dataset.

For LLM-as-a-judge, we'll use OpenAI GPT-4o mini. Set OpenAI key as an environment variable:
For LLM-as-a-judge, we'll use OpenAI GPT-4o mini. This requires the `openai` package, which is not installed by default:

```python
!pip install openai
```

Set OpenAI key as an environment variable:

```python
## import os
Expand Down Expand Up @@ -249,6 +255,4 @@ You can implement custom criteria using built-in LLM judge templates.

## What's next?

Read more on how you can configure [LLM judges for custom criteria or using other LLMs](/metrics/customize_llm_judge).

We also have lots of other examples! [Explore tutorials](/metrics/introduction).
Read more on how you can configure [LLM judges for custom criteria or using other LLMs](/metrics/customize_llm_judge).