chore: split routers into individual files (datasets)

Pull Request: https://github.com/meta-llama/llama-stack/pull/2249
This commit is contained in:
Ashwin Bharambe 2025-05-24 15:03:08 -07:00
parent a2160dc0af
commit ab998a5fef
3 changed files with 72 additions and 60 deletions

View file

@ -50,8 +50,8 @@ async def get_routing_table_impl(
async def get_auto_router_impl(
api: Api, routing_table: RoutingTable, deps: dict[str, Any], run_config: StackRunConfig
) -> Any:
from .datasets import DatasetIORouter
from .routers import (
DatasetIORouter,
EvalRouter,
InferenceRouter,
ScoringRouter,