chore: split routers into individual files (safety)

Reviewers:
bbrowning, leseb, ehhuang, terrytangyuan, raghotham, yanxi0830, hardikjshah

Reviewed By: raghotham

Pull Request: https://github.com/meta-llama/llama-stack/pull/2248
This commit is contained in:
Ashwin Bharambe 2025-05-24 22:00:32 -07:00 committed by GitHub
parent c290999c63
commit a2160dc0af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 58 additions and 43 deletions

View file

@ -54,11 +54,11 @@ async def get_auto_router_impl(
DatasetIORouter,
EvalRouter,
InferenceRouter,
SafetyRouter,
ScoringRouter,
ToolRuntimeRouter,
VectorIORouter,
)
from .safety import SafetyRouter
api_to_routers = {
"vector_io": VectorIORouter,