remove evals from top-level

This commit is contained in:
Xi Yan 2025-03-18 21:46:41 -07:00
parent 37225347a3
commit 8162f96d00
80 changed files with 121 additions and 853 deletions

View file

@ -53,7 +53,8 @@ def providable_apis() -> List[Api]:
return [
api
for api in Api
if api not in routing_table_apis and api != Api.inspect and api != Api.providers
if api not in routing_table_apis
and api not in [Api.inspect, Api.providers, Api.benchmarks]
]