### What problem does this PR solve?

#1816
### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
Kevin Hu 2024-08-06 18:23:20 +08:00 committed by GitHub
parent ede733e130
commit 1e2c0c6705
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,6 +20,6 @@ from .googlescholar import GoogleScholar, GoogleScholarParam
def component_class(class_name):
m = importlib.import_module("graph.component")
m = importlib.import_module("agent.component")
c = getattr(m, class_name)
return c