diff --git a/embedchain/__init__.py b/embedchain/__init__.py index a09fe9c3..17397e0d 100644 --- a/embedchain/__init__.py +++ b/embedchain/__init__.py @@ -2,7 +2,7 @@ import importlib.metadata __version__ = importlib.metadata.version(__package__ or __name__) -from embedchain.apps.App import App # noqa: F401 +from embedchain.apps.app import App # noqa: F401 from embedchain.apps.custom_app import CustomApp # noqa: F401 from embedchain.apps.Llama2App import Llama2App # noqa: F401 from embedchain.apps.open_source_app import OpenSourceApp # noqa: F401 diff --git a/embedchain/apps/PersonApp.py b/embedchain/apps/PersonApp.py index 79a8d5c4..6c727482 100644 --- a/embedchain/apps/PersonApp.py +++ b/embedchain/apps/PersonApp.py @@ -1,6 +1,6 @@ from string import Template -from embedchain.apps.App import App +from embedchain.apps.app import App from embedchain.apps.open_source_app import OpenSourceApp from embedchain.config import BaseLlmConfig from embedchain.config.apps.base_app_config import BaseAppConfig diff --git a/embedchain/apps/App.py b/embedchain/apps/app.py similarity index 100% rename from embedchain/apps/App.py rename to embedchain/apps/app.py