Implement configurable API providers from configs.yaml #43

Merged
Copilot merged 8 commits from copilot/update-api-providers-configs into main 2025-10-27 18:53:36 +01:00
Showing only changes of commit c1ed1d85f0 - Show all commits

View File

@@ -160,8 +160,6 @@ class WrapperHandler(Generic[WrapperType]):
result: list[WrapperClassType] = [] result: list[WrapperClassType] = []
for wrapper_class in constructors: for wrapper_class in constructors:
if filters and wrapper_class.__name__ not in filters:
continue
try: try:
wrapper = wrapper_class(**(kwargs or {})) wrapper = wrapper_class(**(kwargs or {}))
result.append(wrapper) result.append(wrapper)