strands-agents-evals 0.1.2__tar.gz → 0.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/PKG-INFO +1 -1
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/extractors/tools_use_extractor.py +30 -28
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/extractors/test_tools_use_extractor.py +64 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/.github/dependabot.yml +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/.github/workflows/integration-test.yml +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/.github/workflows/pr-and-push.yml +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/.github/workflows/pypi-publish-on-release.yml +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/.github/workflows/test-lint.yml +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/.gitignore +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/.pre-commit-config.yaml +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/CODE_OF_CONDUCT.md +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/CONTRIBUTING.md +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/LICENSE +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/NOTICE +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/README.md +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/STYLE_GUIDE.md +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/pyproject.toml +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/case.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/display/display_console.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/faithfulness_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/goal_success_rate_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/harmfulness_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/helpfulness_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/interactions_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/output_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/prompt_templates/case_prompt_template.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/prompt_templates/faithfulness/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/prompt_templates/faithfulness/faithfulness_v0.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/prompt_templates/goal_success_rate/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/prompt_templates/goal_success_rate/goal_success_rate_v0.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/prompt_templates/harmfulness/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/prompt_templates/harmfulness/harmfulness_v0.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/prompt_templates/helpfulness/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/prompt_templates/helpfulness/helpfulness_v0.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/prompt_templates/prompt_templates.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/prompt_templates/tool_parameter_accuracy/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/prompt_templates/tool_parameter_accuracy/tool_parameter_accuracy_v0.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/prompt_templates/tool_selection_accuracy/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/prompt_templates/tool_selection_accuracy/tool_selection_accuracy_v0.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/tool_parameter_accuracy_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/tool_selection_accuracy_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/trajectory_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/experiment.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/extractors/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/extractors/graph_extractor.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/extractors/swarm_extractor.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/extractors/trace_extractor.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/generators/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/generators/experiment_generator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/generators/prompt_template/prompt_templates.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/generators/topic_planner.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/mappers/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/mappers/session_mapper.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/mappers/strands_in_memory_session_mapper.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/simulation/README.md +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/simulation/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/simulation/actor_simulator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/simulation/profiles/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/simulation/profiles/actor_profile.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/simulation/prompt_templates/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/simulation/prompt_templates/actor_profile_extraction.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/simulation/prompt_templates/actor_system_prompt.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/simulation/prompt_templates/goal_completion.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/simulation/tools/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/simulation/tools/goal_completion.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/telemetry/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/telemetry/_cloudwatch_logger.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/telemetry/config.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/telemetry/tracer.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/tools/evaluation_tools.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/types/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/types/evaluation.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/types/evaluation_report.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/types/simulation/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/types/simulation/actor.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/types/trace.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/evaluators/test_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/evaluators/test_faithfulness_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/evaluators/test_goal_success_rate_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/evaluators/test_harmfulness_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/evaluators/test_helpfulness_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/evaluators/test_interactions_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/evaluators/test_output_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/evaluators/test_tool_parameter_accuracy_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/evaluators/test_tool_selection_accuracy_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/evaluators/test_trajectory_evaluator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/extractors/test_graph_extractor.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/extractors/test_swarm_extractor.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/extractors/test_trace_extractor.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/generators/test_experiment_generator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/generators/test_topic_planner.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/mappers/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/mappers/test_strands_in_memory_mapper.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/simulation/__init__.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/simulation/test_actor_simulator.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/simulation/test_goal_completion.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/telemetry/test_config.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/telemetry/test_tracer.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/test_cases.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/test_experiment.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/tools/test_evaluation_tools.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/types/test_trace.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/test_integration.py +0 -0
- {strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests_integ/test_output_evaluator.py +0 -0
|
@@ -22,37 +22,39 @@ def extract_agent_tools_used_from_messages(agent_messages):
|
|
|
22
22
|
if message.get("role") == "assistant":
|
|
23
23
|
message_info = message.get("content")
|
|
24
24
|
if len(message_info) > 0:
|
|
25
|
-
|
|
25
|
+
tools = []
|
|
26
26
|
for message in message_info:
|
|
27
27
|
if "toolUse" in message:
|
|
28
|
+
tools.append(message.get("toolUse"))
|
|
29
|
+
|
|
30
|
+
for tool in tools:
|
|
31
|
+
if tool:
|
|
32
|
+
tool_name = tool.get("name")
|
|
33
|
+
tool_input = tool.get("input")
|
|
34
|
+
tool_id = tool.get("toolUseId")
|
|
35
|
+
# get the tool result from the next message
|
|
36
|
+
tool_result = None
|
|
37
|
+
is_error = False
|
|
38
|
+
next_message_i = i + 1
|
|
39
|
+
while next_message_i < len(agent_messages):
|
|
40
|
+
next_message = agent_messages[next_message_i]
|
|
41
|
+
next_message_i += 1
|
|
42
|
+
|
|
43
|
+
if next_message.get("role") == "user":
|
|
44
|
+
content = next_message.get("content")
|
|
45
|
+
if content:
|
|
46
|
+
tool_result_dict = content[0].get("toolResult")
|
|
47
|
+
if tool_result_dict and tool_result_dict.get("toolUseId") == tool_id:
|
|
48
|
+
tool_result_content = tool_result_dict.get("content", [])
|
|
49
|
+
if len(tool_result_content) > 0:
|
|
50
|
+
tool_result = tool_result_content[0].get("text")
|
|
51
|
+
is_error = tool_result_dict.get("status") == "error"
|
|
52
|
+
break
|
|
53
|
+
|
|
54
|
+
tools_used.append(
|
|
55
|
+
{"name": tool_name, "input": tool_input, "tool_result": tool_result, "is_error": is_error}
|
|
56
|
+
)
|
|
28
57
|
tool = message.get("toolUse")
|
|
29
|
-
|
|
30
|
-
if tool:
|
|
31
|
-
tool_name = tool.get("name")
|
|
32
|
-
tool_input = tool.get("input")
|
|
33
|
-
tool_id = tool.get("toolUseId")
|
|
34
|
-
# get the tool result from the next message
|
|
35
|
-
tool_result = None
|
|
36
|
-
is_error = False
|
|
37
|
-
next_message_i = i + 1
|
|
38
|
-
while next_message_i < len(agent_messages):
|
|
39
|
-
next_message = agent_messages[next_message_i]
|
|
40
|
-
next_message_i += 1
|
|
41
|
-
|
|
42
|
-
if next_message.get("role") == "user":
|
|
43
|
-
content = next_message.get("content")
|
|
44
|
-
if content:
|
|
45
|
-
tool_result_dict = content[0].get("toolResult")
|
|
46
|
-
if tool_result_dict and tool_result_dict.get("toolUseId") == tool_id:
|
|
47
|
-
tool_result_content = tool_result_dict.get("content", [])
|
|
48
|
-
if len(tool_result_content) > 0:
|
|
49
|
-
tool_result = tool_result_content[0].get("text")
|
|
50
|
-
is_error = tool_result_dict.get("status") == "error"
|
|
51
|
-
break
|
|
52
|
-
|
|
53
|
-
tools_used.append(
|
|
54
|
-
{"name": tool_name, "input": tool_input, "tool_result": tool_result, "is_error": is_error}
|
|
55
|
-
)
|
|
56
58
|
return tools_used
|
|
57
59
|
|
|
58
60
|
|
|
@@ -48,6 +48,70 @@ def test_tools_use_extractor_extract_from_messages_with_tools():
|
|
|
48
48
|
assert result[0]["is_error"] is False
|
|
49
49
|
|
|
50
50
|
|
|
51
|
+
def test_tools_use_extractor_extract_from_messages_with_multiple_tools():
|
|
52
|
+
"""Test extracting multiple tool usages from messages"""
|
|
53
|
+
messages = [
|
|
54
|
+
{"role": "user", "content": [{"text": "Calculate 2+2 and search for weather"}]},
|
|
55
|
+
{
|
|
56
|
+
"role": "assistant",
|
|
57
|
+
"content": [
|
|
58
|
+
{"text": "I'll calculate and search for you."},
|
|
59
|
+
{
|
|
60
|
+
"toolUse": {
|
|
61
|
+
"toolUseId": "tool1",
|
|
62
|
+
"name": "calculator",
|
|
63
|
+
"input": {"expression": "2+2"},
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"toolUse": {
|
|
68
|
+
"toolUseId": "tool2",
|
|
69
|
+
"name": "web_search",
|
|
70
|
+
"input": {"query": "current weather"},
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
],
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"role": "user",
|
|
77
|
+
"content": [
|
|
78
|
+
{
|
|
79
|
+
"toolResult": {
|
|
80
|
+
"status": "success",
|
|
81
|
+
"content": [{"text": "Result: 4"}],
|
|
82
|
+
"toolUseId": "tool1",
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"role": "user",
|
|
89
|
+
"content": [
|
|
90
|
+
{
|
|
91
|
+
"toolResult": {
|
|
92
|
+
"status": "success",
|
|
93
|
+
"content": [{"text": "Sunny, 25°C"}],
|
|
94
|
+
"toolUseId": "tool2",
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
},
|
|
99
|
+
{"role": "assistant", "content": [{"text": "Results: 4 and sunny weather."}]},
|
|
100
|
+
]
|
|
101
|
+
|
|
102
|
+
result = extract_agent_tools_used_from_messages(messages)
|
|
103
|
+
|
|
104
|
+
assert len(result) == 2
|
|
105
|
+
assert result[0]["name"] == "calculator"
|
|
106
|
+
assert result[0]["input"] == {"expression": "2+2"}
|
|
107
|
+
assert result[0]["tool_result"] == "Result: 4"
|
|
108
|
+
assert result[0]["is_error"] is False
|
|
109
|
+
assert result[1]["name"] == "web_search"
|
|
110
|
+
assert result[1]["input"] == {"query": "current weather"}
|
|
111
|
+
assert result[1]["tool_result"] == "Sunny, 25°C"
|
|
112
|
+
assert result[1]["is_error"] is False
|
|
113
|
+
|
|
114
|
+
|
|
51
115
|
def test_tools_use_extractor_extract_from_messages_no_tools():
|
|
52
116
|
"""Test extracting tool usage from messages without tool usage"""
|
|
53
117
|
messages = [
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/.github/ISSUE_TEMPLATE/bug_report.yml
RENAMED
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/.github/ISSUE_TEMPLATE/feature_request.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/.github/workflows/integration-test.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/__init__.py
RENAMED
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/evaluators/evaluator.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/extractors/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/generators/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/mappers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/simulation/README.md
RENAMED
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/simulation/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/telemetry/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/telemetry/config.py
RENAMED
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/telemetry/tracer.py
RENAMED
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/types/__init__.py
RENAMED
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/src/strands_evals/types/evaluation.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/mappers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/simulation/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/test_experiment.py
RENAMED
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests/strands_evals/types/test_trace.py
RENAMED
|
File without changes
|
|
File without changes
|
{strands_agents_evals-0.1.2 → strands_agents_evals-0.1.3}/tests_integ/test_output_evaluator.py
RENAMED
|
File without changes
|