Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions agentic_ai/evaluations/run_agent_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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)")
Expand Down
Loading