Agentic or Tool use(智能体或工具使用)
智能体或工具使用工作流可以从多个维度进行评估。以下是一些可用于评估智能体或工具在给定任务中表现的指标。
Topic Adherence(主题遵守)
部署在真实应用中的 AI 系统在与用户交互时应遵守其关注领域,但 LLM 有时可能通过忽略这一限制来回答一般查询。Topic Adherence 指标评估 AI 在交互过程中停留在预定义领域的能力。该指标在对话式 AI 系统中尤其重要,因为 AI 只应向与预定义领域相关的查询提供帮助。
TopicAdherence 需要一组 AI 系统应遵守的预定义主题,通过 reference_topics 与 user_input 一起提供。该指标可以计算 topic adherence 的 precision、recall 和 F1 score,定义为
[ \text{Precision } = {|\text{Queries that are answered and are adheres to any present reference topics}| \over |\text{Queries that are answered and are adheres to any present reference topics}| + |\text{Queries that are answered and do not adheres to any present reference topics}|} ]
[ \text{Recall } = {|\text{Queries that are answered and are adheres to any present reference topics}| \over |\text{Queries that are answered and are adheres to any present reference topics}| + |\text{Queries that were refused and should have been answered}|} ]
[ \text{F1 Score } = {2 \times \text{Precision} \times \text{Recall} \over \text{Precision} + \text{Recall}} ]
示例
import asyncio
from openai import AsyncOpenAI
from ragas.llms.base import llm_factory
from ragas.metrics.collections import TopicAdherence
from ragas.messages import HumanMessage, AIMessage, ToolMessage, ToolCall
async def evaluate_topic_adherence():
# Setup LLM
client = AsyncOpenAI()
llm = llm_factory("gpt-4o-mini", client=client)
user_input = [
HumanMessage(
content="Can you provide me with details about Einstein's theory of relativity?"
),
AIMessage(
content="Sure, let me retrieve the relevant information for you.",
tool_calls=[
ToolCall(
name="document_search",
args={"query": "Einstein's theory of relativity"},
)
],
),
ToolMessage(
content="Found relevant documents: 1. Relativity: The Special and the General Theory, 2. General Theory of Relativity by A. Einstein."
),
AIMessage(
content="I found some documents on Einstein's theory of relativity. Which one would you like to know more about: 'Relativity: The Special and the General Theory' or 'General Theory of Relativity by A. Einstein'?"
),
HumanMessage(content="Tell me about the 'General Theory of Relativity'."),
AIMessage(
content="Got it! Let me fetch more details from 'General Theory of Relativity by A. Einstein'.",
tool_calls=[
ToolCall(
name="document_retrieve",
args={"document": "General Theory of Relativity by A. Einstein"},
)
],
),
ToolMessage(
content="The document discusses how gravity affects the fabric of spacetime, describing the relationship between mass and spacetime curvature."
),
AIMessage(
content="The 'General Theory of Relativity' explains how gravity affects the fabric of spacetime and the relationship between mass and spacetime curvature. Would you like more details or a specific explanation?"
),
HumanMessage(
content="No, that's perfect. By the way, do you know any good recipes for a chocolate cake?"
),
AIMessage(
content="Sure! Let me find a simple and delicious recipe for a chocolate cake.",
tool_calls=[
ToolCall(name="recipe_search", args={"query": "chocolate cake recipe"})
],
),
ToolMessage(
content="Here's a popular recipe for a chocolate cake: Ingredients include flour, sugar, cocoa powder, eggs, milk, and butter. Instructions: Mix dry ingredients, add wet ingredients, and bake at 350°F for 30-35 minutes."
),
AIMessage(
content="I found a great recipe for chocolate cake! Would you like the full details, or is that summary enough?"
),
]
# Evaluate with precision mode
metric = TopicAdherence(llm=llm, mode="precision")
result = await metric.ascore(
user_input=user_input,
reference_topics=["science"],
)
print(f"Topic Adherence (precision): {result.value}")
if __name__ == "__main__":
asyncio.run(evaluate_topic_adherence())
输出
Topic Adherence (precision): 0.6666666666444444
要将 mode 改为 recall,将 mode 参数设置为 recall。
metric = TopicAdherence(llm=llm, mode="recall")
输出
0.99999999995
旧版 API(已弃用)
弃用通知
来自 ragas.metrics 的旧版 TopicAdherenceScore 已弃用,将在 v1.0 中移除。请迁移到 ragas.metrics.collections.TopicAdherence,它以现代 API 提供相同功能。
旧版 API 仍可使用,但需要 MultiTurnSample:
from ragas.dataset_schema import MultiTurnSample
from ragas.messages import HumanMessage, AIMessage, ToolMessage, ToolCall
from ragas.metrics import TopicAdherenceScore # Legacy import
from ragas.llms import LangchainLLMWrapper
from langchain_openai import ChatOpenAI
evaluator_llm = LangchainLLMWrapper(ChatOpenAI(model="gpt-4o"))
sample = MultiTurnSample(
user_input=[...], # conversation messages
reference_topics=["science"],
)
scorer = TopicAdherenceScore(llm=evaluator_llm, mode="precision")
score = await scorer.multi_turn_ascore(sample)
Tool call Accuracy(工具调用准确性)
ToolCallAccuracy 衡量 LLM 智能体调用工具与期望工具调用相比的准确程度。它评估工具调用的序列及其参数的准确性。该指标对于验证智能体在多步工作流中以正确参数调用正确工具特别有用。
该指标需要 user_input(对话消息)和 reference_tool_calls(期望的工具调用)。它返回 0 到 1 之间的分数,值越高表示表现越好。
主要特性
两种评估模式:
- Strict Order(默认):工具调用必须按序列精确匹配
- 适用于:顺序重要的顺序工作流
- 示例:必须先搜索再过滤结果
- Flexible Order:工具调用可以是任意顺序
- 适用于:顺序不重要的并行操作
- 示例:同时获取多个城市的天气
评分:
- 评估序列对齐(正确的工具以正确的顺序)
- 评估参数准确性(每个工具的正确参数)
- 最终分数 = (参数准确性) × (序列对齐 ? 1 : 0)
示例:基本用法
import asyncio
from ragas.metrics.collections import ToolCallAccuracy
from ragas.messages import AIMessage, HumanMessage, ToolCall
async def evaluate_tool_call_accuracy():
# Define the conversation with tool calls
user_input = [
HumanMessage(content="What's the weather like in New York right now?"),
AIMessage(
content="The current temperature in New York is 75°F and it's partly cloudy.",
tool_calls=[ToolCall(name="weather_check", args={"location": "New York"})],
),
HumanMessage(content="Can you translate that to Celsius?"),
AIMessage(
content="Let me convert that to Celsius for you.",
tool_calls=[
ToolCall(
name="temperature_conversion", args={"temperature_fahrenheit": 75}
)
],
),
]
# Define expected tool calls
reference_tool_calls = [
ToolCall(name="weather_check", args={"location": "New York"}),
ToolCall(name="temperature_conversion", args={"temperature_fahrenheit": 75}),
]
# Evaluate
metric = ToolCallAccuracy()
result = await metric.ascore(
user_input=user_input,
reference_tool_calls=reference_tool_calls,
)
print(f"Tool Call Accuracy: {result.value}")
if __name__ == "__main__":
asyncio.run(evaluate_tool_call_accuracy())
输出:
Tool Call Accuracy: 1.0
示例:Flexible Order 模式
适用于工具调用可以并行发生的场景:
# Enable flexible order mode
metric = ToolCallAccuracy(strict_order=False)
user_input = [
HumanMessage(content="Get weather for Paris and London"),
AIMessage(
content="Fetching weather data...",
tool_calls=[
ToolCall(name="weather_check", args={"location": "London"}),
ToolCall(name="weather_check", args={"location": "Paris"}),
],
),
]
reference_tool_calls = [
ToolCall(name="weather_check", args={"location": "Paris"}),
ToolCall(name="weather_check", args={"location": "London"}),
]
result = await metric.ascore(
user_input=user_input,
reference_tool_calls=reference_tool_calls,
)
print(f"Score: {result.value}") # 1.0 (order doesn't matter)
评分示例
完全匹配:
# All tools called correctly with correct arguments
Expected: [weather_check(location="Paris"), translate(text="hello")]
Got: [weather_check(location="Paris"), translate(text="hello")]
Score: 1.0
部分参数匹配:
# Some arguments incorrect
Expected: [search(query="python", limit=10, sort="date")]
Got: [search(query="python", limit=10, sort="relevance")]
Score: 0.66 (2 out of 3 arguments match)
错误顺序(strict 模式):
# Correct tools but wrong sequence
Expected: [search(...), filter(...)]
Got: [filter(...), search(...)]
Score: 0.0 (sequence not aligned)
用例
- 智能体验证:测试智能体是否正确使用工具
- 回归测试:确保工具调用在变更后不会退化
- 多步工作流:验证复杂的顺序操作
- 工具选择:验证智能体从众多选项中选择正确的工具
何时使用不同指标
| 指标 | 使用时机 |
|---|---|
| ToolCallAccuracy | 你关心精确的工具序列和参数 |
| ToolCallF1 | 你想要工具调用的 precision/recall 指标 |
| AgentGoalAccuracy | 你关心结果,而不是使用的具体工具 |
示例: 对于 "Book me a flight to Paris",如果你只关心预订成功(而不关心调用了哪些中间工具),请改用 AgentGoalAccuracyWithReference。
旧版 API(已弃用)
弃用通知
来自 ragas.metrics 的旧版 ToolCallAccuracy 已弃用,将在 v1.0 中移除。请迁移到 ragas.metrics.collections.ToolCallAccuracy,它以现代 API 提供相同功能。
旧版 API 仍可使用,但需要 MultiTurnSample:
from ragas.dataset_schema import MultiTurnSample
from ragas.messages import AIMessage, HumanMessage, ToolCall
from ragas.metrics import ToolCallAccuracy # Legacy import
sample = MultiTurnSample(
user_input=[
HumanMessage(content="What's the weather in New York?"),
AIMessage(
content="Checking weather...",
tool_calls=[ToolCall(name="weather_check", args={"location": "New York"})],
),
],
reference_tool_calls=[
ToolCall(name="weather_check", args={"location": "New York"}),
],
)
scorer = ToolCallAccuracy()
score = await scorer.multi_turn_ascore(sample)
旧版还支持自定义参数比较指标:
from ragas.metrics._string import NonLLMStringSimilarity
from ragas.metrics._tool_call_accuracy import ToolCallAccuracy
metric = ToolCallAccuracy()
metric.arg_comparison_metric = NonLLMStringSimilarity()
Tool Call F1
ToolCallF1 是一种基于智能体所做工具调用的 precision 和 recall 返回 F1-score 的指标,将它们与一组期望调用(reference_tool_calls)进行比较。ToolCallAccuracy 基于精确顺序和内容匹配提供二元分数,而 ToolCallF1 通过提供对接入和迭代有用的更软评估来补充它。即使智能体过度调用或调用不足,它也有助于量化智能体与期望行为有多接近。
公式
ToolCallF1 基于经典 IR 指标。它使用无序匹配:工具被调用的顺序不影响结果,只考虑工具名称和参数的存在性与正确性。
[ \text{Precision} = \frac{\text{tool calls that match both name and parameters}}{\text{tool calls that match both name and parameters} + \text{extra tool calls that were not expected}} ]
[ \text{Recall} = \frac{\text{tool calls that match both name and parameters}}{\text{tool calls that match both name and parameters} + \text{expected tool calls that were not made}} ]
[ \text{F1} = \frac{2 \cdot \text{Precision} \cdot \text{Recall}}{\text{Precision} + \text{Recall}} ]
与 Topic Adherence 有何不同?
虽然 ToolCallF1 和 TopicAdherenceScore 都使用 precision、recall 和 F1-score,但它们评估不同方面:
| 指标 | 评估内容 | 基于 |
|---|---|---|
ToolCallF1 |
工具执行的正确性 | 结构化的工具调用对象 |
TopicAdherenceScore |
对话是否保持在主题内 | 领域主题的比较 |
当你想跟踪智能体是否正确执行了工具时,使用 ToolCallF1。当你评估内容或意图是否停留在允许的主题内时,使用 TopicAdherenceScore。
示例:基本用法
import asyncio
from ragas.metrics.collections import ToolCallF1
from ragas.messages import HumanMessage, AIMessage, ToolCall
async def evaluate_tool_call_f1():
# Define the conversation with tool calls
user_input = [
HumanMessage(content="What's the weather like in Paris today?"),
AIMessage(
content="Let me check that for you.",
tool_calls=[ToolCall(name="weather_check", args={"location": "Paris"})],
),
HumanMessage(content="And the UV index?"),
AIMessage(
content="Sure, here's the UV index for Paris.",
tool_calls=[ToolCall(name="uv_index_lookup", args={"location": "Paris"})],
),
]
# Define expected tool calls
reference_tool_calls = [
ToolCall(name="weather_check", args={"location": "Paris"}),
ToolCall(name="uv_index_lookup", args={"location": "Paris"}),
]
# Evaluate
metric = ToolCallF1()
result = await metric.ascore(
user_input=user_input,
reference_tool_calls=reference_tool_calls,
)
print(f"Tool Call F1: {result.value}")
if __name__ == "__main__":
asyncio.run(evaluate_tool_call_f1())
输出:
Tool Call F1: 1.0
示例:额外调用了工具
当智能体进行了 reference 中没有的额外工具调用时:
user_input = [
HumanMessage(content="What's the weather like in Paris today?"),
AIMessage(
content="Let me check that for you.",
tool_calls=[ToolCall(name="weather_check", args={"location": "Paris"})],
),
HumanMessage(content="And the UV index?"),
AIMessage(
content="Sure, here's the UV index and air quality for Paris.",
tool_calls=[
ToolCall(name="uv_index_lookup", args={"location": "Paris"}),
ToolCall(name="air_quality", args={"location": "Paris"}), # extra call
],
),
]
reference_tool_calls = [
ToolCall(name="weather_check", args={"location": "Paris"}),
ToolCall(name="uv_index_lookup", args={"location": "Paris"}),
]
result = await metric.ascore(
user_input=user_input,
reference_tool_calls=reference_tool_calls,
)
print(f"F1 Score: {result.value}")
输出:
F1 Score: 0.67
在这种情况下:
- TP = 2 (weather_check, uv_index_lookup)
- FP = 1 (air_quality)
- FN = 0
- Precision = 2/3 = 0.67, Recall = 2/2 = 1.0, F1 = 0.67
评分示例
完全匹配:
# All tools called correctly
Reference: [weather_check(location="Paris"), uv_index_lookup(location="Paris")]
Got: [weather_check(location="Paris"), uv_index_lookup(location="Paris")]
F1 Score: 1.0
缺少工具调用:
# One expected tool not called
Reference: [weather_check(...), uv_index_lookup(...)]
Got: [weather_check(...)]
F1 Score: 0.67 (TP=1, FP=0, FN=1)
错误参数:
# Tool name matches but args differ
Reference: [weather_check(location="Paris")]
Got: [weather_check(location="London")]
F1 Score: 0.0 (no match, arguments must be exact)
旧版 API(已弃用)
弃用通知
来自 ragas.metrics 的旧版 ToolCallF1 已弃用,将在 v1.0 中移除。请迁移到 ragas.metrics.collections.ToolCallF1,它以现代 API 提供相同功能。
旧版 API 仍可使用,但需要 MultiTurnSample:
from ragas.metrics import ToolCallF1 # Legacy import
from ragas.dataset_schema import MultiTurnSample
from ragas.messages import HumanMessage, AIMessage, ToolCall
sample = MultiTurnSample(
user_input=[
HumanMessage(content="What's the weather like in Paris today?"),
AIMessage(
content="Let me check that for you.",
tool_calls=[ToolCall(name="weather_check", args={"location": "Paris"})],
),
],
reference_tool_calls=[
ToolCall(name="weather_check", args={"location": "Paris"}),
],
)
scorer = ToolCallF1()
score = await scorer.multi_turn_ascore(sample)
Agent Goal Accuracy(智能体目标准确性)
Agent goal accuracy 是一种可用于评估 LLM 在识别和实现用户目标方面表现的指标。这是一个二元指标,1 表示 AI 已实现目标,0 表示 AI 未实现目标。
有 Reference
AgentGoalAccuracyWithReference 通过将工作流的结束状态与所提供的 reference 结果进行比较,评估智能体是否实现了用户目标。reference 表示期望/理想结果。
import asyncio
from openai import AsyncOpenAI
from ragas.llms.base import llm_factory
from ragas.metrics.collections import AgentGoalAccuracyWithReference
from ragas.messages import AIMessage, HumanMessage, ToolCall, ToolMessage
async def evaluate_agent_goal_accuracy_with_reference():
# Setup LLM
client = AsyncOpenAI()
llm = llm_factory("gpt-4o-mini", client=client)
user_input = [
HumanMessage(
content="Hey, book a table at the nearest best Chinese restaurant for 8:00pm"
),
AIMessage(
content="Sure, let me find the best options for you.",
tool_calls=[
ToolCall(
name="restaurant_search",
args={"cuisine": "Chinese", "time": "8:00pm"},
)
],
),
ToolMessage(
content="Found a few options: 1. Golden Dragon, 2. Jade Palace"
),
AIMessage(
content="I found some great options: Golden Dragon and Jade Palace. Which one would you prefer?"
),
HumanMessage(content="Let's go with Golden Dragon."),
AIMessage(
content="Great choice! I'll book a table for 8:00pm at Golden Dragon.",
tool_calls=[
ToolCall(
name="restaurant_book",
args={"name": "Golden Dragon", "time": "8:00pm"},
)
],
),
ToolMessage(content="Table booked at Golden Dragon for 8:00pm."),
AIMessage(
content="Your table at Golden Dragon is booked for 8:00pm. Enjoy your meal!"
),
HumanMessage(content="thanks"),
]
metric = AgentGoalAccuracyWithReference(llm=llm)
result = await metric.ascore(
user_input=user_input,
reference="Table booked at one of the chinese restaurants at 8 pm",
)
print(f"Agent Goal Accuracy: {result.value}")
if __name__ == "__main__":
asyncio.run(evaluate_agent_goal_accuracy_with_reference())
输出
Agent Goal Accuracy: 1.0
无 Reference
AgentGoalAccuracyWithoutReference 在不需要 reference 的情况下评估智能体是否实现了用户目标。该指标从对话中推断用户的预期目标和已实现的结果,然后将它们进行比较。
import asyncio
from openai import AsyncOpenAI
from ragas.llms.base import llm_factory
from ragas.metrics.collections import AgentGoalAccuracyWithoutReference
from ragas.messages import AIMessage, HumanMessage, ToolCall, ToolMessage
async def evaluate_agent_goal_accuracy_without_reference():
# Setup LLM
client = AsyncOpenAI()
llm = llm_factory("gpt-4o-mini", client=client)
user_input = [
HumanMessage(
content="Hey, book a table at the nearest best Chinese restaurant for 8:00pm"
),
AIMessage(
content="Sure, let me find the best options for you.",
tool_calls=[
ToolCall(
name="restaurant_search",
args={"cuisine": "Chinese", "time": "8:00pm"},
)
],
),
ToolMessage(
content="Found a few options: 1. Golden Dragon, 2. Jade Palace"
),
AIMessage(
content="I found some great options: Golden Dragon and Jade Palace. Which one would you prefer?"
),
HumanMessage(content="Let's go with Golden Dragon."),
AIMessage(
content="Great choice! I'll book a table for 8:00pm at Golden Dragon.",
tool_calls=[
ToolCall(
name="restaurant_book",
args={"name": "Golden Dragon", "time": "8:00pm"},
)
],
),
ToolMessage(content="Table booked at Golden Dragon for 8:00pm."),
AIMessage(
content="Your table at Golden Dragon is booked for 8:00pm. Enjoy your meal!"
),
HumanMessage(content="thanks"),
]
metric = AgentGoalAccuracyWithoutReference(llm=llm)
result = await metric.ascore(user_input=user_input)
print(f"Agent Goal Accuracy: {result.value}")
if __name__ == "__main__":
asyncio.run(evaluate_agent_goal_accuracy_without_reference())
输出
Agent Goal Accuracy: 1.0
旧版 API(已弃用)
弃用通知
来自 ragas.metrics 的旧版 AgentGoalAccuracyWithReference 和 AgentGoalAccuracyWithoutReference 已弃用,将在 v1.0 中移除。请迁移到 ragas.metrics.collections,它以现代 API 提供相同功能。
旧版 API 仍可使用,但需要 MultiTurnSample:
from ragas.dataset_schema import MultiTurnSample
from ragas.messages import AIMessage, HumanMessage, ToolCall, ToolMessage
from ragas.metrics import AgentGoalAccuracyWithReference # Legacy import
from ragas.llms import LangchainLLMWrapper
from langchain_openai import ChatOpenAI
evaluator_llm = LangchainLLMWrapper(ChatOpenAI(model="gpt-4o"))
sample = MultiTurnSample(
user_input=[...], # conversation messages
reference="Table booked at one of the chinese restaurants at 8 pm",
)
scorer = AgentGoalAccuracyWithReference(llm=evaluator_llm)
score = await scorer.multi_turn_ascore(sample)