Skip to content

Commit 752f5aa

Browse files
author
Dylan Huang
authored
add ui to README (#27)
* add ui * update * add border * Revert "add border" This reverts commit 75c2ae8.
1 parent eba8448 commit 752f5aa

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ sophisticated agent evaluations that work across real-world scenarios, from
1212
markdown generation tasks to customer service agents with tool calling
1313
capabilities.
1414

15+
<p align="center">
16+
<img src="./assets/ui.png" alt="UI" />
17+
<br>
18+
<sub><b>Log Viewer: Monitor your evaluation rollouts in real time.</b></sub>
19+
</p>
20+
1521
## Quick Example
1622

1723
Here's a simple test function that checks if a model's response contains **bold** text formatting:
@@ -35,17 +41,17 @@ def test_bold_format(row: EvaluationRow) -> EvaluationRow:
3541
"""
3642
Simple evaluation that checks if the model's response contains bold text.
3743
"""
38-
44+
3945
assistant_response = row.messages[-1].content
40-
46+
4147
# Check if response contains **bold** text
4248
has_bold = "**" in assistant_response
43-
49+
4450
if has_bold:
4551
result = EvaluateResult(score=1.0, reason="✅ Response contains bold text")
4652
else:
4753
result = EvaluateResult(score=0.0, reason="❌ No bold text found")
48-
54+
4955
row.evaluation_result = result
5056
return row
5157
```

assets/ui.png

480 KB
Loading

0 commit comments

Comments
 (0)