mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 00:28:31 +00:00
fixing linting
This commit is contained in:
@@ -936,10 +936,11 @@ class Crew(BaseModel):
|
|||||||
inputs: Optional[Dict[str, Any]] = None,
|
inputs: Optional[Dict[str, Any]] = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Test and evaluate the Crew with the given inputs for n iterations concurrently using concurrent.futures."""
|
"""Test and evaluate the Crew with the given inputs for n iterations concurrently using concurrent.futures."""
|
||||||
|
# type: ignore[arg-type]
|
||||||
self._test_execution_span = self._telemetry.test_execution_span(
|
self._test_execution_span = self._telemetry.test_execution_span(
|
||||||
self, n_iterations, inputs, openai_model_name
|
self, n_iterations, inputs, openai_model_name
|
||||||
)
|
)
|
||||||
evaluator = CrewEvaluator(self, openai_model_name)
|
evaluator = CrewEvaluator(self, openai_model_name) # type: ignore[arg-type]
|
||||||
|
|
||||||
for i in range(1, n_iterations + 1):
|
for i in range(1, n_iterations + 1):
|
||||||
evaluator.set_iteration(i)
|
evaluator.set_iteration(i)
|
||||||
|
|||||||
Reference in New Issue
Block a user