diff --git a/embedchain/__init__.py b/embedchain/__init__.py index 17397e0d..b26a8f24 100644 --- a/embedchain/__init__.py +++ b/embedchain/__init__.py @@ -6,6 +6,6 @@ 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 -from embedchain.apps.PersonApp import (PersonApp, # noqa: F401 +from embedchain.apps.person_app import (PersonApp, # noqa: F401 PersonOpenSourceApp) from embedchain.vectordb.chroma import ChromaDB # noqa: F401 diff --git a/embedchain/apps/PersonApp.py b/embedchain/apps/person_app.py similarity index 100% rename from embedchain/apps/PersonApp.py rename to embedchain/apps/person_app.py