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: 12 additions & 0 deletions SCORERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,18 @@ Binary scorer that checks for exact string equality.
- `1` = Values are exactly equal
- `0` = Values differ

**Example:**

```python
from autoevals import ExactMatch

scorer = ExactMatch()
result = scorer.eval(output="hello", expected="hello")

print(result.name) # ExactMatch
print(result.score) # 1
```

### NumericDiff

Evaluates numeric differences with configurable thresholds.
Expand Down
Loading