From dd9d34cf7d7c632b553d722438928a2ebef3d077 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Wed, 9 Oct 2024 22:48:31 -0700 Subject: [PATCH] serve routing table API unconditionally --- llama_stack/distribution/server/server.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/llama_stack/distribution/server/server.py b/llama_stack/distribution/server/server.py index 4348f52f8..eba89e393 100644 --- a/llama_stack/distribution/server/server.py +++ b/llama_stack/distribution/server/server.py @@ -288,8 +288,7 @@ def main( apis_to_serve = set(impls.keys()) for inf in builtin_automatically_routed_apis(): - if inf.router_api.value in apis_to_serve: - apis_to_serve.add(inf.routing_table_api.value) + apis_to_serve.add(inf.routing_table_api.value) apis_to_serve.add("inspect") for api_str in apis_to_serve: