This commit is contained in:
Xi Yan 2025-03-18 21:49:11 -07:00
parent 011fd59a29
commit 8a576d7d72
24 changed files with 297 additions and 2525 deletions

View file

@ -47,14 +47,9 @@ def builtin_automatically_routed_apis() -> List[AutoRoutedApiInfo]:
def providable_apis() -> List[Api]:
routing_table_apis = {
x.routing_table_api for x in builtin_automatically_routed_apis()
}
routing_table_apis = {x.routing_table_api for x in builtin_automatically_routed_apis()}
return [
api
for api in Api
if api not in routing_table_apis
and api not in [Api.inspect, Api.providers, Api.benchmarks]
api for api in Api if api not in routing_table_apis and api not in [Api.inspect, Api.providers, Api.benchmarks]
]