missing arg

This commit is contained in:
João Moura
2024-08-10 17:58:54 -03:00
parent 69df8245c9
commit 00997e5453

View File

@@ -941,7 +941,7 @@ class Crew(BaseModel):
) -> None:
"""Test and evaluate the Crew with the given inputs for n iterations."""
self._test_execution_span = self._telemetry.test_execution_span(
self, inputs, openai_model_name
self, n_iterations, inputs, openai_model_name
)
evaluator = CrewEvaluator(self, openai_model_name)