Signed-off-by: Yuan Tang <terrytangyuan@gmail.com>
This commit is contained in:
Yuan Tang 2025-02-05 14:41:41 -05:00
parent 111f31b60d
commit 7c1c5e7dff
No known key found for this signature in database

View file

@ -56,11 +56,7 @@ def builtin_automatically_routed_apis() -> List[AutoRoutedApiInfo]:
def providable_apis() -> List[Api]:
routing_table_apis = set(x.routing_table_api for x in builtin_automatically_routed_apis())
print(routing_table_apis)
print("\n")
res = [api for api in Api if api not in routing_table_apis and api != Api.inspect]
print(res)
return res
return [api for api in Api if api not in routing_table_apis and api != Api.inspect]
def get_provider_registry() -> Dict[Api, Dict[str, ProviderSpec]]: