From d95c3e9cd4247acd489319644492867dd92a5a56 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Sat, 21 Feb 2026 10:56:27 -0800 Subject: [PATCH] fix(ruff): add missing Set and Dict imports (F821) (#21785) * fix(ruff): add missing Set and Dict imports to fix F821 errors * fix(ci): add semantic_router dep to guardrails_testing job The test_build_routes_combined_templates test calls build_routes() which imports from semantic_router, but the guardrails_testing CI job didn't install it. --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 188b02c9f1..fbbb6deeba 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1456,6 +1456,7 @@ jobs: pip install "respx==0.22.0" pip install "pydantic==2.10.2" pip install "boto3==1.36.0" + pip install "semantic_router==0.1.10" # Run pytest and generate JUnit XML report - run: name: Run tests