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
11 changes: 9 additions & 2 deletions quickstart_llm.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,19 @@ Let’s dive in.

## 1. Set up your environment

Install the Evidently Python library:
Install the Evidently Python library. The OpenAI-backed LLM judges in this
quickstart (for example `DeclineLLMEval`, which defaults to `provider="openai"`)
also need the `openai` package. Installing `openai` alone is enough for these
examples — you do not need the heavier `evidently[llm]` extra (which pulls
`transformers[torch]` and similar deps).

```python
!pip install evidently
!pip install evidently openai
```

If you only need deterministic descriptors (`Sentiment`, `TextLength`,
`IncludesWords`, …), `pip install evidently` is sufficient.

Components to run the evals:

```python
Expand Down