forked from confident-ai/deepeval
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha.py
More file actions
33 lines (32 loc) · 1.06 KB
/
a.py
File metadata and controls
33 lines (32 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from deepeval import evaluate
from deepeval.metrics import TurnRelevancyMetric
from deepeval.test_case import LLMTestCase, ConversationalTestCase, Turn
evaluate(
test_cases=[
ConversationalTestCase(
scenario="You are a helpful assistant.",
user_description="What is the weather in San Francisco?",
context=["It is sunny and 70 degrees."],
tags=["weather"],
turns=[
Turn(
role="user",
content="What is the weather in San Francisco?",
),
],
),
ConversationalTestCase(
scenario="You are a helpful assistant.",
user_description="What is the weather in San Francisco?",
context=["It is sunny and 70 degrees."],
tags=["something else"],
turns=[
Turn(
role="user",
content="What is the weather in San Francisco?",
),
],
),
],
metrics=[TurnRelevancyMetric()],
)