diff --git a/agentic_ai/evaluations/run_agent_eval.py b/agentic_ai/evaluations/run_agent_eval.py index 232da713e..96a71b99c 100644 --- a/agentic_ai/evaluations/run_agent_eval.py +++ b/agentic_ai/evaluations/run_agent_eval.py @@ -74,7 +74,7 @@ from evaluations import AgentEvaluationRunner, AgentTrace # Import utilities -from applications.utils import get_state_store +# from applications.utils import get_state_store # Commented out - not needed for evaluations class ToolCallTracker: @@ -595,7 +595,7 @@ async def main(): parser.add_argument("--agent", default=None, help="Agent type: single, reflection, handoff (overrides --agent-name)") parser.add_argument("--agent-name", default="agent_eval", help="Name for telemetry tracking") - parser.add_argument("--backend-url", default="http://localhost:700", help="Backend URL to send requests to") + parser.add_argument("--backend-url", default="http://localhost:7000", help="Backend URL to send requests to") parser.add_argument("--remote", action="store_true", help="Run evaluation in Azure AI Foundry portal only (skip local)") parser.add_argument("--local", action="store_true", help="Run local evaluation only (default if neither specified)") parser.add_argument("--limit", type=int, default=0, help="Limit number of test cases to run (0 = all)")