@@ -325,18 +325,18 @@ async def op_csv_sla_breach_tickets(
325325
326326@operation (
327327 name = "workbench_list_tools" ,
328- description = "List tools available for Agent Workbench definitions" ,
328+ description = "List tools available for Agent Fabric definitions" ,
329329 http_method = "GET" ,
330330 http_path = "/api/workbench/tools" ,
331331)
332- async def op_workbench_list_tools () -> list [dict [str , str ]]:
332+ async def op_workbench_list_tools () -> list [dict [str , Any ]]:
333333 """Return all registered tool metadata from the workbench registry."""
334334 return _get_workbench_service ().list_tools ()
335335
336336
337337@operation (
338338 name = "workbench_list_agents" ,
339- description = "List all Agent Workbench agent definitions" ,
339+ description = "List all Agent Fabric agent definitions" ,
340340 http_method = "GET" ,
341341 http_path = "/api/workbench/agents" ,
342342)
@@ -348,7 +348,7 @@ async def op_workbench_list_agents() -> list[dict[str, Any]]:
348348
349349@operation (
350350 name = "workbench_create_agent" ,
351- description = "Create a new Agent Workbench agent definition" ,
351+ description = "Create a new Agent Fabric agent definition" ,
352352 http_method = "POST" ,
353353 http_path = "/api/workbench/agents" ,
354354)
@@ -360,7 +360,7 @@ async def op_workbench_create_agent(data: AgentDefinitionCreate) -> dict[str, An
360360
361361@operation (
362362 name = "workbench_get_agent" ,
363- description = "Get one Agent Workbench agent definition by id" ,
363+ description = "Get one Agent Fabric agent definition by id" ,
364364 http_method = "GET" ,
365365 http_path = "/api/workbench/agents/{agent_id}" ,
366366)
@@ -372,7 +372,7 @@ async def op_workbench_get_agent(agent_id: str) -> dict[str, Any] | None:
372372
373373@operation (
374374 name = "workbench_update_agent" ,
375- description = "Update an Agent Workbench agent definition" ,
375+ description = "Update an Agent Fabric agent definition" ,
376376 http_method = "PUT" ,
377377 http_path = "/api/workbench/agents/{agent_id}" ,
378378)
@@ -387,7 +387,7 @@ async def op_workbench_update_agent(
387387
388388@operation (
389389 name = "workbench_delete_agent" ,
390- description = "Delete an Agent Workbench agent definition" ,
390+ description = "Delete an Agent Fabric agent definition" ,
391391 http_method = "DELETE" ,
392392 http_path = "/api/workbench/agents/{agent_id}" ,
393393)
@@ -398,7 +398,7 @@ async def op_workbench_delete_agent(agent_id: str) -> bool:
398398
399399@operation (
400400 name = "workbench_run_agent" ,
401- description = "Run an Agent Workbench agent with a prompt" ,
401+ description = "Run an Agent Fabric agent with a prompt" ,
402402 http_method = "POST" ,
403403 http_path = "/api/workbench/agents/{agent_id}/runs" ,
404404)
@@ -410,7 +410,7 @@ async def op_workbench_run_agent(agent_id: str, data: AgentRunCreate) -> dict[st
410410
411411@operation (
412412 name = "workbench_list_agent_runs" ,
413- description = "List Agent Workbench runs for a specific agent" ,
413+ description = "List Agent Fabric runs for a specific agent" ,
414414 http_method = "GET" ,
415415 http_path = "/api/workbench/agents/{agent_id}/runs" ,
416416)
@@ -426,7 +426,7 @@ async def op_workbench_list_agent_runs(
426426
427427@operation (
428428 name = "workbench_list_runs" ,
429- description = "List Agent Workbench runs, optionally filtered by agent id" ,
429+ description = "List Agent Fabric runs, optionally filtered by agent id" ,
430430 http_method = "GET" ,
431431 http_path = "/api/workbench/runs" ,
432432)
@@ -442,7 +442,7 @@ async def op_workbench_list_runs(
442442
443443@operation (
444444 name = "workbench_get_run" ,
445- description = "Get one Agent Workbench run by id" ,
445+ description = "Get one Agent Fabric run by id" ,
446446 http_method = "GET" ,
447447 http_path = "/api/workbench/runs/{run_id}" ,
448448)
@@ -454,7 +454,7 @@ async def op_workbench_get_run(run_id: str) -> dict[str, Any] | None:
454454
455455@operation (
456456 name = "workbench_evaluate_run" ,
457- description = "Evaluate an Agent Workbench run against its success criteria" ,
457+ description = "Evaluate an Agent Fabric run against its success criteria" ,
458458 http_method = "POST" ,
459459 http_path = "/api/workbench/runs/{run_id}/evaluate" ,
460460)
@@ -466,7 +466,7 @@ async def op_workbench_evaluate_run(run_id: str) -> dict[str, Any]:
466466
467467@operation (
468468 name = "workbench_get_evaluation" ,
469- description = "Get evaluation for an Agent Workbench run" ,
469+ description = "Get evaluation for an Agent Fabric run" ,
470470 http_method = "GET" ,
471471 http_path = "/api/workbench/runs/{run_id}/evaluation" ,
472472)
0 commit comments